diff --git a/app-admin/eselect/eselect-9999.ebuild b/app-admin/eselect/eselect-9999.ebuild index d49c96420f11..bdbcc40a99dc 100644 --- a/app-admin/eselect/eselect-9999.ebuild +++ b/app-admin/eselect/eselect-9999.ebuild @@ -1,12 +1,13 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-9999.ebuild,v 1.14 2013/10/10 14:05:54 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect/eselect-9999.ebuild,v 1.15 2013/10/22 18:31:18 ulm Exp $ EAPI=5 EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/eselect.git" +EGIT_BOOTSTRAP="autogen.bash" -inherit git-r3 bash-completion-r1 +inherit git-2 bash-completion-r1 DESCRIPTION="Gentoo's multi-purpose configuration and management tool" HOMEPAGE="http://wiki.gentoo.org/wiki/Project:Eselect" @@ -22,8 +23,6 @@ RDEPEND="sys-apps/sed app-misc/realpath )" DEPEND="${RDEPEND} - >=sys-devel/autoconf-2.65 - >=sys-devel/automake-1.12 doc? ( dev-python/docutils )" RDEPEND="!app-admin/eselect-news ${RDEPEND} @@ -33,11 +32,6 @@ RDEPEND="!app-admin/eselect-news PDEPEND="emacs? ( app-emacs/eselect-mode ) vim-syntax? ( app-vim/eselect-syntax )" -src_prepare() { - # bootstrap - ./autogen.bash || die -} - src_compile() { emake use doc && emake html diff --git a/app-admin/glance/glance-2013.2.9999.ebuild b/app-admin/glance/glance-2013.2.9999.ebuild new file mode 100644 index 000000000000..14cb82841eff --- /dev/null +++ b/app-admin/glance/glance-2013.2.9999.ebuild @@ -0,0 +1,92 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/glance/glance-2013.2.9999.ebuild,v 1.1 2013/10/22 18:24:34 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit git-2 distutils-r1 + +DESCRIPTION="Provides services for discovering, registering, and retrieving +virtual machine images with Openstack" +HOMEPAGE="https://launchpad.net/glance" +EGIT_REPO_URI="https://github.com/openstack/glance.git" +EGIT_BRANCH="stable/havana" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="" +IUSE="mysql postgres +sqlite +swift" +REQUIRED_USE="|| ( mysql postgres sqlite )" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pbr-0.5.21[${PYTHON_USEDEP}] + =dev-python/wsgiref-0.1.2[${PYTHON_USEDEP}] +RDEPEND="${DEPEND} + >=dev-python/greenlet-0.3.2[${PYTHON_USEDEP}] + >=dev-python/eventlet-0.13.0[${PYTHON_USEDEP}] + sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,${PYTHON_USEDEP}] + =dev-python/sqlalchemy-0.7.8[mysql,${PYTHON_USEDEP}] + =dev-python/sqlalchemy-0.7.8[postgres,${PYTHON_USEDEP}] + =dev-python/anyjson-0.3.3[${PYTHON_USEDEP}] + >=dev-python/pastedeploy-1.5.0[${PYTHON_USEDEP}] + >=dev-python/routes-1.12.3[${PYTHON_USEDEP}] + >=dev-python/webob-1.2.3[${PYTHON_USEDEP}] + =dev-python/boto-2.4.0[${PYTHON_USEDEP}] + >=dev-python/sqlalchemy-migrate-0.7.2[${PYTHON_USEDEP}] + dev-python/httplib2[${PYTHON_USEDEP}] + >=dev-python/kombu-2.4.8[${PYTHON_USEDEP}] + >=dev-python/pycrypto-2.6[${PYTHON_USEDEP}] + >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}] + >=dev-python/oslo-config-1.2.0[${PYTHON_USEDEP}] + swift? ( + >=dev-python/python-swiftclient-1.5[${PYTHON_USEDEP}] + =dev-python/lxml-2.3[${PYTHON_USEDEP}] + dev-python/paste[${PYTHON_USEDEP}] + dev-python/passlib[${PYTHON_USEDEP}] + >=dev-python/jsonschema-1.3.0[${PYTHON_USEDEP}] + !~dev-python/jsonschema-1.4.0[${PYTHON_USEDEP}] + >=dev-python/python-cinderclient-1.0.4[${PYTHON_USEDEP}] + >=dev-python/python-keystoneclient-0.3.0[${PYTHON_USEDEP}] + dev-python/pyopenssl[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" + +PATCHES=( +) + +python_install() { + distutils-r1_python_install + newconfd "${FILESDIR}/glance.confd" glance + newinitd "${FILESDIR}/glance-2.initd" glance + + for function in api registry scrubber; do + dosym /etc/init.d/glance /etc/init.d/glance-${function} + done + + diropts -m 0750 + dodir /var/run/glance /var/log/glance /var/lib/glance/images /var/lib/glance/scrubber + keepdir /etc/glance + keepdir /var/log/glance + keepdir /var/lib/glance/images + keepdir /var/lib/glance/scrubber + insinto /etc/glance + + doins "etc/glance-api-paste.ini" + doins "etc/glance-api.conf" + doins "etc/glance-cache.conf" + doins "etc/glance-registry-paste.ini" + doins "etc/glance-registry.conf" + doins "etc/glance-scrubber.conf" + doins "etc/logging.cnf.sample" + doins "etc/policy.json" + doins "etc/schema-image.json" +} diff --git a/app-admin/keepass/Manifest b/app-admin/keepass/Manifest index f82bbe014ad9..119df6f6e04a 100644 --- a/app-admin/keepass/Manifest +++ b/app-admin/keepass/Manifest @@ -1,2 +1,4 @@ DIST KeePass-2.21-Source.zip 3386515 SHA256 e079bb09432d1efb0528fc186c77b092153b86809bb9ff6a00f5dbdd77740efe SHA512 7a228896ad6bd9710664e23e3a48fd6d0608dc3059863871893acf76fbfc45c73429138d317d960a00b877327bff0b8546148b8f635930628292e0e6856a13e2 WHIRLPOOL 9f6b05210e6eb44550135df2d796b76a374dd5e04809c87667912d9b4030214e378e75daee0fea07df8c94b2646ef0ffc3314e8717f8e6ee121a6ccea630ddd3 DIST KeePass-2.22-Source.zip 3403139 SHA256 975f1f8c6c7b76fbf283d2c798152890088afb9455988d200ae6e5cd8b0aff25 SHA512 cf875fbcdc080b0e4fb696561aea312ebf32d4027fdc3b75af157ed4ca06aeb18832a18f7dfa7ccc8e71449ce16d46d97fbda3a0cfdd68323b930e10b704052d WHIRLPOOL 626dc94514110d0d844560eff9a58f368b87b2f1c3532d5cbe1909664c50f9ea44e490b46047ca789ab7304190a41b65522a5fa655ce39029f22316f1c24a6be +DIST KeePass-2.23-Source.zip 3443624 SHA256 d9de023285228a3e1b7f5ad6f28086dcf7ddb0814ac28803774fdd9ad9efffba SHA512 7baa72ecbd6fb1b44f76c28ca11e18e67b59a6b2aca45135ae57a892e1a4346ca09e8a3a793ac5c53afea282d939b5f7bb94e4771d4ba6f9da9d19522e5c5f67 WHIRLPOOL c45fc54071efe597c88a0d8c5ad414fe06293da5a203dd7a0f090055552e895a8304960957b218902e9d0992acd0235d145597fe8cea443ab90bd9e425925256 +DIST Resources_131022.zip 422443 SHA256 8fc86bbb46db3251b6aaba23a48743cdabb9217c9fc7a00db41e16dccf19d54f SHA512 d21f9e178a1a7de831868763e69b0d7ef3021c9c3dcee54c5c7d2558e75b73d51bd1d27c3eac45781656e48c51c2bbd2d2e3615bd05c5297c96cc52dbf18193f WHIRLPOOL f81d7cfafb23a5578cf33a1f9feb0b9e2bc0e2ce6e626a5658efb0afe6e44522c06891314c68f035fb8be1adf09ee605657aca5e130414a8419e3569011e2acc diff --git a/app-admin/keepass/keepass-2.21.ebuild b/app-admin/keepass/keepass-2.21.ebuild index f78de6ed7028..8d7337d4107f 100644 --- a/app-admin/keepass/keepass-2.21.ebuild +++ b/app-admin/keepass/keepass-2.21.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/keepass/keepass-2.21.ebuild,v 1.1 2013/02/04 17:06:18 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/keepass/keepass-2.21.ebuild,v 1.2 2013/10/23 11:36:19 tomwij Exp $ EAPI=5 diff --git a/app-admin/keepass/keepass-2.22.ebuild b/app-admin/keepass/keepass-2.22.ebuild index cc8e3fafb85f..2fe3b00a91a0 100644 --- a/app-admin/keepass/keepass-2.22.ebuild +++ b/app-admin/keepass/keepass-2.22.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/keepass/keepass-2.22.ebuild,v 1.1 2013/04/09 10:54:20 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/keepass/keepass-2.22.ebuild,v 1.2 2013/10/23 11:36:19 tomwij Exp $ EAPI=5 diff --git a/app-admin/keepass/keepass-2.23.ebuild b/app-admin/keepass/keepass-2.23.ebuild new file mode 100644 index 000000000000..ff0f4ab00c90 --- /dev/null +++ b/app-admin/keepass/keepass-2.23.ebuild @@ -0,0 +1,112 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/keepass/keepass-2.23.ebuild,v 1.2 2013/10/23 11:36:19 tomwij Exp $ + +EAPI=5 + +inherit eutils fdo-mime gnome2-utils mono-env multilib + +MY_PN="KeePass" +DESCRIPTION="A free, open source, light-weight and easy-to-use password manager" +HOMEPAGE="http://keepass.info/" +SRC_URI="mirror://sourceforge/${PN}/${MY_PN}-${PV}-Source.zip +http://keepass.info/filepool/Resources_131022.zip" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="aot" + +COMMON_DEPEND=">=dev-lang/mono-2.10.5" +RDEPEND="${COMMON_DEPEND} + dev-dotnet/libgdiplus[cairo]" +DEPEND="${COMMON_DEPEND} + app-arch/unzip" + +S=${WORKDIR} + +src_unpack() { + unpack "${MY_PN}-${PV}-Source.zip" + + # Use fixed version of the images, see #472764 + pushd "${S}/KeePass/Resources" > /dev/null || die + unpack "Resources_131022.zip" + popd > /dev/null || die +} + +src_prepare() { + # Remove Windows-specific things + pushd Build > /dev/null || die + . PrepMonoDev.sh || die + popd > /dev/null || die + + # KeePass looks for some XSL files in the same folder as the executable, + # we prefer to have it in /usr/share/KeePass + epatch "${FILESDIR}/${PN}-2.20-xsl-path-detection.patch" +} + +src_compile() { + # Build with Release target + xbuild /target:KeePass /property:Configuration=Release || die + + # Run Ahead Of Time compiler on the binary + if use aot; then + cp Ext/KeePass.exe.config Build/KeePass/Release/ + mono --aot -O=all Build/KeePass/Release/KeePass.exe || die + fi +} + +src_install() { + # Wrapper script to launch mono + make_wrapper ${PN} "mono /usr/$(get_libdir)/${PN}/KeePass.exe" + + # Some XSL files + insinto /usr/share/${PN}/XSL + doins Ext/XSL/* + + insinto /usr/$(get_libdir)/${PN}/ + exeinto /usr/$(get_libdir)/${PN}/ + doins Ext/KeePass.exe.config + # Default configuration, simply says to use user-specific configuration + doins Ext/KeePass.config.xml + + # The actual executable + doexe Build/KeePass/Release/KeePass.exe + + # Copy the AOT compilation result + if use aot; then + doexe Build/KeePass/Release/KeePass.exe.so + fi + + # Prepare the icons + newicon -s 256 Ext/Icons/Finals/plockb.png "${PN}.png" + newicon -s 256 -t gnome -c mimetypes Ext/Icons/Finals/plockb.png "application-x-${PN}2.png" + + # Create a desktop entry and associate it with the KeePass mime type + make_desktop_entry ${PN} ${MY_PN} ${PN} "System;Security" "MimeType=application/x-keepass2;" + + # MIME descriptor for .kdbx files + insinto /usr/share/mime/packages/ + doins "${FILESDIR}/${PN}.xml" +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + gnome2_icon_cache_update + fdo-mime_mime_database_update + fdo-mime_desktop_database_update + + if ! has_version x11-misc/xdotool ; then + elog "Optional dependencies:" + elog " x11-misc/xdotool (enables autotype)" + fi +} + +pkg_postrm() { + gnome2_icon_cache_update + fdo-mime_mime_database_update + fdo-mime_desktop_database_update +} diff --git a/app-admin/mcelog/Manifest b/app-admin/mcelog/Manifest index 8e9d614ee836..c5de50141d49 100644 --- a/app-admin/mcelog/Manifest +++ b/app-admin/mcelog/Manifest @@ -1,3 +1,4 @@ DIST mcelog-1.0_pre3_p20120918.tar.gz 284893 SHA256 21c3cfa2d4a5998495a50705124af452ef92d2ddf909c2b00c87a37cead8179a SHA512 fcb97a2b5fb13f9a161b9a5e9c85947baa41f61ec9f04e32d09f4ffa4e0f1854a449e73661bdf0eabb568f6721727fcf3ed3fdfabe69c8e2a6133159d862e594 WHIRLPOOL c6e85b652cc756729df29dd7be00351573cafebd18c01ee01c9b38f5a39de93e380f0e6d1a37b1f56db34993fec5564bde0591346a98b88c997664f07495c469 DIST mcelog-1.0_pre3_p20130621.tar.gz 287524 SHA256 688306b877f70bc9406434b9cf497799fc7ac0a2e2793742b4bccd0a806d8bb9 SHA512 75d3628dde144f95400cadd1e1085a78c5e6c12761279780363aae402fddd1700dcfa6736ec4c44331569ab2a06c48fd87b5bbdfd03e937c0a5dc9eb89a4f5ab WHIRLPOOL 2ca1c98114283afa9f02036bfa928086b7de4ca1fefc5184c334e317e6e313042bbbe46ef8468f71d79fb28c0983ba52bedb59f49783b83771446068e3631f41 DIST mcelog-1.0pre3.tar.gz 176649 SHA256 0782e0aa952fa4bd641071e6b501774a63993a813a4f494ffd7819521a13c50c SHA512 ef571cde8ce170d2003e6789116ff88fedfd5aeeb75d09bc5f9cafcb30eb081ca572e2604ba160e83ad927433d963d3bcbae06bca4c499a1bebcb8cc632355b0 WHIRLPOOL 3627567c42bf8685fb355f84e9405b5f7e36df57e2b73f8b40df52d12a4d2e37ef3a8d03311ab48068b76ac03cbbe0dea9acc24a001274544321b76f42f78c66 +DIST mcelog-100.tar.gz 288423 SHA256 b18f029ec9f498b6249b3a3dfef7753ac9d45ebf3382af452cb3e14d49274bab SHA512 efd7864daaafe5d149fc27259d4fa72221372842d41ad57c046c967fd1eb710ef921f45111e95bfe76df119276b3b9af1bf1094a9411037eb1f5ac06e319e87d WHIRLPOOL 9f2f7fdbb3c94b7740f486005641a90529e240c34f3709989e6e0d448c96369f4562408aa678ea992f47f396cdfb60c71eadf75475c52ff0cd6318a99c4ad2eb diff --git a/app-admin/mcelog/mcelog-100.ebuild b/app-admin/mcelog/mcelog-100.ebuild new file mode 100644 index 000000000000..8274cfd34077 --- /dev/null +++ b/app-admin/mcelog/mcelog-100.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/mcelog/mcelog-100.ebuild,v 1.1 2013/10/23 17:16:55 hasufell Exp $ + +EAPI=5 + +inherit linux-info eutils systemd toolchain-funcs + +DESCRIPTION="A tool to log and decode Machine Check Exceptions" +HOMEPAGE="http://mcelog.org/" +SRC_URI="https://github.com/andikleen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="selinux" + +RDEPEND="selinux? ( sec-policy/selinux-mcelog )" + +CONFIG_CHECK="~X86_MCE" + +# TODO: add mce-inject to the tree to support test phase +RESTRICT="test" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-0.8_pre1-timestamp-${PN}.patch \ + "${FILESDIR}"/${PN}-1.0_pre3_p20120918-build.patch \ + "${FILESDIR}"/${PN}-1.0_pre3_p20120918-bashism.patch + tc-export CC +} + +src_install() { + dosbin ${PN} + + insinto /etc/cron.daily + newins ${PN}.cron ${PN} + + insinto /etc/logrotate.d/ + newins ${PN}.logrotate ${PN} + + newinitd "${FILESDIR}"/${PN}.init ${PN} + systemd_dounit "${FILESDIR}"/${PN}.service + + insinto /etc/${PN} + doins mcelog.conf + exeinto /etc/${PN} + doexe triggers/* + + dodoc CHANGES README TODO *.pdf + doman ${PN}.8 +} + +pkg_postinst() { + einfo "The default configuration set is now installed in /etc/${PN}" + einfo "you might want to edit those files." + einfo + einfo "A sample cronjob is installed into /etc/cron.daily" + einfo "without executable bit (system service is the preferred method now)" +} diff --git a/app-crypt/ckpass/Manifest b/app-crypt/ckpass/Manifest index b3a90f8458d3..977cbf49d767 100644 --- a/app-crypt/ckpass/Manifest +++ b/app-crypt/ckpass/Manifest @@ -1 +1 @@ -DIST ckpass-0.1.tar.gz 89129 SHA256 2bf19b9214127d5772fc70777e2db147ed58c809fa003fe3cbd23c361336d12e SHA512 0253d49e1e6863745636786b63142eeda71d3aa4518045029a87a461caee0970aef69d93c7f98046853cf250f1ff9e93b4367b8e51885d57d7a229b2f70b8e6f WHIRLPOOL 38d08f5466a8e226213a6535cda31857c2751b7e2caf8e7363960f7f93ea23831425089927fc205350d0b27df9e9af00830863b5c35c895ce33f956156abe758 +DIST ckpass-0.2.tar.gz 95921 SHA256 4027708b9518e7d320958f186f6b932001a3501c88773a88191fe5c976fe0686 SHA512 aca439caea2e3736539f5ec6bb235e51c59fed627eb9b414e629ad246c301e6f1dc90594826f6d95be9963aa4af0dae64419d08a44beb0a02d16a9fdf42a9a0b WHIRLPOOL 462fa8b7a82176ce01d1801525cf2b06ba6702cc2a7bf6e2d38d15a2879366e22524721f990ae36ba7a1c004eeab103ac23490faea9b6fd20a682dc70cf85afa diff --git a/app-crypt/ckpass/ckpass-0.1.ebuild b/app-crypt/ckpass/ckpass-0.2.ebuild similarity index 68% rename from app-crypt/ckpass/ckpass-0.1.ebuild rename to app-crypt/ckpass/ckpass-0.2.ebuild index dc7e6756125f..81d3ae4a93bf 100644 --- a/app-crypt/ckpass/ckpass-0.1.ebuild +++ b/app-crypt/ckpass/ckpass-0.2.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/ckpass/ckpass-0.1.ebuild,v 1.2 2011/12/13 18:05:01 joker Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/ckpass/ckpass-0.2.ebuild,v 1.1 2013/10/23 13:17:39 joker Exp $ -EAPI=4 +EAPI=5 DESCRIPTION="An ncurses based password database client that is compatible with KeePass 1.x format databases" HOMEPAGE="http://ckpass.sourceforge.net/" @@ -13,7 +13,7 @@ SLOT="0" KEYWORDS="~amd64" IUSE="" -DEPEND="dev-libs/libkpass" +DEPEND=">=dev-libs/libkpass-6" RDEPEND="${DEPEND}" src_install() { diff --git a/app-emacs/eselect-mode/eselect-mode-9999.ebuild b/app-emacs/eselect-mode/eselect-mode-9999.ebuild index 316c0ad9ac71..c0811e343824 100644 --- a/app-emacs/eselect-mode/eselect-mode-9999.ebuild +++ b/app-emacs/eselect-mode/eselect-mode-9999.ebuild @@ -1,14 +1,14 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/eselect-mode/eselect-mode-9999.ebuild,v 1.3 2013/10/10 14:10:09 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/eselect-mode/eselect-mode-9999.ebuild,v 1.4 2013/10/22 18:31:18 ulm Exp $ EAPI=5 MY_PN="eselect" EGIT_REPO_URI="git://git.overlays.gentoo.org/proj/eselect.git" -EGIT_CHECKOUT_DIR="${WORKDIR}/${MY_PN}" +EGIT_SOURCEDIR="${WORKDIR}/${MY_PN}" -inherit elisp git-r3 +inherit elisp git-2 DESCRIPTION="Emacs major mode for editing eselect files" HOMEPAGE="http://wiki.gentoo.org/wiki/Project:Eselect" diff --git a/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2013.09.16.1328054.ebuild b/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2013.09.16.1328054.ebuild index dffb3bbc4507..d60737f9e356 100644 --- a/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2013.09.16.1328054.ebuild +++ b/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2013.09.16.1328054.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2013.09.16.1328054.ebuild,v 1.4 2013/10/21 22:19:08 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-2013.09.16.1328054.ebuild,v 1.5 2013/10/22 22:21:05 floppym Exp $ EAPI="5" @@ -22,7 +22,8 @@ IUSE="" S="${WORKDIR}/${MY_P}" pkg_setup() { - CONFIG_CHECK="~DRM_VMWGFX ~VMWARE_BALLOON ~VMWARE_PVSCSI ~VMXNET3" + CONFIG_CHECK="~DRM_VMWGFX ~VMWARE_BALLOON ~VMWARE_PVSCSI ~VMXNET3 + !UIDGID_STRICT_TYPE_CHECKS" # See logic in configure.ac. local MODULES="vmxnet vmhgfs" diff --git a/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-9.4.0.1280544.ebuild b/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-9.4.0.1280544.ebuild index 79378504c432..25564d7263ba 100644 --- a/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-9.4.0.1280544.ebuild +++ b/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-9.4.0.1280544.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-9.4.0.1280544.ebuild,v 1.1 2013/10/19 23:14:03 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/open-vm-tools-kmod/open-vm-tools-kmod-9.4.0.1280544.ebuild,v 1.2 2013/10/22 22:21:05 floppym Exp $ EAPI="5" @@ -22,7 +22,8 @@ IUSE="" S="${WORKDIR}/${MY_P}" pkg_setup() { - CONFIG_CHECK="~DRM_VMWGFX ~VMWARE_BALLOON ~VMWARE_PVSCSI ~VMXNET3" + CONFIG_CHECK="~DRM_VMWGFX ~VMWARE_BALLOON ~VMWARE_PVSCSI ~VMXNET3 + !UIDGID_STRICT_TYPE_CHECKS" # See logic in configure.ac. local MODULES="vmxnet vmhgfs" diff --git a/app-emulation/vmware-modules/files/238-2.6.39.patch b/app-emulation/vmware-modules/files/238-2.6.39.patch deleted file mode 100644 index 88873e581400..000000000000 --- a/app-emulation/vmware-modules/files/238-2.6.39.patch +++ /dev/null @@ -1,243 +0,0 @@ -diff --git a/vmblock-only/linux/dentry.c b/vmblock-only/linux/dentry.c -index 66537c8..05ea95a 100644 ---- a/vmblock-only/linux/dentry.c -+++ b/vmblock-only/linux/dentry.c -@@ -104,7 +104,7 @@ DentryOpRevalidate(struct dentry *dentry, // IN: dentry revalidating - return actualDentry->d_op->d_revalidate(actualDentry, nd); - } - -- if (path_lookup(iinfo->name, 0, &actualNd)) { -+ if (compat_path_lookup(iinfo->name, 0, &actualNd)) { - LOG(4, "DentryOpRevalidate: [%s] no longer exists\n", iinfo->name); - return 0; - } -diff --git a/vmblock-only/linux/filesystem.c b/vmblock-only/linux/filesystem.c -index 53840fd..bc117c5 100644 ---- a/vmblock-only/linux/filesystem.c -+++ b/vmblock-only/linux/filesystem.c -@@ -66,7 +66,6 @@ static size_t fsRootLen; - static struct file_system_type fsType = { - .owner = THIS_MODULE, - .name = VMBLOCK_FS_NAME, -- .get_sb = FsOpGetSb, - .kill_sb = kill_anon_super, - }; - -@@ -553,7 +552,7 @@ FsOpReadSuper(struct super_block *sb, // OUT: Superblock object - *----------------------------------------------------------------------------- - */ - --static int -+/*static int - FsOpGetSb(struct file_system_type *fs_type, // IN: file system type of mount - int flags, // IN: mount flags - const char *dev_name, // IN: device mounting on -@@ -561,7 +560,7 @@ FsOpGetSb(struct file_system_type *fs_type, // IN: file system type of mount - struct vfsmount *mnt) // IN: vfs mount - { - return get_sb_nodev(fs_type, flags, rawData, FsOpReadSuper, mnt); --} -+}*/ - #else - /* - *----------------------------------------------------------------------------- -diff --git a/vmblock-only/shared/compat_namei.h b/vmblock-only/shared/compat_namei.h -index 28d72c8..4214247 100644 ---- a/vmblock-only/shared/compat_namei.h -+++ b/vmblock-only/shared/compat_namei.h -@@ -40,8 +40,11 @@ - #define compat_path_release(nd) path_release(nd) - #endif - -+/* path_lookup was removed in 2.6.39 merge window VFS merge */ -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39) -+#define compat_path_lookup(name, flags, nd) kern_path(name, flags, &((nd)->path)) - /* path_lookup was exported in 2.4.25 */ --#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 4, 25) -+#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2, 4, 25) - #define compat_path_lookup(path, flags, nd) path_lookup(path, flags, nd) - #else - #define compat_path_lookup(path, flags, nd) \ -diff --git a/vmci-only/linux/driver.c b/vmci-only/linux/driver.c -index a0f5498..49795e1 100644 ---- a/vmci-only/linux/driver.c -+++ b/vmci-only/linux/driver.c -@@ -42,7 +42,6 @@ sys_ioctl(unsigned int fd, unsigned int cmd, unsigned long arg); - #include - #include - #include --#include - - #include "compat_file.h" - #include "compat_highmem.h" -diff --git a/vmmon-only/linux/driver.c b/vmmon-only/linux/driver.c -index a33c983..89f8827 100644 ---- a/vmmon-only/linux/driver.c -+++ b/vmmon-only/linux/driver.c -@@ -781,7 +781,7 @@ LinuxDriver_Close(struct inode *inode, // IN - - - #define POLLQUEUE_MAX_TASK 1000 --static spinlock_t pollQueueLock __attribute__((unused)) = SPIN_LOCK_UNLOCKED; -+static DEFINE_SPINLOCK(pollQueueLock); - static void *pollQueue[POLLQUEUE_MAX_TASK]; - static unsigned int pollQueueCount = 0; - -@@ -1042,7 +1042,8 @@ LinuxDriverPoll(struct file *filp, - * but unfortunately there is no way how to detect that - * we are building for RedHat's kernel... - */ -- static spinlock_t timerLock = SPIN_LOCK_UNLOCKED; -+ -+ static DEFINE_SPINLOCK(timerLock); - - spin_lock(&timerLock); - mod_timer(&linuxState.pollTimer, jiffies + 1); -diff --git a/vmmon-only/linux/hostif.c b/vmmon-only/linux/hostif.c -index 6c7b34d..fabb44d 100644 ---- a/vmmon-only/linux/hostif.c -+++ b/vmmon-only/linux/hostif.c -@@ -46,7 +46,6 @@ - #include - - #include --#include - - #include - #include -diff --git a/vmmon-only/linux/iommu.c b/vmmon-only/linux/iommu.c -index f64e80a..b0ee013 100644 ---- a/vmmon-only/linux/iommu.c -+++ b/vmmon-only/linux/iommu.c -@@ -44,7 +44,7 @@ typedef struct PassthruDevice { - - - static LIST_HEAD(passthruDeviceList); --static spinlock_t passthruDeviceListLock = SPIN_LOCK_UNLOCKED; -+static DEFINE_SPINLOCK(passthruDeviceListLock); - static void *pciHolePage = NULL; - - /* -diff --git a/vmnet-only/driver.c b/vmnet-only/driver.c -index c91a1dc..4c195e1 100644 ---- a/vmnet-only/driver.c -+++ b/vmnet-only/driver.c -@@ -28,7 +28,6 @@ - #include - - #include --#include - - #include - #include -@@ -105,7 +104,7 @@ const uint8 broadcast[ETH_ALEN] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; - * not have vnetStructureMutex already acquired, - * it is most certainly a bug. - */ --static rwlock_t vnetPeerLock = RW_LOCK_UNLOCKED; -+static DEFINE_RWLOCK(vnetPeerLock); - - /* - * All concurrent changes to the network structure are -@@ -115,6 +114,7 @@ static rwlock_t vnetPeerLock = RW_LOCK_UNLOCKED; - * vnetStructureMutex and vnetPeerLock for write. - */ - compat_define_mutex(vnetStructureMutex); -+compat_define_mutex(vnetMutex); - - #if defined(VM_X86_64) && !defined(HAVE_COMPAT_IOCTL) - /* -@@ -264,11 +264,11 @@ LinuxDriver_Ioctl32_Handler(unsigned int fd, // IN: (unused) - struct file * filp) // IN: - { - int ret = -ENOTTY; -- lock_kernel(); -+ compat_mutex_lock(&vnetMutex); - if (filp && filp->f_op && filp->f_op->ioctl == VNetFileOpIoctl) { - ret = VNetFileOpIoctl(filp->f_dentry->d_inode, filp, iocmd, ioarg); - } -- unlock_kernel(); -+ compat_mutex_unlock(&vnetMutex); - return ret; - } - -@@ -1134,9 +1134,9 @@ VNetFileOpUnlockedIoctl(struct file *filp, // IN: - if (filp && filp->f_dentry) { - inode = filp->f_dentry->d_inode; - } -- lock_kernel(); -+ compat_mutex_lock(&vnetMutex); - err = VNetFileOpIoctl(inode, filp, iocmd, ioarg); -- unlock_kernel(); -+ compat_mutex_unlock(&vnetMutex); - return err; - } - #endif -diff --git a/vmnet-only/filter.c b/vmnet-only/filter.c -index 34b7d3d..b0017d7 100644 ---- a/vmnet-only/filter.c -+++ b/vmnet-only/filter.c -@@ -85,7 +85,7 @@ static compat_define_mutex(filterIoctlMutex); /* serialize ioctl()s from user sp - * callbacks can be concurrently executing on multiple threads on multiple - * CPUs, so we should revisit locking for allowing for that in the future. - */ --spinlock_t activeRuleLock = SPIN_LOCK_UNLOCKED; -+DEFINE_SPINLOCK(activeRuleLock); - - /* - * Logging. -diff --git a/vmnet-only/hub.c b/vmnet-only/hub.c -index b05efea..38d9aef 100644 ---- a/vmnet-only/hub.c -+++ b/vmnet-only/hub.c -@@ -81,7 +81,7 @@ static VNetHub *vnetHub = NULL; - * so we use __attribute__((unused)) to quiet the compiler. - */ - --static spinlock_t vnetHubLock __attribute__((unused)) = SPIN_LOCK_UNLOCKED; -+static DEFINE_SPINLOCK(vnetHubLock); - - - /* -diff --git a/vsock-only/linux/af_vsock.c b/vsock-only/linux/af_vsock.c -index ecd057e..d565ec0 100644 ---- a/vsock-only/linux/af_vsock.c -+++ b/vsock-only/linux/af_vsock.c -@@ -102,7 +102,6 @@ - #include - #include - #include --#include - #include - #if defined(__x86_64__) && LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 12) - # if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 0) -diff --git a/vsock-only/linux/util.c b/vsock-only/linux/util.c -index 53f2edb..32a7da7 100644 ---- a/vsock-only/linux/util.c -+++ b/vsock-only/linux/util.c -@@ -34,7 +34,7 @@ - struct list_head vsockBindTable[VSOCK_HASH_SIZE + 1]; - struct list_head vsockConnectedTable[VSOCK_HASH_SIZE]; - --spinlock_t vsockTableLock = SPIN_LOCK_UNLOCKED; -+DEFINE_SPINLOCK(vsockTableLock); - - /* - * snprintf() wasn't exported until 2.4.10: fall back on sprintf in those -diff --git a/vsock-only/shared/compat_namei.h b/vsock-only/shared/compat_namei.h -index 28d72c8..4214247 100644 ---- a/vsock-only/shared/compat_namei.h -+++ b/vsock-only/shared/compat_namei.h -@@ -40,8 +40,11 @@ - #define compat_path_release(nd) path_release(nd) - #endif - -+/* path_lookup was removed in 2.6.39 merge window VFS merge */ -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 39) -+#define compat_path_lookup(name, flags, nd) kern_path(name, flags, &((nd)->path)) - /* path_lookup was exported in 2.4.25 */ --#if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 4, 25) -+#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2, 4, 25) - #define compat_path_lookup(path, flags, nd) path_lookup(path, flags, nd) - #else - #define compat_path_lookup(path, flags, nd) \ diff --git a/app-emulation/vmware-modules/files/238-3.2.0.patch b/app-emulation/vmware-modules/files/238-3.2.0.patch deleted file mode 100644 index 0416214c3125..000000000000 --- a/app-emulation/vmware-modules/files/238-3.2.0.patch +++ /dev/null @@ -1,103 +0,0 @@ -diff --git a/vmmon-only/linux/iommu.c b/vmmon-only/linux/iommu.c -index b0ee013..f0f5c9a 100644 ---- a/vmmon-only/linux/iommu.c -+++ b/vmmon-only/linux/iommu.c -@@ -36,6 +36,12 @@ - #define PCI_BDF_SLOTFUNC(bdf) PCI_DEVFN(PCI_SLOT(bdf), PCI_FUNC(bdf)) - #define PCI_BDF_BUS(bdf) (((bdf) >> 8) & 0xff) - -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0) -+#include -+#define iommu_found() iommu_present(&pci_bus_type) -+#define iommu_domain_alloc() iommu_domain_alloc(&pci_bus_type) -+#endif -+ - typedef struct PassthruDevice { - struct pci_dev *pdev; - VMLinux *vmLinux; -diff --git a/vmnet-only/filter.c b/vmnet-only/filter.c -index b0017d7..6c0687f 100644 ---- a/vmnet-only/filter.c -+++ b/vmnet-only/filter.c -@@ -41,6 +41,10 @@ - #include "vnetInt.h" - #include "vmnetInt.h" - -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0) -+#include -+#endif -+ - // VNet_FilterLogPacket.action for dropped packets - #define VNET_FILTER_ACTION_DRP (1) - #define VNET_FILTER_ACTION_DRP_SHORT (2) -diff --git a/vmnet-only/netif.c b/vmnet-only/netif.c -index b3c752b..79d4896 100644 ---- a/vmnet-only/netif.c -+++ b/vmnet-only/netif.c -@@ -62,7 +62,9 @@ static int VNetNetifClose(struct net_device *dev); - static int VNetNetifStartXmit(struct sk_buff *skb, struct net_device *dev); - static struct net_device_stats *VNetNetifGetStats(struct net_device *dev); - static int VNetNetifSetMAC(struct net_device *dev, void *addr); -+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 2, 0) - static void VNetNetifSetMulticast(struct net_device *dev); -+#endif - #if 0 - static void VNetNetifTxTimeout(struct net_device *dev); - #endif -@@ -131,7 +133,9 @@ VNetNetIfSetup(struct net_device *dev) // IN: - .ndo_stop = VNetNetifClose, - .ndo_get_stats = VNetNetifGetStats, - .ndo_set_mac_address = VNetNetifSetMAC, -+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 2, 0) - .ndo_set_multicast_list = VNetNetifSetMulticast, -+#endif - /* - * We cannot stuck... If someone will report problems under - * low memory conditions or some such, we should enable it. -@@ -152,7 +156,9 @@ VNetNetIfSetup(struct net_device *dev) // IN: - dev->stop = VNetNetifClose; - dev->get_stats = VNetNetifGetStats; - dev->set_mac_address = VNetNetifSetMAC; -+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 2, 0) - dev->set_multicast_list = VNetNetifSetMulticast; -+#endif - /* - * We cannot stuck... If someone will report problems under - * low memory conditions or some such, we should enable it. -@@ -621,11 +627,12 @@ VNetNetifSetMAC(struct net_device *dev, // IN: - *---------------------------------------------------------------------- - */ - -+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 2, 0) - void - VNetNetifSetMulticast(struct net_device *dev) // IN: unused - { - } -- -+#endif - - /* - *---------------------------------------------------------------------- -diff --git a/vmnet-only/userif.c b/vmnet-only/userif.c -index 4e65c76..fd12aa9 100644 ---- a/vmnet-only/userif.c -+++ b/vmnet-only/userif.c -@@ -572,10 +572,18 @@ VNetCsumCopyDatagram(const struct sk_buff *skb, // IN: skb to copy - unsigned int tmpCsum; - const void *vaddr; - -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0) -+ vaddr = kmap(skb_frag_page(frag)); -+#else - vaddr = kmap(frag->page); -+#endif - tmpCsum = csum_and_copy_to_user(vaddr + frag->page_offset, - curr, frag->size, 0, &err); -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 2, 0) -+ kunmap(skb_frag_page(frag)); -+#else - kunmap(frag->page); -+#endif - if (err) { - return err; - } diff --git a/app-emulation/vmware-modules/files/238-d-make-root.patch b/app-emulation/vmware-modules/files/238-d-make-root.patch deleted file mode 100644 index 7e83a1e91092..000000000000 --- a/app-emulation/vmware-modules/files/238-d-make-root.patch +++ /dev/null @@ -1,14 +0,0 @@ ---- a/vmblock-only/linux/filesystem.c 2012-05-23 20:08:00.632051396 -0500 -+++ b/vmblock-only/linux/filesystem.c 2012-05-23 20:17:00.896297163 -0500 -@@ -517,7 +517,11 @@ - return -EINVAL; - } - -+#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 4, 0) - rootDentry = d_alloc_root(rootInode); -+#else -+ rootDentry = d_make_root(rootInode); -+#endif - if (!rootDentry) { - iput(rootInode); - return -ENOMEM; diff --git a/app-emulation/vmware-modules/files/238-jobserver.patch b/app-emulation/vmware-modules/files/238-jobserver.patch deleted file mode 100644 index 59a6ccca1da0..000000000000 --- a/app-emulation/vmware-modules/files/238-jobserver.patch +++ /dev/null @@ -1,75 +0,0 @@ -diff -ru a/work/vmblock-only/Makefile b/work/vmblock-only/Makefile ---- a/work/vmblock-only/Makefile 2011-01-22 08:59:15.907152002 -0500 -+++ b/work/vmblock-only/Makefile 2011-01-22 09:13:55.894938002 -0500 -@@ -123,9 +123,9 @@ - postbuild:: ; - - $(DRIVER_KO): prebuild -- make -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) modules -- make -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) postbuild - endif - -diff -ru a/work/vmci-only/Makefile b/work/vmci-only/Makefile ---- a/work/vmci-only/Makefile 2011-01-22 08:59:15.907152002 -0500 -+++ b/work/vmci-only/Makefile 2011-01-22 09:13:55.898936002 -0500 -@@ -123,9 +123,9 @@ - postbuild:: ; - - $(DRIVER_KO): prebuild -- make -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) modules -- make -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) postbuild - endif - -diff -ru a/work/vmmon-only/Makefile b/work/vmmon-only/Makefile ---- a/work/vmmon-only/Makefile 2011-01-22 08:59:15.907152002 -0500 -+++ b/work/vmmon-only/Makefile 2011-01-22 09:13:55.894938002 -0500 -@@ -123,9 +123,9 @@ - postbuild:: ; - - $(DRIVER_KO): prebuild -- make -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) modules -- make -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) postbuild - endif - -diff -ru a/work/vmnet-only/Makefile b/work/vmnet-only/Makefile ---- a/work/vmnet-only/Makefile 2011-01-22 08:59:15.911150002 -0500 -+++ b/work/vmnet-only/Makefile 2011-01-22 09:13:55.898936002 -0500 -@@ -123,9 +123,9 @@ - postbuild:: ; - - $(DRIVER_KO): prebuild -- make -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) modules -- make -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) postbuild - endif - -diff -ru a/work/vsock-only/Makefile b/work/vsock-only/Makefile ---- a/work/vsock-only/Makefile 2011-01-22 08:59:15.911150002 -0500 -+++ b/work/vsock-only/Makefile 2011-01-22 09:13:55.894938002 -0500 -@@ -123,9 +123,9 @@ - postbuild:: ; - - $(DRIVER_KO): prebuild -- make -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) modules -- make -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ -+ $(MAKE) -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \ - MODULEBUILDDIR=$(MODULEBUILDDIR) postbuild - endif - diff --git a/app-emulation/vmware-modules/files/238-makefile-include.patch b/app-emulation/vmware-modules/files/238-makefile-include.patch deleted file mode 100644 index 777a3fd8bb6f..000000000000 --- a/app-emulation/vmware-modules/files/238-makefile-include.patch +++ /dev/null @@ -1,65 +0,0 @@ -diff --git a/work/vmblock-only/Makefile.kernel b/work/vmblock-only/Makefile.kernel -index 9d7c5ca..92cefff 100644 ---- a/work/vmblock-only/Makefile.kernel -+++ b/work/vmblock-only/Makefile.kernel -@@ -19,7 +19,7 @@ - - INCLUDE += -I$(SRCROOT)/include - --EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) -+EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) $(LINUXINCLUDE) - - EXTRA_CFLAGS += $(call vm_check_build, $(AUTOCONF_DIR)/setnice.c, -DVMW_HAVE_SET_USER_NICE, ) - EXTRA_CFLAGS += $(call vm_check_build, $(AUTOCONF_DIR)/epoll.c, -DVMW_HAVE_EPOLL, ) -diff --git a/work/vmci-only/Makefile.kernel b/work/vmci-only/Makefile.kernel -index 22dc232..67e709f 100644 ---- a/work/vmci-only/Makefile.kernel -+++ b/work/vmci-only/Makefile.kernel -@@ -21,7 +21,7 @@ CC_OPTS += -DVMCI - - INCLUDE := -I$(SRCROOT)/include -I$(SRCROOT)/common -I$(SRCROOT)/linux - --EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) -+EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) $(LINUXINCLUDE) - - EXTRA_CFLAGS += $(call vm_check_build, $(SRCROOT)/autoconf/epoll.c, -DVMW_HAVE_EPOLL, ) - -diff --git a/work/vmmon-only/Makefile.kernel b/work/vmmon-only/Makefile.kernel -index a7e26ea..befaca7 100644 ---- a/work/vmmon-only/Makefile.kernel -+++ b/work/vmmon-only/Makefile.kernel -@@ -22,7 +22,7 @@ CC_OPTS += -DVMMON -DVMCORE - INCLUDE := -I$(SRCROOT)/include -I$(SRCROOT)/common -I$(SRCROOT)/linux \ - -I$(SRCROOT)/vmcore - --EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) -+EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) $(LINUXINCLUDE) - - EXTRA_CFLAGS += $(call vm_check_build, $(SRCROOT)/autoconf/nopage1.c, -DVMW_NOPAGE_261, ) - EXTRA_CFLAGS += $(call vm_check_build, $(SRCROOT)/autoconf/skas1.c, -DVMW_SKAS_MMAP, ) -diff --git a/work/vmnet-only/Makefile.kernel b/work/vmnet-only/Makefile.kernel -index 4b16d06..0e252a6 100644 ---- a/work/vmnet-only/Makefile.kernel -+++ b/work/vmnet-only/Makefile.kernel -@@ -19,7 +19,7 @@ - - INCLUDE := -I$(SRCROOT) - --EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) -+EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) $(LINUXINCLUDE) - EXTRA_CFLAGS += $(call vm_check_build, $(SRCROOT)/epoll.c, -DVMW_HAVE_EPOLL, ) - EXTRA_CFLAGS += $(call vm_check_build, $(SRCROOT)/sk_alloc.c,-DVMW_HAVE_SK_ALLOC_WITH_PROTO, ) - EXTRA_CFLAGS += $(call vm_check_build, $(SRCROOT)/netdev_has_net.c,-DVMW_NETDEV_HAS_NET, ) -diff --git a/work/vsock-only/Makefile.kernel b/work/vsock-only/Makefile.kernel -index 47ef5f3..b3539ef 100644 ---- a/work/vsock-only/Makefile.kernel -+++ b/work/vsock-only/Makefile.kernel -@@ -25,7 +25,7 @@ INCLUDE += -I$(SRCROOT)/include - INCLUDE += -I$(SRCROOT)/linux - INCLUDE += -I$(SRCROOT)/common - --EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) -+EXTRA_CFLAGS := $(CC_OPTS) $(INCLUDE) $(LINUXINCLUDE) - EXTRA_CFLAGS += $(call vm_check_build, $(AUTOCONF_DIR)/epoll.c, -DVMW_HAVE_EPOLL, ) - EXTRA_CFLAGS += $(call vm_check_build, $(AUTOCONF_DIR)/setnice.c, -DVMW_HAVE_SET_USER_NICE, ) - diff --git a/app-emulation/vmware-modules/files/238-makefile-kernel-dir.patch b/app-emulation/vmware-modules/files/238-makefile-kernel-dir.patch deleted file mode 100644 index d4bd6d12fed0..000000000000 --- a/app-emulation/vmware-modules/files/238-makefile-kernel-dir.patch +++ /dev/null @@ -1,80 +0,0 @@ -diff --git a/work/vmblock-only/Makefile b/work/vmblock-only/Makefile -index 0bd0e74..27c3ede 100644 ---- a/work/vmblock-only/Makefile -+++ b/work/vmblock-only/Makefile -@@ -46,9 +46,9 @@ endif - VM_UNAME = $(shell uname -r) - - # Header directory for the running kernel --HEADER_DIR = /lib/modules/$(VM_UNAME)/build/include -+HEADER_DIR = $(KERNEL_DIR) - --BUILD_DIR = $(HEADER_DIR)/.. -+BUILD_DIR = $(KBUILD_OUTPUT) - - DRIVER := vmblock - PRODUCT := tools -diff --git a/work/vmci-only/Makefile b/work/vmci-only/Makefile -index 7babb8a..fbc5878 100644 ---- a/work/vmci-only/Makefile -+++ b/work/vmci-only/Makefile -@@ -46,9 +46,9 @@ endif - VM_UNAME = $(shell uname -r) - - # Header directory for the running kernel --HEADER_DIR = /lib/modules/$(VM_UNAME)/build/include -+HEADER_DIR = $(KERNEL_DIR) - --BUILD_DIR = $(HEADER_DIR)/.. -+BUILD_DIR = $(KBUILD_OUTPUT) - - DRIVER := vmci - PRODUCT := @@PRODUCT@@ -diff --git a/work/vmmon-only/Makefile b/work/vmmon-only/Makefile -index 4b4eb3e..1bb35ef 100644 ---- a/work/vmmon-only/Makefile -+++ b/work/vmmon-only/Makefile -@@ -46,9 +46,9 @@ endif - VM_UNAME = $(shell uname -r) - - # Header directory for the running kernel --HEADER_DIR = /lib/modules/$(VM_UNAME)/build/include -+HEADER_DIR = $(KERNEL_DIR) - --BUILD_DIR = $(HEADER_DIR)/.. -+BUILD_DIR = $(KBUILD_OUTPUT) - - DRIVER := vmmon - PRODUCT := @@PRODUCT@@ -diff --git a/work/vmnet-only/Makefile b/work/vmnet-only/Makefile -index 06856e7..fd53bf8 100644 ---- a/work/vmnet-only/Makefile -+++ b/work/vmnet-only/Makefile -@@ -46,9 +46,9 @@ endif - VM_UNAME = $(shell uname -r) - - # Header directory for the running kernel --HEADER_DIR = /lib/modules/$(VM_UNAME)/build/include -+HEADER_DIR = $(KERNEL_DIR) - --BUILD_DIR = $(HEADER_DIR)/.. -+BUILD_DIR = $(KBUILD_OUTPUT) - - DRIVER := vmnet - PRODUCT := @@PRODUCT@@ -diff --git a/work/vsock-only/Makefile b/work/vsock-only/Makefile -index e02adb0..210e502 100644 ---- a/work/vsock-only/Makefile -+++ b/work/vsock-only/Makefile -@@ -46,9 +46,9 @@ endif - VM_UNAME = $(shell uname -r) - - # Header directory for the running kernel --HEADER_DIR = /lib/modules/$(VM_UNAME)/build/include -+HEADER_DIR = $(KERNEL_DIR) - --BUILD_DIR = $(HEADER_DIR)/.. -+BUILD_DIR = $(KBUILD_OUTPUT) - - DRIVER := vsock - PRODUCT := ws diff --git a/app-emulation/vmware-modules/files/238-netdevice.patch b/app-emulation/vmware-modules/files/238-netdevice.patch deleted file mode 100644 index 35231a3205e3..000000000000 --- a/app-emulation/vmware-modules/files/238-netdevice.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff --git a/vmnet-only/compat_netdevice.h b/vmnet-only/compat_netdevice.h -index 7a56304..9ff4548 100644 ---- a/vmnet-only/compat_netdevice.h -+++ b/vmnet-only/compat_netdevice.h -@@ -47,6 +47,19 @@ - # define net_device device - #endif - -+/* it looks like these have been removed from the kernel 3.1 -+ * probably because the "transition" is considered complete. -+ * so to keep this source compatible we just redefine them like they were -+ * previously -+ */ -+#if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 1, 0) -+#define HAVE_ALLOC_NETDEV /* feature macro: alloc_xxxdev -+ functions are available. */ -+#define HAVE_FREE_NETDEV /* free_netdev() */ -+#define HAVE_NETDEV_PRIV /* netdev_priv() */ -+#define HAVE_NETIF_QUEUE -+#define HAVE_NET_DEVICE_OPS -+#endif - - /* - * SET_MODULE_OWNER appeared sometime during 2.3.x. It was setting diff --git a/app-emulation/vmware-modules/files/238-sema.patch b/app-emulation/vmware-modules/files/238-sema.patch deleted file mode 100644 index 1ebdab7ee009..000000000000 --- a/app-emulation/vmware-modules/files/238-sema.patch +++ /dev/null @@ -1,83 +0,0 @@ -diff -ru original//vmci-only/include/compat_semaphore.h patched//vmci-only/include/compat_semaphore.h ---- original//vmci-only/include/compat_semaphore.h 2010-11-11 15:37:25.000000000 -0500 -+++ patched//vmci-only/include/compat_semaphore.h 2010-11-20 10:11:56.000000000 -0500 -@@ -28,7 +28,7 @@ - #endif - - --#if defined CONFIG_PREEMPT_RT && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31) -+#if (defined CONFIG_PREEMPT_RT && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31)) || LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37) - /* - * The -rt patch series changes the name of semaphore/mutex initialization - * routines (across the entire kernel). Probably to identify locations that -@@ -41,7 +41,7 @@ - #define DECLARE_MUTEX(_m) DEFINE_SEMAPHORE(_m) - #endif - #ifndef init_MUTEX -- #define init_MUTEX(_m) semaphore_init(_m) -+ #define init_MUTEX(_m) sema_init(_m,1) - #endif - #endif - -diff -ru original//vmmon-only/linux/driver.c patched//vmmon-only/linux/driver.c ---- original//vmmon-only/linux/driver.c 2010-11-11 15:37:22.000000000 -0500 -+++ patched//vmmon-only/linux/driver.c 2010-11-29 23:09:16.000000000 -0500 -@@ -145,7 +145,7 @@ - #endif - #if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 0) && \ - (defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)) --# define kernel_locked_by_current() kernel_locked() -+# define kernel_locked_by_current() (current->lock_depth >= 0) - #else - # define kernel_locked_by_current() 0 - #endif -@@ -170,6 +170,7 @@ - static int LinuxDriver_Ioctl(struct inode *inode, struct file *filp, - u_int iocmd, unsigned long ioarg); - #if defined(HAVE_UNLOCKED_IOCTL) || defined(HAVE_COMPAT_IOCTL) -+#define VMW_HAVE_UNLOCKED_IOCTL - static long LinuxDriver_UnlockedIoctl(struct file *filp, - u_int iocmd, unsigned long ioarg); - #endif -diff -ru original//vmnet-only/compat_semaphore.h patched//vmnet-only/compat_semaphore.h ---- original//vmnet-only/compat_semaphore.h 2010-11-11 15:37:23.000000000 -0500 -+++ patched//vmnet-only/compat_semaphore.h 2010-11-20 10:11:56.000000000 -0500 -@@ -28,7 +28,7 @@ - #endif - - --#if defined CONFIG_PREEMPT_RT && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31) -+#if (defined CONFIG_PREEMPT_RT && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31)) || LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37) - /* - * The -rt patch series changes the name of semaphore/mutex initialization - * routines (across the entire kernel). Probably to identify locations that -@@ -41,7 +41,7 @@ - #define DECLARE_MUTEX(_m) DEFINE_SEMAPHORE(_m) - #endif - #ifndef init_MUTEX -- #define init_MUTEX(_m) semaphore_init(_m) -+ #define init_MUTEX(_m) sema_init(_m,1) - #endif - #endif - -diff -ru original//vsock-only/shared/compat_semaphore.h patched//vsock-only/shared/compat_semaphore.h ---- original//vsock-only/shared/compat_semaphore.h 2010-11-11 13:04:44.000000000 -0500 -+++ patched//vsock-only/shared/compat_semaphore.h 2010-11-20 10:11:56.000000000 -0500 -@@ -28,7 +28,7 @@ - #endif - - --#if defined CONFIG_PREEMPT_RT && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31) -+#if (defined CONFIG_PREEMPT_RT && LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 31)) || LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37) - /* - * The -rt patch series changes the name of semaphore/mutex initialization - * routines (across the entire kernel). Probably to identify locations that -@@ -41,7 +41,7 @@ - #define DECLARE_MUTEX(_m) DEFINE_SEMAPHORE(_m) - #endif - #ifndef init_MUTEX -- #define init_MUTEX(_m) semaphore_init(_m) -+ #define init_MUTEX(_m) sema_init(_m,1) - #endif - #endif - diff --git a/app-emulation/vmware-modules/files/238-unlocked_ioctl.patch b/app-emulation/vmware-modules/files/238-unlocked_ioctl.patch deleted file mode 100644 index 3f1cd030c425..000000000000 --- a/app-emulation/vmware-modules/files/238-unlocked_ioctl.patch +++ /dev/null @@ -1,33 +0,0 @@ -diff --git a/vmmon-only/linux/driver.c b/vmmon-only/linux/driver.c -index 1a0e753..089aba3 100644 ---- a/vmmon-only/linux/driver.c -+++ b/vmmon-only/linux/driver.c -@@ -170,6 +170,7 @@ static int LinuxDriver_Open(struct inode *inode, struct file *filp); - static int LinuxDriver_Ioctl(struct inode *inode, struct file *filp, - u_int iocmd, unsigned long ioarg); - #if defined(HAVE_UNLOCKED_IOCTL) || defined(HAVE_COMPAT_IOCTL) -+#define VMW_HAVE_UNLOCKED_IOCTL - static long LinuxDriver_UnlockedIoctl(struct file *filp, - u_int iocmd, unsigned long ioarg); - #endif -diff --git a/vmmon-only/linux/hostif.c b/vmmon-only/linux/hostif.c -index 5847323..9042b97 100644 ---- a/vmmon-only/linux/hostif.c -+++ b/vmmon-only/linux/hostif.c -@@ -3702,7 +3702,7 @@ HostIFDoIoctl(struct file *filp, - if (filp->f_op->unlocked_ioctl) { - return filp->f_op->unlocked_ioctl(filp, iocmd, ioarg); - } --#endif -+#else - if (filp->f_op->ioctl) { - long err; - -@@ -3712,6 +3712,7 @@ HostIFDoIoctl(struct file *filp, - - return err; - } -+#endif - - return -ENOIOCTLCMD; - } diff --git a/app-emulation/vmware-modules/vmware-modules-238.6.ebuild b/app-emulation/vmware-modules/vmware-modules-238.6.ebuild deleted file mode 100644 index 599ffed04757..000000000000 --- a/app-emulation/vmware-modules/vmware-modules-238.6.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-modules/vmware-modules-238.6.ebuild,v 1.3 2013/06/21 20:44:01 dilfridge Exp $ - -EAPI="4" - -inherit eutils flag-o-matic linux-info linux-mod user versionator udev - -PV_MAJOR=$(get_major_version) -PV_MINOR=$(get_version_component_range 2) - -DESCRIPTION="VMware kernel modules" -HOMEPAGE="http://www.vmware.com/" - -SRC_URI="" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RDEPEND="" -DEPEND="${RDEPEND} - || ( =app-emulation/vmware-player-3.1.${PV_MINOR}* - =app-emulation/vmware-workstation-7.1.${PV_MINOR}* )" - -S=${WORKDIR} - -pkg_setup() { - CONFIG_CHECK="~HIGH_RES_TIMERS" - if kernel_is ge 2 6 37 && kernel_is lt 2 6 39; then - CONFIG_CHECK="${CONFIG_CHECK} BKL" - fi - - linux-info_pkg_setup - - linux-mod_pkg_setup - - VMWARE_GROUP=${VMWARE_GROUP:-vmware} - - VMWARE_MODULE_LIST="vmblock vmci vmmon vmnet vsock" - VMWARE_MOD_DIR="${PN}-${PVR}" - - BUILD_TARGETS="auto-build KERNEL_DIR=${KERNEL_DIR} KBUILD_OUTPUT=${KV_OUT_DIR}" - - enewgroup "${VMWARE_GROUP}" - filter-flags -mfpmath=sse - - for mod in ${VMWARE_MODULE_LIST}; do - MODULE_NAMES="${MODULE_NAMES} ${mod}(misc:${S}/${mod}-only)" - done -} - -src_unpack() { - cd "${S}" - for mod in ${VMWARE_MODULE_LIST}; do - tar -xf /opt/vmware/lib/vmware/modules/source/${mod}.tar - done -} - -src_prepare() { - epatch "${FILESDIR}/${PV_MAJOR}-makefile-kernel-dir.patch" - epatch "${FILESDIR}/${PV_MAJOR}-makefile-include.patch" - epatch "${FILESDIR}/${PV_MAJOR}-jobserver.patch" - kernel_is ge 2 6 37 && epatch "${FILESDIR}/${PV_MAJOR}-sema.patch" - kernel_is ge 2 6 39 && epatch "${FILESDIR}/${PV_MAJOR}-2.6.39.patch" - epatch "${FILESDIR}/${PV_MAJOR}-netdevice.patch" - epatch "${FILESDIR}/${PV_MAJOR}-3.2.0.patch" - epatch "${FILESDIR}/${PV_MAJOR}-d-make-root.patch" - - # Allow user patches so they can support RC kernels and whatever else - epatch_user -} - -src_install() { - linux-mod_src_install - local udevrules="${T}/60-vmware.rules" - cat > "${udevrules}" <<-EOF - KERNEL=="vmci", GROUP="vmware", MODE=660 - KERNEL=="vmmon", GROUP="vmware", MODE=660 - KERNEL=="vsock", GROUP="vmware", MODE=660 - EOF - udev_dorules "${udevrules}" -} diff --git a/app-emulation/vmware-workstation/Manifest b/app-emulation/vmware-workstation/Manifest index ef3cef8b8acc..a9cd3253a23a 100644 --- a/app-emulation/vmware-workstation/Manifest +++ b/app-emulation/vmware-workstation/Manifest @@ -1,7 +1,5 @@ DIST VMware-Workstation-10.0.0-1295980.i386.bundle.tar 282490880 SHA256 51a085502cf8c2afda111fca0d01465939d1f3e56139465baa62c60fe7411198 SHA512 33d3cc5990bc403829129a6730efbef4427fb0da92e4b6161dae7f408892f9282c79fa694a24e9179a7fcf687d2fbd8278f8176ff43eba15c22647a3352466fe WHIRLPOOL b70e361113a35725d9e9fad1379bbba012941ea2ba8ee568954192d3a90a3486ad8de97d4cc483b5a46d64bc8bf9b3dd75ef314b01bdc45c99af3d18381ff1f1 DIST VMware-Workstation-10.0.0-1295980.x86_64.bundle.tar 253061120 SHA256 adcd30b81f7825ac41a10246105c38953177ad98195589c47f46b4313ed625e3 SHA512 5fa16700d02899821cd2533e4032dfaaf7b0066bd87af2a4c219eb72afa45833785054112d589b90e7e5665d24ae08cc484380966fa687cc5517fcf830e29d09 WHIRLPOOL 40bc90959022b8251828e6fb05093c601bb5a1afaed79ac54c5e2a4dfb061f49fc88dd3f885c1063ac2e8f7790e164ab146dea71a4f05d7a19556f4ce3dd218b -DIST VMware-Workstation-7.1.6-744570.i386.bundle 130391795 SHA256 fbeadabe7c0929a10f144dc82e37afc73bbd60bedf299bb2c6142dda379ad5b4 SHA512 c57148f0ef7041bdadf46668aaddd0315134185103706dc23815bf3ebe4f2389a9387c63d0caf3fb0e1baf236320c633264e473439b2e00eb26c11d489e6af0a WHIRLPOOL e631ccb14424d5165fc2f9bbe7d910e60c06ed3f4c5fbddbbf5b4bc66153a84927a3779359f3d07b258a59766ff9d063585e1ecc70dc4d107c073bf529541dbf -DIST VMware-Workstation-7.1.6-744570.x86_64.bundle 137422513 SHA256 1a0694349393ce326f62c291d76c1c5e8d5473b49bf986476e1485df422a2f8f SHA512 df72b0c770f9e356efd1bbffe2c596909f193bc2100a015cfbab819fea017ee735fcc932180c0cc5ffbe8223fa66a06dcd35e34d183b06f71c7ba937c440e2fd WHIRLPOOL e7b50e706b88e30801ccaeaedf59f5fbdf06342d8566a65b3cb19ec2c433da52768b55f9e5e58e274071c284d38280e0635f8a9c3fd2d01f53037c1082d15af3 DIST VMware-Workstation-8.0.5-893925.i386.bundle.tar 188180480 SHA256 79033aa837a1b2fcf1229c407b159586152d41f3c624ae1745264443bad06a90 SHA512 2ea55d6ba1b64ee33ca73af46ce4ba58be441ecb973e4f9e3711b7d516b1d6233ee8e125c0d90226169258a5bbccf73f67ea593a1eaa48e7368275f545db3306 WHIRLPOOL 270b37814ee4c19bbe3e1d573016cf1899a90dc1c3500181eeb336220eebde276fb11bb4e46d3121a8e1517f749fe9a127eb76f642938d7b8e8f22ae3fbed556 DIST VMware-Workstation-8.0.5-893925.x86_64.bundle.tar 187729920 SHA256 39010a8b712c9e9ea86f0bf32b1ad86a7788748f00292f344b1bdea899a6ac0d SHA512 010cbe7a6ffa6cd07b6daab8534c4da260aae17a6c7988e74792aa450f266bea306cca49820a65dfb3e0b76e912a5430fe98f4f0446f750fe26b867cfe2ed48d WHIRLPOOL dbf6994fbf87b3eca0fe882075dbdd68de599c7b699e609a43d3bade5e23704158ef11a13dea12b41c2c3c7d57ba493e324b4ebf2b138c9cf5835699ba76ae55 DIST VMware-Workstation-9.0.2-1031769.i386.bundle.tar 264898560 SHA256 f23efa3db418790cffa38a90639edd0f5e0834fa98c69a3146489cc3774a71c7 SHA512 ea38c747e236e3a5ae3da809f22a997044c3306239afbc2cc28dfd04f3589dc23e35295bcb5dfb7f5ea687a908b790fb56afa062b7a5cea523c8645d94d652b0 WHIRLPOOL 18aaed121c973911d00a89790b98c8b22b942d29a3580181e7937fe27882d4cd30b2e0a7c13d22129c2e72c7cbce87cff0c80f32e6726d25cf67ec159506db46 diff --git a/app-emulation/vmware-workstation/files/vmware-7.0.rc b/app-emulation/vmware-workstation/files/vmware-7.0.rc deleted file mode 100644 index 5cbb6e5e3fd9..000000000000 --- a/app-emulation/vmware-workstation/files/vmware-7.0.rc +++ /dev/null @@ -1,33 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/files/vmware-7.0.rc,v 1.1 2011/03/27 15:25:47 vadimk Exp $ - -depend() { - need localmount - use net -} - -start() { - ebegin Starting VMware USB Arbitrator - #start-stop-daemon --start --exec @@BINDIR@@/vmware-usbarbitrator - @@BINDIR@@/vmware-usbarbitrator - eend $? - ebegin Starting VMware services - modprobe -a vmmon vmci vsock vmblock vmnet - eend $? - @@BINDIR@@/vmware-networks --start - eend $? -} - -stop() { - ebegin Stopping VMware USB Arbitrator - #start-stop-daemon --stop --exec @@BINDIR@@/vmware-usbarbitrator - killall --wait @@BINDIR@@/vmware-usbarbitrator - eend $? - @@BINDIR@@/vmware-networks --stop - eend $? - ebegin Stopping VMware services - modprobe -r vsock vmci vmmon vmblock vmnet - eend $? -} diff --git a/app-emulation/vmware-workstation/vmware-workstation-7.1.6.744570.ebuild b/app-emulation/vmware-workstation/vmware-workstation-7.1.6.744570.ebuild deleted file mode 100644 index 29264f5c2bcc..000000000000 --- a/app-emulation/vmware-workstation/vmware-workstation-7.1.6.744570.ebuild +++ /dev/null @@ -1,308 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/vmware-workstation-7.1.6.744570.ebuild,v 1.3 2013/06/22 22:44:06 dilfridge Exp $ - -EAPI="2" - -inherit eutils versionator fdo-mime gnome2-utils vmware-bundle - -MY_PN="VMware-Workstation" -MY_PV="$(replace_version_separator 3 - $PV)" -MY_P="${MY_PN}-${MY_PV}" -PV_MINOR=$(get_version_component_range 3) - -DESCRIPTION="Emulate a complete PC on your PC without the usual performance overhead of most emulators" -HOMEPAGE="http://www.vmware.com/products/workstation/" -SRC_URI=" - x86? ( ${MY_P}.i386.bundle ) - amd64? ( ${MY_P}.x86_64.bundle ) - " - -LICENSE="vmware GPL-2" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" -IUSE="doc vix +vmware-tools" -RESTRICT="fetch mirror strip" - -# vmware-workstation should not use virtual/libc as this is a -# precompiled binary package thats linked to glibc. -RDEPEND="dev-cpp/cairomm - dev-cpp/glibmm:2 - dev-cpp/gtkmm:2.4 - dev-cpp/libgnomecanvasmm - dev-cpp/libsexymm - dev-cpp/pangomm - dev-libs/atk - dev-libs/glib:2 - dev-libs/libaio - dev-libs/libsigc++ - dev-libs/libxml2 - =dev-libs/openssl-0.9.8* - dev-libs/xmlrpc-c - gnome-base/libgnomecanvas - gnome-base/libgtop:2 - gnome-base/librsvg:2 - gnome-base/orbit - media-libs/fontconfig - media-libs/freetype - media-libs/libart_lgpl - =media-libs/libpng-1.2* - net-misc/curl - sys-devel/gcc - sys-fs/fuse - sys-libs/glibc - sys-libs/zlib - x11-libs/cairo - x11-libs/gtk+:2 - x11-libs/libgksu - x11-libs/libICE - x11-libs/libsexy - x11-libs/libSM - >=x11-libs/libview-0.6.6 - x11-libs/libX11 - x11-libs/libXau - x11-libs/libxcb - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXdmcp - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXft - x11-libs/libXi - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXtst - x11-libs/pango - x11-libs/startup-notification - x11-themes/hicolor-icon-theme - !app-emulation/vmware-server - !app-emulation/vmware-player" -PDEPEND="~app-emulation/vmware-modules-238.${PV_MINOR} - vmware-tools? ( app-emulation/vmware-tools )" - -S=${WORKDIR} -VM_INSTALL_DIR="/opt/vmware" - -pkg_nofetch() { - local bundle - - if use x86; then - bundle="${MY_P}.i386.bundle" - elif use amd64; then - bundle="${MY_P}.x86_64.bundle" - fi - - einfo "Please download ${bundle}" - einfo "from ${HOMEPAGE}" - einfo "and place it in ${DISTDIR}" -} - -src_unpack() { - vmware-bundle_extract-bundle-component "${DISTDIR}/${A}" vmware-player-app - vmware-bundle_extract-bundle-component "${DISTDIR}/${A}" vmware-player-setup - vmware-bundle_extract-bundle-component "${DISTDIR}/${A}" vmware-workstation - if use vix; then - vmware-bundle_extract-bundle-component "${DISTDIR}/${A}" vmware-vix - fi -} - -src_prepare() { - rm -rf "${S}"/vmware-player-app/bin/vmware-modconfig - rm -rf "${S}"/vmware-player-app/lib/modules/binary - - # remove superfluous libraries - ebegin 'Removing superfluous libraries' - cd vmware-player-app/lib/lib || die - # exclude OpenSSL from unbundling until the AES-NI patch gets into the tree - # see http://forums.gentoo.org/viewtopic-t-835867.html - ldconfig -p | sed 's:^\s\+\([^(]*[^( ]\).*=> /.*$:\1:g;t;d' | fgrep -vx 'libcrypto.so.0.9.8 -libssl.so.0.9.8' | xargs -d'\n' -r rm -rf - cd ../../../vmware-workstation/lib/lib || die - ldconfig -p | sed 's:^\s\+\([^(]*[^( ]\).*=> /.*$:\1:g;t;d' | fgrep -vx 'libcrypto.so.0.9.8 -libssl.so.0.9.8' | xargs -d'\n' -r rm -rf - eend -} - -src_install() { - local major_minor_revision=$(get_version_component_range 1-3 "${PV}") - local build=$(get_version_component_range 4 "${PV}") - - cd "${S}"/vmware-player-app - - # install the binaries - into "${VM_INSTALL_DIR}" - dobin bin/* - dosbin sbin/* - - # install the libraries - insinto "${VM_INSTALL_DIR}"/lib/vmware - doins -r lib/* - - # install the ancillaries - insinto /usr - doins -r share - - # commented out until Portage gets OpenSSL 0.9.8 with AES-NI support - # see http://forums.gentoo.org/viewtopic-t-835867.html - ## these two libraries do not like to load from /usr/lib* - #local each ; for each in libcrypto.so.0.9.8 libssl.so.0.9.8 ; do - # if [[ ! -f "${VM_INSTALL_DIR}/lib/vmware/lib/${each}" ]] ; then - # dosym "/usr/$(get_libdir)/${each}" \ - # "${VM_INSTALL_DIR}/lib/vmware/lib/${each}/${each}" - # fi - #done - - # install vmware-config - cd "${S}"/vmware-player-setup - insinto "${VM_INSTALL_DIR}"/lib/vmware/setup - doins vmware-config - - # install vmware-workstation - cd "${S}"/vmware-workstation - - # install the binaries - into "${VM_INSTALL_DIR}" - dobin bin/* - - # install the libraries - insinto "${VM_INSTALL_DIR}"/lib/vmware - doins -r lib/* - - # install the ancillaries - insinto /usr - doins -r share - - # install documentation - doman man/man1/vmware.1.gz - - if use doc; then - dodoc doc/open_source_licenses.txt - dodoc doc/vmware-vmci/samples/* - fi - - # install vmware-vix - if use vix; then - cd "${S}"/vmware-vix - - # install the binary - into "${VM_INSTALL_DIR}" - dobin bin/* - - # install the libraries - insinto "${VM_INSTALL_DIR}"/lib/vmware-vix - doins -r lib/* - - dosym vmware-vix/libvixAllProducts.so "${VM_INSTALL_DIR}"/lib/libbvixAllProducts.so - - # install headers - insinto /usr/include/vmware-vix - doins include/* - - if use doc; then - dohtml -r doc/* - fi - fi - - # create symlinks for the various tools - local tool ; for tool in vmware vmplayer{,-daemon} \ - vmware-{acetool,gksu,fuseUI,modconfig{,-console},netcfg,tray,unity-helper} ; do - dosym appLoader "${VM_INSTALL_DIR}"/lib/vmware/bin/"${tool}" - done - dosym "${VM_INSTALL_DIR}"/lib/vmware/bin/vmplayer "${VM_INSTALL_DIR}"/bin/vmplayer - dosym "${VM_INSTALL_DIR}"/lib/vmware/bin/vmware "${VM_INSTALL_DIR}"/bin/vmware - - # fix up permissions - chmod 0755 "${D}${VM_INSTALL_DIR}"/lib/vmware/{bin/*,lib/wrapper-gtk24.sh,setup/*} - chmod 04711 "${D}${VM_INSTALL_DIR}"/sbin/vmware-authd - chmod 04711 "${D}${VM_INSTALL_DIR}"/lib/vmware/bin/vmware-vmx* - if use vix; then - chmod 0755 "${D}${VM_INSTALL_DIR}"/lib/vmware-vix/setup/* - fi - - # create the environment - local envd="${T}/90vmware" - cat > "${envd}" <<-EOF - PATH='${VM_INSTALL_DIR}/bin' - ROOTPATH='${VM_INSTALL_DIR}/bin' - EOF - doenvd "${envd}" - - # create the configuration - dodir /etc/vmware - - cat > "${D}"/etc/vmware/bootstrap <<-EOF - BINDIR='${VM_INSTALL_DIR}/bin' - LIBDIR='${VM_INSTALL_DIR}/lib' - EOF - - cat > "${D}"/etc/vmware/config <<-EOF - bindir = "${VM_INSTALL_DIR}/bin" - libdir = "${VM_INSTALL_DIR}/lib/vmware" - initscriptdir = "/etc/init.d" - authd.fullpath = "${VM_INSTALL_DIR}/sbin/vmware-authd" - gksu.rootMethod = "su" - VMCI_CONFED = "yes" - VMBLOCK_CONFED = "yes" - VSOCK_CONFED = "yes" - NETWORKING = "yes" - player.product.version = "${major_minor_revision}" - product.buildNumber = "${build}" - product.name = "VMware Workstation" - workstation.product.version = "${major_minor_revision}" - EOF - - if use vix; then - cat >> "${D}"/etc/vmware/config <<-EOF - vmware.fullpath = "${VM_INSTALL_DIR}/bin/vmware" - vix.libdir = "${VM_INSTALL_DIR}/lib/vmware-vix" - vix.config.version = "1" - EOF - fi - - # install the init.d script - local initscript="${T}/vmware.rc" - sed -e "s:@@BINDIR@@:${VM_INSTALL_DIR}/bin:g" \ - "${FILESDIR}/vmware-7.0.rc" > ${initscript} - newinitd "${initscript}" vmware - - # fill in variable placeholders - sed -e "s:@@LIBCONF_DIR@@:${VM_INSTALL_DIR}/lib/vmware/libconf:g" \ - -i "${D}${VM_INSTALL_DIR}"/lib/vmware/libconf/etc/{gtk-2.0/{gdk-pixbuf.loaders,gtk.immodules},pango/pango{.modules,rc}} - sed -e "s:@@BINARY@@:${VM_INSTALL_DIR}/bin/vmware:g" \ - -i "${D}/usr/share/applications/${PN}.desktop" - sed -e "s:@@BINARY@@:${VM_INSTALL_DIR}/bin/vmplayer:g" \ - -i "${D}/usr/share/applications/vmware-player.desktop" - sed -e "s:@@BINARY@@:${VM_INSTALL_DIR}/bin/vmware-netcfg:g" \ - -i "${D}/usr/share/applications/vmware-netcfg.desktop" -} - -pkg_config() { - "${VM_INSTALL_DIR}"/bin/vmware-networks --postinstall ${PN},old,new -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - fdo-mime_desktop_database_update - gnome2_icon_cache_update - - ewarn "/etc/env.d was updated. Please run:" - ewarn "env-update && source /etc/profile" - ewarn "" - ewarn "Before you can use vmware-player, you must configure a default network setup." - ewarn "You can do this by running 'emerge --config ${PN}'." -} - -pkg_prerm() { - einfo "Stopping ${PN} for safe unmerge" - /etc/init.d/vmware stop -} - -pkg_postrm() { - fdo-mime_desktop_database_update - gnome2_icon_cache_update -} diff --git a/app-emulation/vmware-workstation/vmware-workstation-9.0.2.1031769.ebuild b/app-emulation/vmware-workstation/vmware-workstation-9.0.2.1031769.ebuild deleted file mode 100644 index 031fe78f1b67..000000000000 --- a/app-emulation/vmware-workstation/vmware-workstation-9.0.2.1031769.ebuild +++ /dev/null @@ -1,483 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/vmware-workstation/vmware-workstation-9.0.2.1031769.ebuild,v 1.2 2013/06/22 22:44:06 dilfridge Exp $ - -EAPI="4" - -inherit eutils versionator fdo-mime gnome2-utils pam vmware-bundle - -MY_PN="VMware-Workstation" -MY_PV=$(get_version_component_range 1-3) -PV_MINOR=$(get_version_component_range 3) -PV_BUILD=$(get_version_component_range 4) -MY_P="${MY_PN}-${MY_PV}-${PV_BUILD}" - -DESCRIPTION="Emulate a complete PC on your PC without the usual performance overhead of most emulators" -HOMEPAGE="http://www.vmware.com/products/workstation/" -BASE_URI="https://softwareupdate.vmware.com/cds/vmw-desktop/ws/${MY_PV}/${PV_BUILD}/linux/core/" -SRC_URI=" - x86? ( ${BASE_URI}${MY_P}.i386.bundle.tar ) - amd64? ( ${BASE_URI}${MY_P}.x86_64.bundle.tar ) - " -LICENSE="vmware GPL-2" -SLOT="0" -KEYWORDS="-* ~amd64 ~x86" -IUSE="cups doc ovftool server vix vmware-tools" -RESTRICT="mirror strip" - -# vmware-workstation should not use virtual/libc as this is a -# precompiled binary package thats linked to glibc. -RDEPEND="dev-cpp/cairomm - dev-cpp/glibmm:2 - dev-cpp/gtkmm:2.4 - dev-cpp/libgnomecanvasmm - dev-cpp/pangomm - dev-libs/atk - dev-libs/glib:2 - dev-libs/icu - dev-libs/expat - dev-libs/libaio - dev-libs/libsigc++ - dev-libs/libxml2 - =dev-libs/openssl-0.9.8* - dev-libs/xmlrpc-c - gnome-base/libgnomecanvas - gnome-base/libgtop:2 - gnome-base/librsvg:2 - gnome-base/orbit - media-libs/fontconfig - media-libs/freetype - media-libs/libart_lgpl - =media-libs/libpng-1.2* - media-libs/libpng - net-misc/curl - cups? ( net-print/cups ) - sys-devel/gcc - sys-fs/fuse - sys-libs/glibc - sys-libs/zlib - x11-libs/cairo - x11-libs/gtk+:2 - x11-libs/libgksu - x11-libs/libICE - x11-libs/libSM - x11-libs/libX11 - x11-libs/libXau - x11-libs/libxcb - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXdmcp - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXft - x11-libs/libXi - x11-libs/libXinerama - x11-libs/libXrandr - x11-libs/libXrender - x11-libs/libXtst - x11-libs/pango - x11-libs/startup-notification - x11-themes/hicolor-icon-theme - !app-emulation/vmware-player" -PDEPEND="~app-emulation/vmware-modules-271.${PV_MINOR} - vmware-tools? ( app-emulation/vmware-tools )" - -S=${WORKDIR} -VM_INSTALL_DIR="/opt/vmware" -VM_DATA_STORE_DIR="/var/lib/vmware/Shared VMs" -VM_HOSTD_USER="root" - -src_unpack() { - default - local bundle=${A%.tar} - local component; for component in \ - vmware-vmx \ - vmware-player-app \ - vmware-player-setup \ - vmware-workstation \ - vmware-network-editor \ - vmware-network-editor-ui \ - vmware-usbarbitrator \ - vmware-vprobe - do - vmware-bundle_extract-bundle-component "${bundle}" "${component}" "${S}" - done - - if use server; then - vmware-bundle_extract-bundle-component "${bundle}" vmware-workstation-server #"${S}" - fi - - if use vix; then - vmware-bundle_extract-bundle-component "${bundle}" vmware-vix-core vmware-vix - vmware-bundle_extract-bundle-component "${bundle}" vmware-vix-lib-Workstation900andvSphere510 vmware-vix - fi - if use ovftool; then - vmware-bundle_extract-bundle-component "${bundle}" vmware-ovftool - fi -} - -src_prepare() { - rm -f bin/vmware-modconfig - rm -rf lib/modules/binary - # Bug 459566 - mv lib/libvmware-netcfg.so lib/lib/ - - if use server; then - rm -f vmware-workstation-server/bin/{openssl,configure-hostd.sh} - fi - - find "${S}" -name '*.a' -delete - -# clean_bundled_libs -} - -clean_bundled_libs() { - ebegin 'Removing superfluous libraries' - cd lib/lib || die - ldconfig -p | \ - sed 's:^\s\+\([^(]*[^( ]\).*=> /.*$:\1:g;t;d' | \ - fgrep -vx 'libcrypto.so.0.9.8 -libssl.so.0.9.8i -libgcr.so.0 -libglib-2.0.so.0' | - xargs -d'\n' -r rm -rf - eend -} - -src_install() { - local major_minor=$(get_version_component_range 1-2 "${PV}") - local major_minor_revision=$(get_version_component_range 1-3 "${PV}") - local build=$(get_version_component_range 4 "${PV}") - - # install the binaries - into "${VM_INSTALL_DIR}" - dobin bin/* - - # install the libraries - insinto "${VM_INSTALL_DIR}"/lib/vmware - doins -r lib/* - - # Bug 432918 - dosym "${VM_INSTALL_DIR}"/lib/vmware/lib/libcrypto.so.0.9.8/libcrypto.so.0.9.8 \ - "${VM_INSTALL_DIR}"/lib/vmware/lib/libvmwarebase.so.0/libcrypto.so.0.9.8 - dosym "${VM_INSTALL_DIR}"/lib/vmware/lib/libssl.so.0.9.8/libssl.so.0.9.8 \ - "${VM_INSTALL_DIR}"/lib/vmware/lib/libvmwarebase.so.0/libssl.so.0.9.8 - - # install the ancillaries - insinto /usr - doins -r share - - if use cups; then - exeinto $(cups-config --serverbin)/filter - doexe extras/thnucups - - insinto /etc/cups - doins -r etc/cups/* - fi - - insinto /etc/xdg - doins -r etc/xdg/* - - # install documentation - doman man/man1/vmware.1.gz - - if use doc; then - dodoc doc/* - fi - - insinto "${VM_INSTALL_DIR}"/lib/vmware/setup - doins vmware-config - - # install vmware workstation server - if use server; then - dosbin sbin/* - - cd "${S}"/vmware-workstation-server - - # install binaries - into "${VM_INSTALL_DIR}"/lib/vmware - dobin bin/* - - dobin "${FILESDIR}"/configure-hostd.sh - - dobin "${FILESDIR}"/configure-hostd.sh - - # install the libraries - insinto "${VM_INSTALL_DIR}"/lib/vmware/lib - doins -r lib/* - - into "${VM_INSTALL_DIR}" - for tool in vmware-{hostd,wssc-adminTool} ; do - cat > "${T}/${tool}" <<-EOF - #!/usr/bin/env bash - set -e - - . /etc/vmware/bootstrap - - exec "${VM_INSTALL_DIR}/lib/vmware/lib/wrapper-gtk24.sh" \\ - "${VM_INSTALL_DIR}/lib/vmware/lib" \\ - "${VM_INSTALL_DIR}/lib/vmware/bin/${tool}" \\ - "${VM_INSTALL_DIR}/lib/vmware/libconf" "\$@" - EOF - dobin "${T}/${tool}" - done - - insinto "${VM_INSTALL_DIR}"/lib/vmware - doins -r hostd - - # create the configuration - insinto /etc/vmware/hostd - doins -r config/etc/vmware/hostd/* - doins -r etc/vmware/hostd/* - - insinto /etc/vmware/ssl - doins etc/vmware/ssl/* - - # pam - pamd_mimic_system vmware-authd auth account - - # create directory for shared virtual machines. - keepdir "${VM_DATA_STORE_DIR}" - keepdir /var/log/vmware - fi - - # install vmware-vix - if use vix; then - cd "${S}"/vmware-vix - - # install the binary - into "${VM_INSTALL_DIR}" - dobin bin/* - - # install the libraries - insinto "${VM_INSTALL_DIR}"/lib/vmware-vix - doins -r lib/* - - dosym vmware-vix/libvixAllProducts.so "${VM_INSTALL_DIR}"/lib/libbvixAllProducts.so - - # install headers - insinto /usr/include/vmware-vix - doins include/* - - if use doc; then - dohtml -r doc/* - fi - fi - - # install ovftool - if use ovftool; then - cd "${S}" - - insinto "${VM_INSTALL_DIR}"/lib/vmware-ovftool - doins -r vmware-ovftool/* - - chmod 0755 "${D}${VM_INSTALL_DIR}"/lib/vmware-ovftool/{ovftool,ovftool.bin} - dosym "${D}${VM_INSTALL_DIR}"/lib/vmware-ovftool/ovftool "${VM_INSTALL_DIR}"/bin/ovftool - fi - - # create symlinks for the various tools - local tool ; for tool in thnuclnt vmware vmplayer{,-daemon} \ - vmware-{acetool,enter-serial,gksu,fuseUI,modconfig{,-console},netcfg,tray,unity-helper} ; do - dosym appLoader "${VM_INSTALL_DIR}"/lib/vmware/bin/"${tool}" - done - dosym "${VM_INSTALL_DIR}"/lib/vmware/bin/vmplayer "${VM_INSTALL_DIR}"/bin/vmplayer - dosym "${VM_INSTALL_DIR}"/lib/vmware/bin/vmware "${VM_INSTALL_DIR}"/bin/vmware - dosym "${VM_INSTALL_DIR}"/lib/vmware/icu /etc/vmware/icu - - # fix permissions - fperms 0755 "${VM_INSTALL_DIR}"/lib/vmware/bin/{appLoader,fusermount,launcher.sh,mkisofs,vmware-remotemks} - fperms 0755 "${VM_INSTALL_DIR}"/lib/vmware/lib/{wrapper-gtk24.sh,libgksu2.so.0/gksu-run-helper} - fperms 0755 "${VM_INSTALL_DIR}"/lib/vmware/setup/vmware-config - fperms 4711 "${VM_INSTALL_DIR}"/bin/vmware-mount - fperms 4711 "${VM_INSTALL_DIR}"/lib/vmware/bin/vmware-vmx{,-debug,-stats} - if use server; then - fperms 0755 "${VM_INSTALL_DIR}"/lib/vmware/bin/vmware-{hostd,wssc-adminTool} - fperms 4711 "${VM_INSTALL_DIR}"/sbin/vmware-authd - fperms 1777 "${VM_DATA_STORE_DIR}" - fi - if use vix; then - fperms 0755 "${VM_INSTALL_DIR}"/lib/vmware-vix/setup/vmware-config - fi - - # create the environment - local envd="${T}/90vmware" - cat > "${envd}" <<-EOF - PATH='${VM_INSTALL_DIR}/bin' - ROOTPATH='${VM_INSTALL_DIR}/bin' - EOF - doenvd "${envd}" - - # create the configuration - dodir /etc/vmware - - cat > "${D}"/etc/vmware/bootstrap <<-EOF - BINDIR='${VM_INSTALL_DIR}/bin' - LIBDIR='${VM_INSTALL_DIR}/lib' - EOF - - cat > "${D}"/etc/vmware/config <<-EOF - bindir = "${VM_INSTALL_DIR}/bin" - libdir = "${VM_INSTALL_DIR}/lib/vmware" - initscriptdir = "/etc/init.d" - authd.fullpath = "${VM_INSTALL_DIR}/sbin/vmware-authd" - gksu.rootMethod = "su" - VMCI_CONFED = "yes" - VMBLOCK_CONFED = "yes" - VSOCK_CONFED = "yes" - NETWORKING = "yes" - player.product.version = "${major_minor_revision}" - product.version = "${major_minor_revision}" - product.buildNumber = "${build}" - product.name = "VMware Workstation" - workstation.product.version = "${major_minor_revision}" - EOF - - if use vix; then - cat >> "${D}"/etc/vmware/config <<-EOF - vmware.fullpath = "${VM_INSTALL_DIR}/bin/vmware" - vix.libdir = "${VM_INSTALL_DIR}/lib/vmware-vix" - vix.config.version = "1" - EOF - fi - - if use server; then - cat >> "${D}"/etc/vmware/config <<-EOF - authd.client.port = "902" - authd.proxy.nfc = "vmware-hostd:ha-nfc" - authd.soapserver = "TRUE" - EOF - fi - - # install the init.d script - local initscript="${T}/vmware.rc" - sed -e "s:@@BINDIR@@:${VM_INSTALL_DIR}/bin:g" \ - "${FILESDIR}/vmware-${major_minor}.rc" > ${initscript} - newinitd "${initscript}" vmware - - if use server; then - # install the init.d script - local initscript="${T}/vmware-workstation-server.rc" - sed -e "s:@@ETCDIR@@:/etc/vmware:g" \ - -e "s:@@PREFIX@@:${VM_INSTALL_DIR}:g" \ - -e "s:@@BINDIR@@:${VM_INSTALL_DIR}/bin:g" \ - -e "s:@@LIBDIR@@:${VM_INSTALL_DIR}/lib/vmware:g" \ - "${FILESDIR}/vmware-server-${major_minor}.rc" > ${initscript} - newinitd "${initscript}" vmware-workstation-server - fi - - # fill in variable placeholders - sed -e "s:@@LIBCONF_DIR@@:${VM_INSTALL_DIR}/lib/vmware/libconf:g" \ - -i "${D}${VM_INSTALL_DIR}"/lib/vmware/libconf/etc/{gtk-2.0/{gdk-pixbuf.loaders,gtk.immodules},pango/pango{.modules,rc}} - sed -e "s:@@BINARY@@:${VM_INSTALL_DIR}/bin/vmware:g" \ - -e "/^Encoding/d" \ - -i "${D}/usr/share/applications/${PN}.desktop" - sed -e "s:@@BINARY@@:${VM_INSTALL_DIR}/bin/vmplayer:g" \ - -e "/^Encoding/d" \ - -i "${D}/usr/share/applications/vmware-player.desktop" - sed -e "s:@@BINARY@@:${VM_INSTALL_DIR}/bin/vmware-netcfg:g" \ - -e "/^Encoding/d" \ - -i "${D}/usr/share/applications/vmware-netcfg.desktop" - - if use server; then - # Configuration for vmware-workstation-server - local hostdUser="${VM_HOSTD_USER:-root}" - sed -e "/ACEDataUser/s:root:${hostdUser}:g" \ - -i "${D}/etc/vmware/hostd/authorization.xml" || die - - # Shared VMs Path: [standard]. - sed -e "s:##{DS_NAME}##:standard:g" \ - -e "s:##{DS_PATH}##:${VM_DATA_STORE_DIR}:g" \ - -i "${D}/etc/vmware/hostd/datastores.xml" || die - - sed -e "s:##{HTTP_PORT}##:-1:g" \ - -e "s:##{HTTPS_PORT}##:443:g" \ - -e "s:##{PIPE_PREFIX}##:/var/run/vmware/:g" \ - -i "${D}/etc/vmware/hostd/proxy.xml" || die - - # See vmware-workstation-server.py for more details. - sed -e "s:##{BUILD_CFGDIR}##:/etc/vmware/hostd/:g" \ - -e "s:##{CFGALTDIR}##:/etc/vmware/hostd/:g" \ - -e "s:##{CFGDIR}##:/etc/vmware/:g" \ - -e "s:##{ENABLE_AUTH}##:true:g" \ - -e "s:##{HOSTDMODE}##:ws:g" \ - -e "s:##{HOSTD_CFGDIR}##:/etc/vmware/hostd/:g" \ - -e "s:##{HOSTD_MOCKUP}##:false:g" \ - -e "s:##{LIBDIR}##:${VM_INSTALL_DIR}/lib/vmware:g" \ - -e "s:##{LIBDIR_INSTALLED}##:${VM_INSTALL_DIR}/lib/vmware/:g" \ - -e "s:##{LOGDIR}##:/var/log/vmware/:g" \ - -e "s:##{LOGLEVEL}##:verbose:g" \ - -e "s:##{MOCKUP}##:mockup-host-config.xml:g" \ - -e "s:##{PLUGINDIR}##:./:g" \ - -e "s:##{SHLIB_PREFIX}##:lib:g" \ - -e "s:##{SHLIB_SUFFIX}##:.so:g" \ - -e "s:##{USE_BLKLISTSVC}##:false:g" \ - -e "s:##{USE_CBRCSVC}##:false:g" \ - -e "s:##{USE_CIMSVC}##:false:g" \ - -e "s:##{USE_DIRECTORYSVC}##:false:g" \ - -e "s:##{USE_DIRECTORYSVC_MOCKUP}##:false:g" \ - -e "s:##{USE_DYNAMIC_PLUGIN_LOADING}##:false:g" \ - -e "s:##{USE_DYNAMO}##:false:g" \ - -e "s:##{USE_DYNSVC}##:false:g" \ - -e "s:##{USE_GUESTSVC}##:false:g" \ - -e "s:##{USE_HBRSVC}##:false:g" \ - -e "s:##{USE_HBRSVC_MOCKUP}##:false:g" \ - -e "s:##{USE_HOSTSVC_MOCKUP}##:false:g" \ - -e "s:##{USE_HTTPNFCSVC}##:false:g" \ - -e "s:##{USE_HTTPNFCSVC_MOCKUP}##:false:g" \ - -e "s:##{USE_LICENSESVC_MOCKUP}##:false:g" \ - -e "s:##{USE_NFCSVC}##:true:g" \ - -e "s:##{USE_NFCSVC_MOCKUP}##:false:g" \ - -e "s:##{USE_OVFMGRSVC}##:true:g" \ - -e "s:##{USE_PARTITIONSVC}##:false:g" \ - -e "s:##{USE_SECURESOAP}##:false:g" \ - -e "s:##{USE_SNMPSVC}##:false:g" \ - -e "s:##{USE_SOLO_MOCKUP}##:false:g" \ - -e "s:##{USE_STATSSVC_MOCKUP}##:false:g" \ - -e "s:##{USE_VCSVC_MOCKUP}##:false:g" \ - -e "s:##{USE_VDISKSVC}##:false:g" \ - -e "s:##{USE_VDISKSVC_MOCKUP}##:false:g" \ - -e "s:##{USE_VMSVC_MOCKUP}##:false:g" \ - -e "s:##{VM_INVENTORY}##:vmInventory.xml:g" \ - -e "s:##{VM_RESOURCES}##:vmResources.xml:g" \ - -e "s:##{WEBSERVER_PORT_ENTRY}##::g" \ - -e "s:##{WORKINGDIR}##:./:g" \ - -i "${D}/etc/vmware/hostd/config.xml" || die - - sed -e "s:##{ENV_LOCATION}##:/etc/vmware/hostd/env/:g" \ - -i "${D}/etc/vmware/hostd/environments.xml" || die - - # @@VICLIENT_URL@@=XXX - sed -e "s:@@AUTHD_PORT@@:902:g" \ - -i "${D}${VM_INSTALL_DIR}/lib/vmware/hostd/docroot/client/clients.xml" || die - fi -} - -pkg_config() { - "${VM_INSTALL_DIR}"/bin/vmware-networks --postinstall ${PN},old,new -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - fdo-mime_desktop_database_update - gnome2_icon_cache_update - - ewarn "/etc/env.d was updated. Please run:" - ewarn "env-update && source /etc/profile" - ewarn "" - ewarn "Before you can use vmware workstation, you must configure a default network setup." - ewarn "You can do this by running 'emerge --config ${PN}'." -} - -pkg_prerm() { - einfo "Stopping ${PN} for safe unmerge" - /etc/init.d/vmware stop -} - -pkg_postrm() { - fdo-mime_desktop_database_update - gnome2_icon_cache_update -} diff --git a/app-i18n/multiskkserv/Manifest b/app-i18n/multiskkserv/Manifest index 5d38ebb3efcf..e022ddba57a2 100644 --- a/app-i18n/multiskkserv/Manifest +++ b/app-i18n/multiskkserv/Manifest @@ -1,4 +1 @@ -DIST cdb-0.75.tar.gz 54162 SHA256 1919577799a50c080a8a05a1cbfa5fa7e7abc823d8d7df2eeb181e624b7952c5 SHA512 6faeab91a77457348b58f685e81000b83fb609691317198a06284c5c62dee1e4d6138f90be1e727021f279d740169c175a21b23c96adb39a654e3f7fafdf36c0 WHIRLPOOL 51e1783c3f5c7c44846e370075ca53593cf5cbf82bcdf39e3882b49205058844d7403c571ce007eaba987b23848dcc87e3c4ad3cc7b622389bb2f532bafb4912 -DIST multiskkserv-20020201.tar.bz2 159412 SHA256 3bec276a3cd1831b9075eb61510f10b84c4605448bac4af7fa4d8b3af0612347 SHA512 8c4ee031f91ff1d12f07113fc8cc7f2660ce5db23664ebde72ef25692cf0bd069b88ac4623f148bdb7e26ef940d048db7c76e663cf79c7398a2fdfca76daad93 WHIRLPOOL 5f363a3fa348ea02e11d6941649fc4cdd03e704bf5a02ca561c4ef8c3e42e6c4abf78ca95c811cd3ad3c80add98b2848121cfcd253076efefc3eb7616b071055 -DIST multiskkserv-20051220.tar.bz2 244023 SHA256 c77ec5ec597cc6ff8f40fb63dcf4c470f61d2530a87846d8e4d6466eb5a490ec SHA512 1810e88b670d5503949a01f12486d24cfac9ed5aeb479e156b6fa6482b3cc5951546ca0d94b6e122fefce77fbe16efb32a43c4472c9e478a105d026149acee94 WHIRLPOOL ca3a8f28c7b80fe65a2b9bd9055001d5652ebba2ec2643a3d21e9e8045e5fbf4b6c82a8bcd4843e32f842998de876e9a446a967fd1dc1226243f80abc428189f DIST multiskkserv-20100128.tar.xz 250004 SHA256 e216026891af86b5ce17d5103bdce25d7aac923e53306728fafa7ed7863681bc SHA512 27409600f549317dd2e2fcd0f0a35406a5d445c74e0ba266ed3c19cec849b6d508a30edd65bf72931b0222f003d934a802e5c3c979d5b52ab30da473cabbf5a5 WHIRLPOOL 8cc5ffb53b143b936462bac7b1d2a4021744199f3b151127fb22c1706ca22f25bcd8ccdb4a2b0f7b4208d488c475e8661daff4b16c3fef65b7d7519e224ca327 diff --git a/app-i18n/multiskkserv/files/cdb-0.75-errno.diff b/app-i18n/multiskkserv/files/cdb-0.75-errno.diff deleted file mode 100644 index 5f6ac20c59c6..000000000000 --- a/app-i18n/multiskkserv/files/cdb-0.75-errno.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- error.h.orig 2003-03-29 04:18:26.000000000 -0800 -+++ error.h 2003-03-29 04:19:00.000000000 -0800 -@@ -1,7 +1,7 @@ - #ifndef ERROR_H - #define ERROR_H - --extern int errno; -+#include - - extern int error_intr; - extern int error_nomem; diff --git a/app-i18n/multiskkserv/files/multiskkserv-20020201-gcc34.diff b/app-i18n/multiskkserv/files/multiskkserv-20020201-gcc34.diff deleted file mode 100644 index 6e7f90c4887e..000000000000 --- a/app-i18n/multiskkserv/files/multiskkserv-20020201-gcc34.diff +++ /dev/null @@ -1,11 +0,0 @@ ---- multiskkserv-ctl.c.orig 2002-01-13 06:10:13.000000000 +0900 -+++ multiskkserv-ctl.c 2004-11-23 18:19:27.670353257 +0900 -@@ -168,7 +168,7 @@ - char rbuf[SKKSERV_REQUEST_SIZE]; - - if ((sock = socket_connect(remote, &sstr, port, (char *)SKKSERV_SERVICE, family)) < 0) { -- fprintf(stderr, __FUNCTION__ ": cannot make a connection.\n"); -+ fprintf(stderr, "%s: cannot make a connection.\n", __FUNCTION__); - return; - } - diff --git a/app-i18n/multiskkserv/multiskkserv-20020201.ebuild b/app-i18n/multiskkserv/multiskkserv-20020201.ebuild deleted file mode 100644 index 033a9ba6fcc2..000000000000 --- a/app-i18n/multiskkserv/multiskkserv-20020201.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/multiskkserv/multiskkserv-20020201.ebuild,v 1.16 2011/04/13 15:17:32 ulm Exp $ - -EAPI="2" - -inherit eutils fixheadtails - -CDB_PV=0.75 -CDB_PN=cdb -CDB_P=${CDB_PN}-${CDB_PV} - -DESCRIPTION="SKK server that handles multiple dictionaries" -HOMEPAGE="http://www3.big.or.jp/~sian/linux/products/" -SRC_URI="http://www3.big.or.jp/~sian/linux/products/${P}.tar.bz2 - http://cr.yp.to/cdb/${CDB_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="ppc x86" -IUSE="" - -DEPEND=" - || ( - >=app-i18n/skk-jisyo-200705[cdb] - app-i18n/skk-jisyo-cdb - )" - -src_prepare() { - cd "${WORKDIR}/${CDB_P}" || die - epatch "${FILESDIR}/${CDB_P}-errno.diff" - ht_fix_all - - cd "${S}" || die - ht_fix_all - - cd "${S}/src" || die - epatch "${FILESDIR}/${P}-gcc34.diff" -} - -src_configure() { - cd "${WORKDIR}/${CDB_P}" - emake || die - cd - || die - - cd /usr/share/skk || die - echo "# Available SKK-JISYO files are:" >> "${S}/multiskkserv.conf" - for i in *.cdb ; do - echo "# ${i}" >> "${S}/multiskkserv.conf" - done - cd - - - econf --with-cdb="${WORKDIR}/${CDB_P}" || die -} - -src_install() { - emake DESTDIR="${D}" install || die - - newconfd "${FILESDIR}/multiskkserv.conf" multiskkserv || die - - newinitd "${FILESDIR}/multiskkserv.initd" multiskkserv || die - - dodoc AUTHORS ChangeLog INSTALL NEWS README* || die -} - -pkg_postinst() { - elog "By default, multiskkserv will look up only SKK-JISYO.L." - elog "If you want to use more dictionaries," - elog "edit /etc/conf.d/multiskkserv manually." -} diff --git a/app-i18n/multiskkserv/multiskkserv-20051220.ebuild b/app-i18n/multiskkserv/multiskkserv-20051220.ebuild deleted file mode 100644 index 5bb4976a576a..000000000000 --- a/app-i18n/multiskkserv/multiskkserv-20051220.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/multiskkserv/multiskkserv-20051220.ebuild,v 1.5 2011/04/13 15:17:32 ulm Exp $ - -EAPI="2" - -inherit eutils fixheadtails - -DESCRIPTION="SKK server that handles multiple dictionaries" -HOMEPAGE="http://www3.big.or.jp/~sian/linux/products/" -SRC_URI="http://www3.big.or.jp/~sian/linux/products/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND="dev-db/cdb" -RDEPEND="|| ( - >=app-i18n/skk-jisyo-200705[cdb] - app-i18n/skk-jisyo-cdb - )" - -src_prepare() { - ht_fix_all -} - -src_configure() { - econf --with-cdb=yes || die -} - -src_install() { - emake DESTDIR="${D}" install || die - - newconfd "${FILESDIR}"/multiskkserv.conf multiskkserv || die - newinitd "${FILESDIR}"/multiskkserv.initd multiskkserv || die - - dodoc AUTHORS ChangeLog NEWS README* || die -} - -pkg_postinst() { - elog "By default, multiskkserv will look up only SKK-JISYO.L.cdb." - elog "If you want to use more dictionaries," - elog "edit /etc/conf.d/multiskkserv manually." -} diff --git a/app-i18n/multiskkserv/multiskkserv-20100128.ebuild b/app-i18n/multiskkserv/multiskkserv-20100128.ebuild index 3e4944cc07a7..2ad9d4a4ce3e 100644 --- a/app-i18n/multiskkserv/multiskkserv-20100128.ebuild +++ b/app-i18n/multiskkserv/multiskkserv-20100128.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-i18n/multiskkserv/multiskkserv-20100128.ebuild,v 1.5 2012/10/09 12:47:55 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/multiskkserv/multiskkserv-20100128.ebuild,v 1.7 2013/10/23 14:53:09 hattya Exp $ -EAPI="3" +EAPI="5" -inherit eutils fixheadtails autotools +inherit autotools eutils DESCRIPTION="SKK server that handles multiple dictionaries" HOMEPAGE="http://www3.big.or.jp/~sian/linux/products/" @@ -24,22 +24,19 @@ RDEPEND="|| ( )" src_prepare() { - ht_fix_all epatch "${FILESDIR}"/${P}-cdb.patch eautoreconf } src_configure() { - econf --with-cdb=yes || die + econf --with-cdb=yes } src_install() { - emake DESTDIR="${D}" install || die + default - newconfd "${FILESDIR}"/multiskkserv.conf multiskkserv || die - newinitd "${FILESDIR}"/multiskkserv.initd multiskkserv || die - - dodoc AUTHORS ChangeLog NEWS README* || die + newconfd "${FILESDIR}"/multiskkserv.conf multiskkserv + newinitd "${FILESDIR}"/multiskkserv.initd multiskkserv } pkg_postinst() { diff --git a/app-misc/anki/Manifest b/app-misc/anki/Manifest index 13c290ee0488..37d4b1ca475f 100644 --- a/app-misc/anki/Manifest +++ b/app-misc/anki/Manifest @@ -1,2 +1,3 @@ DIST anki-2.0.12.tgz 3074413 SHA256 f9c6ff6393efde64591ce73baa808e8628c2c4e905de5e7aebfeba9787e68cdd SHA512 d251d2af5235e71371e12c7908c3d7813d71ef630e8e48dc924de03073daebc42724bc8d58b8bc9fedf12d83aad5a2789b983f0b3d0e9e1317bbf1df3f9596e0 WHIRLPOOL 1efede0ea52faebbc8cc0b1008cae861835d7a16ecdcd2971ed0d36bdbee1dca0ab120533412d17744e82d1b85e187d0df53e287ca8f94a1ea6cf20b5c59d337 DIST anki-2.0.14.tgz 3148810 SHA256 5ef027808693e28eee824343df5b1a0a7fdfa98ef74d2f0d7402d8858e88fc9c SHA512 75e30df515f1eaf681e38d14236ebc5ece91673dcc3f92cc7cfc34a021bca37608a9d8123d6b2e45e16174d350523133e1086a2068ad99df8241094cb4bd1f2e WHIRLPOOL 6c54a71f00955d0f7e627a35a3ad0d2653e123966439c4de4d215b0a93db1d48ed66d81032beb79f169c8a933bf12bac8a66707cddb96cb4fbddd039d00f89a1 +DIST anki-2.0.15.tgz 3155764 SHA256 bc91a5d9e6d977b10be7bd600a83cd33da88c1ef3a4be4c5851f1c45d0ef6e09 SHA512 d91ee6536560c476cf9a5dbf543a975d8a97cc185cf0d995a12f67d35de3c368f832d8698b245f8a4b8652775063aa20bb8099b5cdf96d83c717b12b64d5b690 WHIRLPOOL 83cbe4d83cccccab17d922152219846d11a26f6c1b19979f98cdbec02dc5274a9eeaef02fd2fa455de7fcc056f608d2ba118718df5c625b9747ad900a8d53173 diff --git a/app-misc/anki/anki-2.0.15.ebuild b/app-misc/anki/anki-2.0.15.ebuild new file mode 100644 index 000000000000..28f60a7c59f2 --- /dev/null +++ b/app-misc/anki/anki-2.0.15.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/anki/anki-2.0.15.ebuild,v 1.1 2013/10/23 14:57:28 tomka Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_6 python2_7 ) +PYTHON_REQ_USE="sqlite" + +inherit eutils python-single-r1 + +DESCRIPTION="A spaced-repetition memory training program (flash cards)" +HOMEPAGE="http://ichi2.net/anki/" +SRC_URI="http://ankisrs.net/download/mirror/${P}.tgz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="latex +recording +sound" + +RDEPEND="${PYTHON_DEPS} + dev-python/PyQt4[X,svg,webkit] + >=dev-python/httplib2-0.7.4 + dev-python/beautifulsoup:python-2 + dev-python/send2trash + recording? ( media-sound/lame + >=dev-python/pyaudio-0.2.4 ) + sound? ( media-video/mplayer ) + latex? ( app-text/texlive + app-text/dvipng )" +DEPEND="" + +pkg_setup(){ + python-single-r1_pkg_setup +} + +src_prepare() { + rm -r thirdparty || die + sed -i -e "s/suppressUpdate=False/suppressUpdate=True/" \ + aqt/profiles.py +} + +# Nothing to configure or compile +src_configure() { + true; +} + +src_compile() { + true; +} + +src_install() { + doicon ${PN}.png + domenu ${PN}.desktop + doman ${PN}.1 + + dodoc README README.development + python_domodule aqt anki + python_doscript anki/anki +} + +pkg_preinst() { + if has_version "= 3 && < 4.8' 'base >= 3' \ + 'base >= 3 && < 4.8' 'base >= 3' +} diff --git a/dev-haskell/monad-control/Manifest b/dev-haskell/monad-control/Manifest index 769ed8468732..81093dbd7f0a 100644 --- a/dev-haskell/monad-control/Manifest +++ b/dev-haskell/monad-control/Manifest @@ -3,4 +3,5 @@ DIST monad-control-0.3.1.1.tar.gz 10285 SHA256 9d74cf14af8793174d764163b3359b2c1 DIST monad-control-0.3.1.3.tar.gz 10294 SHA256 69cb7b6967417e6477002255c7af2cd54cd7894782d8a753281033065196a06b SHA512 4f3c580dd36577d79e7856c6dd98fe4fc42f3ac2a8d5c730ea69d4b7a29104a6a981e4580519383bd50fc09dc4e73bc7ad30dcb573195bbb8feb20711e8c4a23 WHIRLPOOL 6e8821b7c421bd16d1f36de8541d20503a1ec381075652e9dd4a0e20a3cde6ec923ac36cb3125793af059f9684ca86783a793cb2e17e89c76e80e40c84698533 DIST monad-control-0.3.1.4.tar.gz 10338 SHA256 c17fd5fa094044816ab79158a00fa7a9fd8b35dfea27e1eecc4d4049b3916c57 SHA512 b3acebe09a29c571f8e9ce768dcf314ff5ed761ca786d8053ca427eafbb8e652df11ac00dbb91fb97f45030f70fbfec943783ccf635860f0afe3753ba16ca2fa WHIRLPOOL c2a776f63a07d3aad4d6b0b355e010846c3834e39c13f789493fc3d9f695423c7b02f06dd5d0f622d709ee944e0d81e01e29cfc36b0e9c024db6dc396819c674 DIST monad-control-0.3.2.1.tar.gz 10685 SHA256 4395df5ea2b9278a96d7c8e93c81202b9441ba5fcfbd03b90c7d4ea1c66b8e9f SHA512 adcff15bbcda1cbf28e81bbe03cf6f0f4dd19735194081e88c1f9ba99335f1b275706b61be4af5fe7f234f9f59f6a96276457a7bb1ab7377483588cc320bb252 WHIRLPOOL 0aece4b3e4138e6e091d1695018172e6f571b107b129d9e3d143519cb2bf1689d9b58a099884a74220d70bfd1127faed077f8e09799b8a9549b3374570c53431 +DIST monad-control-0.3.2.2.tar.gz 10684 SHA256 acef78a42ec8bb99efda077b36bb1db8f4b6a1d58aa3865cc7b27e0ba6e88cf3 SHA512 4ae7959347a83a781bef6275f4880b53d1c67a9ef5d1bc32c3337797bb991df71c4df71206073a12e46a1512e3290d474a03b0c4ae6496316f41f4248c0c8de9 WHIRLPOOL a6133340bfc8a2f75a524f2d359938578490470fc4dd6c5932626ffd80ea70f2ec9d6f72db1f5624a6028eca6c6f55e3d3dff6a2fd0f0973ecf6c1d57be1c45d DIST monad-control-0.3.2.tar.gz 10684 SHA256 eaa6f1c71164bafa02f5df03db35442bd34992dc3434d9d91c2965c9127a81bf SHA512 68101945608c672fef5007dcad4a2148aac48e69403da5c7f466f507d5f51b39fdf36dc1e9c0fd1a31665e4b2312ef709bc55e1524527148cd0ae3ea3eafd3ec WHIRLPOOL b3eec28edf7bf4923f6627039ddf04903e8984726307967abaf1e39ad5e346f2856b9933902a7bf46ce7a7c846fad619b4d8e6828e2dda242ee0455f404b2e23 diff --git a/dev-haskell/monad-control/monad-control-0.3.2.2.ebuild b/dev-haskell/monad-control/monad-control-0.3.2.2.ebuild new file mode 100644 index 000000000000..b0d1bc3f4dab --- /dev/null +++ b/dev-haskell/monad-control/monad-control-0.3.2.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/monad-control/monad-control-0.3.2.2.ebuild,v 1.1 2013/10/23 05:07:09 gienah Exp $ + +EAPI=5 + +# ebuild generated by hackport 0.3.4.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour" +inherit haskell-cabal + +DESCRIPTION="Lift control operations, like exception catching, through monad transformers" +HOMEPAGE="https://github.com/basvandijk/monad-control" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86 ~amd64-linux" +IUSE="+instancest" + +RDEPEND=">=dev-haskell/base-unicode-symbols-0.1.1:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-haskell/transformers-base-0.4.1:=[profile?] =dev-lang/ghc-6.10.4:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.6.0.3 +" + +src_configure() { + haskell-cabal_src_configure \ + $(cabal_flag instancest instancest) +} diff --git a/dev-haskell/path-pieces/Manifest b/dev-haskell/path-pieces/Manifest index 16698555f86b..72a8c8ba2c86 100644 --- a/dev-haskell/path-pieces/Manifest +++ b/dev-haskell/path-pieces/Manifest @@ -1 +1,2 @@ DIST path-pieces-0.1.2.tar.gz 2485 SHA256 4aada5c3651017f28f0f9676f9b79868aba8b23dc1991d0d7252b8802952bab3 SHA512 19e9a1643c885cac702af8cbb9ccb5fa3cc65fea6a6951fe72da808920451b4373dc64f9c32b6a753898ee2dd3a273daa23d2544ef50e6350142ebaee48f652d WHIRLPOOL fcf77b788295f3800d92849f09581c80baa958ed52cef8e9d91398b43d0a21b5cd745b5d580abfd5aababec05e5150ba7271a203ab81c7bac3cf4a925459bebb +DIST path-pieces-0.1.3.tar.gz 2478 SHA256 94ec4090356a515d7cec484b41f5730e920d0165b700fddb6dfa87af989ba90f SHA512 3da1665db26b9c4a0a20e0a55368f8fcad7bed0116211c00006023b414c9d5378df0401d78107d9a4fbc06bf9d6efff0059a651cd691dd67df5c09b871326bd2 WHIRLPOOL f906d58bcf891b876b47bc058f1951388e43a389a195e84d744905e5736b4863896fc1ad3cbae733c4805dd42120c0c48b33e6b50828e561108bf8c88782ab68 diff --git a/dev-haskell/path-pieces/path-pieces-0.1.3.ebuild b/dev-haskell/path-pieces/path-pieces-0.1.3.ebuild new file mode 100644 index 000000000000..be381aca8a1b --- /dev/null +++ b/dev-haskell/path-pieces/path-pieces-0.1.3.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-haskell/path-pieces/path-pieces-0.1.3.ebuild,v 1.1 2013/10/23 05:08:11 gienah Exp $ + +EAPI=5 + +# ebuild generated by hackport 0.3.4.9999 + +CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite" +inherit haskell-cabal + +DESCRIPTION="Components of paths." +HOMEPAGE="http://hackage.haskell.org/package/path-pieces" +SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-haskell/text-0.5:=[profile?] =dev-lang/ghc-6.12.1:= +" +DEPEND="${RDEPEND} + >=dev-haskell/cabal-1.8.0.2 + test? ( >=dev-haskell/hspec-1.3 + dev-haskell/hunit + dev-haskell/quickcheck ) +" diff --git a/dev-java/glassfish-ejb-api/Manifest b/dev-java/glassfish-ejb-api/Manifest new file mode 100644 index 000000000000..229871c8a576 --- /dev/null +++ b/dev-java/glassfish-ejb-api/Manifest @@ -0,0 +1 @@ +DIST glassfish-ejb-api-3.2.tar.xz 37052 SHA256 99ca1715de72ca845d371ea80734ce8de649ec45b8a5cc43d856c74cdd900cc8 SHA512 1692bbff05242b0af5141b35151ff65f029e19f45c5dac07ed9b706635e3f42d8d512819f38a49b564c9dee51be33c36fb871ea5267000536a0fb1e1b5d6a00a WHIRLPOOL eab989e055f6befcff812ab52f46a2855ddcd80bdbe90f2737bf4b9d5072cdf609dcb53a06a4330918afe7bb13bc970e04ba28e84d060ada65350bdcfa6787e3 diff --git a/dev-java/glassfish-ejb-api/glassfish-ejb-api-3.2.ebuild b/dev-java/glassfish-ejb-api/glassfish-ejb-api-3.2.ebuild new file mode 100644 index 000000000000..87e49b1b6b01 --- /dev/null +++ b/dev-java/glassfish-ejb-api/glassfish-ejb-api-3.2.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/glassfish-ejb-api/glassfish-ejb-api-3.2.ebuild,v 1.2 2013/10/23 17:50:52 tomwij Exp $ + +EAPI="5" + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +TOMEE_PV="1.5.2" + +DESCRIPTION="Project GlassFish Enterprise JavaBean API" +HOMEPAGE="https://glassfish.java.net/" +SRC_URI="http://dev.gentoo.org/~tomwij/files/dist/${P}.tar.xz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +CDEPEND="java-virtuals/xmlrpc-api:0 + java-virtuals/transaction-api:0" + +DEPEND=">=virtual/jdk-1.7 + ${CDEPEND}" + +RDEPEND=">=virtual/jre-1.7 + ${CDEPEND}" + +JAVA_ANT_REWRITE_CLASSPATH="true" +EANT_GENTOO_CLASSPATH="xmlrpc-api,transaction-api" +JAVA_PKG_BSFIX_NAME="maven-build.xml" + +src_install() { + java-pkg_newjar target/javax.ejb-api-${PV}.jar + + use doc && java-pkg_dojavadoc target/site/apidocs + use source && java-pkg_dosrc src/main/java/javax +} \ No newline at end of file diff --git a/dev-java/glassfish-ejb-api/metadata.xml b/dev-java/glassfish-ejb-api/metadata.xml new file mode 100644 index 000000000000..838c00a4a448 --- /dev/null +++ b/dev-java/glassfish-ejb-api/metadata.xml @@ -0,0 +1,5 @@ + + + +java + diff --git a/dev-java/glassfish-interceptor-api/Manifest b/dev-java/glassfish-interceptor-api/Manifest new file mode 100644 index 000000000000..2ec8ddc9dd3c --- /dev/null +++ b/dev-java/glassfish-interceptor-api/Manifest @@ -0,0 +1 @@ +DIST glassfish-interceptor-api-3.1.tar.xz 14600 SHA256 b64285dbc80bc6418458927735c7dc7df74f6635d86cdb9a70b0c869f2f4a662 SHA512 674f53d53afb63799c579b0ec177a009178315fb62f027441da14ceb5d6fa07408840ad82aa8fa7be31b53d43b53ff28ffb1617d644c989bc4ac17ce5e626563 WHIRLPOOL f20b4abefab8f9d7c55f3a12e6a41fb60644a8ca580bc6c9ea1772d9c919a8d99bbc86b928af82d7ce279919019107164760bd1e144af8ff4c4b4119fd2fdbb7 diff --git a/dev-java/glassfish-interceptor-api/files/glassfish-interceptor-api-3.1-build.xml.patch b/dev-java/glassfish-interceptor-api/files/glassfish-interceptor-api-3.1-build.xml.patch new file mode 100644 index 000000000000..1a912da629c2 --- /dev/null +++ b/dev-java/glassfish-interceptor-api/files/glassfish-interceptor-api-3.1-build.xml.patch @@ -0,0 +1,10 @@ +--- a/maven-build.xml ++++ b/maven-build.xml +@@ -166,7 +166,6 @@ + + diff --git a/dev-java/glassfish-interceptor-api/glassfish-interceptor-api-3.1.ebuild b/dev-java/glassfish-interceptor-api/glassfish-interceptor-api-3.1.ebuild new file mode 100644 index 000000000000..93c502c959ef --- /dev/null +++ b/dev-java/glassfish-interceptor-api/glassfish-interceptor-api-3.1.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/glassfish-interceptor-api/glassfish-interceptor-api-3.1.ebuild,v 1.1 2013/10/23 18:02:25 tomwij Exp $ + +EAPI="5" + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +TOMEE_PV="1.5.2" + +DESCRIPTION="Project GlassFish Interceptor API" +HOMEPAGE="https://glassfish.java.net/" +SRC_URI="http://dev.gentoo.org/~tomwij/files/dist/${P}.tar.xz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +CDEPEND="" + +DEPEND=">=virtual/jdk-1.7 + ${CDEPEND}" + +RDEPEND=">=virtual/jre-1.7 + ${CDEPEND}" + +JAVA_ANT_REWRITE_CLASSPATH="true" +EANT_GENTOO_CLASSPATH="" +JAVA_PKG_BSFIX_NAME="maven-build.xml" + +java_prepare() { + epatch "${FILESDIR}"/${P}-build.xml.patch +} + +src_install() { + java-pkg_newjar target/javax.interceptor-api-${PV}.jar + + use doc && java-pkg_dojavadoc target/site/apidocs + use source && java-pkg_dosrc src/main/java/javax +} \ No newline at end of file diff --git a/dev-java/glassfish-interceptor-api/metadata.xml b/dev-java/glassfish-interceptor-api/metadata.xml new file mode 100644 index 000000000000..838c00a4a448 --- /dev/null +++ b/dev-java/glassfish-interceptor-api/metadata.xml @@ -0,0 +1,5 @@ + + + +java + diff --git a/dev-java/glassfish-xmlrpc-api/Manifest b/dev-java/glassfish-xmlrpc-api/Manifest new file mode 100644 index 000000000000..b509251c5154 --- /dev/null +++ b/dev-java/glassfish-xmlrpc-api/Manifest @@ -0,0 +1 @@ +DIST glassfish-xmlrpc-api-1.1.1.tar.xz 35180 SHA256 ca8531a5d39b80ba94e13e048fb2bf9e2441910ccc992af6c0d3dd738892fc89 SHA512 7de8d5959c0f9f09cca6a169d4e4293fca378aa497389e9a9a0af953b698322b9bbae6288b8cba2cd34abf58a0d0f4272294dcdf201a84ba5cc14d426843daa8 WHIRLPOOL 830df242d38e29a8a3eade55d5d80f683ac610d355db2725a8a6b7fd74e19d566ea868a90dcb6e824f758a5c163f36d7d053c6759c896b953279ba2c48628475 diff --git a/dev-java/glassfish-xmlrpc-api/glassfish-xmlrpc-api-1.1.1.ebuild b/dev-java/glassfish-xmlrpc-api/glassfish-xmlrpc-api-1.1.1.ebuild new file mode 100644 index 000000000000..244c159149dd --- /dev/null +++ b/dev-java/glassfish-xmlrpc-api/glassfish-xmlrpc-api-1.1.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/glassfish-xmlrpc-api/glassfish-xmlrpc-api-1.1.1.ebuild,v 1.2 2013/10/23 17:21:57 tomwij Exp $ + +EAPI="5" + +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +TOMEE_PV="1.5.2" + +DESCRIPTION="Project GlassFish XML RPC API" +HOMEPAGE="https://glassfish.java.net/" +SRC_URI="http://dev.gentoo.org/~tomwij/files/dist/${P}.tar.xz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64" + +CDEPEND="java-virtuals/servlet-api:3.0" + +DEPEND=">=virtual/jdk-1.7 + ${CDEPEND}" + +RDEPEND=">=virtual/jre-1.7 + ${CDEPEND}" + +JAVA_ANT_REWRITE_CLASSPATH="true" +EANT_GENTOO_CLASSPATH="servlet-api-3.0" +JAVA_PKG_BSFIX_NAME="maven-build.xml" + +src_install() { + java-pkg_newjar target/javax.xml.rpc-api-${PV}.jar + + use doc && java-pkg_dojavadoc target/site/apidocs + use source && java-pkg_dosrc src/main/java/javax +} \ No newline at end of file diff --git a/dev-java/glassfish-xmlrpc-api/metadata.xml b/dev-java/glassfish-xmlrpc-api/metadata.xml new file mode 100644 index 000000000000..838c00a4a448 --- /dev/null +++ b/dev-java/glassfish-xmlrpc-api/metadata.xml @@ -0,0 +1,5 @@ + + + +java + diff --git a/dev-java/groovy/groovy-1.8.5-r1.ebuild b/dev-java/groovy/groovy-1.8.5-r1.ebuild new file mode 100644 index 000000000000..bdddb4c4e947 --- /dev/null +++ b/dev-java/groovy/groovy-1.8.5-r1.ebuild @@ -0,0 +1,124 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/groovy/groovy-1.8.5-r1.ebuild,v 1.1 2013/10/23 18:49:46 tomwij Exp $ + +# Groovy's build system is Ant based, but they use Maven for fetching the dependencies. +# We just have to remove the fetch dependencies target, and then we can use Ant for this ebuild. + +# We currently do not build the embeddable jar (which is created using JarJar). +# We could provide that via an USE flag. +# We also don't use automatic build rewriting as there seems to be already some level of support +# in the upstream build system + +# TODO: Install all 3 documentation packages. Currently only the Groovy GDK documentation is installed +# as our java-pkg_dojavadoc function does not support multiple Javadoc installations. + +EAPI="3" +WANT_ANT_TASKS="ant-antlr" +JAVA_PKG_IUSE="doc source" + +inherit base versionator java-pkg-2 java-ant-2 + +MY_PV=${PV/_rc/-RC-} +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="Groovy is a high-level dynamic language for the JVM" +HOMEPAGE="http://groovy.codehaus.org/" + +SRC_URI="http://dist.groovy.codehaus.org/distributions/${PN}-src-${PV}.zip" +LICENSE="codehaus-groovy" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="test" +RESTRICT="test" + +CDEPEND=">=dev-java/asm-3.2:3 + >=dev-java/ant-core-1.8.0:0 + >=dev-java/junit-4.6:4 + dev-java/antlr:0 + dev-java/xstream:0 + dev-java/jline:0 + dev-java/commons-cli:1 + dev-java/jansi:0 + java-virtuals/servlet-api:2.4 + >=dev-java/bsf-2.4:2.3 + java-virtuals/jmx:0" + +RDEPEND=">=virtual/jre-1.5 + ${CDEPEND}" + +DEPEND=">=virtual/jdk-1.5 + dev-java/ant-ivy:2 + doc? ( + dev-java/qdox:1.12 + dev-java/commons-logging:0 + ) + test? ( + dev-java/jmock:1.0 + dev-java/xmlunit:1 + dev-db/hsqldb:0 + dev-java/commons-logging:0 + dev-java/ant-junit:0 + dev-java/ant-trax:0 + ) + ${CDEPEND}" + +S="${WORKDIR}/${MY_P}" + +PATCHES=( "${FILESDIR}/${PN}-1.8-build-pref-locking-fix.patch" ) + +JAVA_PKG_BSFIX="" + +src_prepare() { + base_src_prepare + sed -i -e 's/fullQualifiedName/fullyQualifiedName/g' \ + src/tools/org/codehaus/groovy/tools/DocGenerator.groovy + + rm -rf bootstrap + # security directory is needed for tests, but they currently don't pass + #rm -rf security + mkdir -p target/lib && cd target/lib + mkdir compile && mkdir runtime && mkdir tools + cd compile + + java-pkg_jar-from commons-cli-1,ant-core,antlr,asm-3,xstream,jansi + java-pkg_jar-from jline,junit,servlet-api-2.4,bsf-2.3 + java-pkg_jar-from --virtual jmx + java-pkg_jar-from --build-only ant-ivy:2 + use doc && java-pkg_jar-from --build-only qdox-1.12,ant-antlr,commons-logging +} + +src_compile() { + eant -DskipTests="true" -DruntimeLibDirectory="target/lib/compile" \ + -DtoolsLibDirectory="target/lib/compile" -DskipFetch="true" -DskipEmbeddable="true" + + use doc && ANT_TASKS="ant-antlr" ANT_OPTS="-Duser.home=${T}" eant -Dno.grammars="true" -DruntimeLibDirectory="target/lib/compile" \ + -DtoolsLibDirectory="target/lib/compile" -DtestLibDirectory="target/lib/compile" -DskipFetch="true" doc +} + +src_test() { + cd "${S}/target/lib" && mkdir test && mkdir extras && cd compile + + java-pkg_jar-from --build-only ant-junit,jmock-1.0,xmlunit-1,hsqldb,commons-logging,cglib-2.1 + + cd "${S}" + ANT_TASKS="ant-junit ant-antlr ant-trax" ANT_OPTS="-Duser.home=${T}" eant \ + -DruntimeLibDirectory="target/lib/compile" -DtestLibDirectory="target/lib/compile" -DskipFetch="true" test +} + +src_install() { + java-pkg_newjar "target/dist/${PN}.jar" + use doc && java-pkg_dojavadoc "target/html/groovy-jdk/" + + # FIXME: install those two later + # + #use doc && java-pkg_dojavadoc "target/html/api/" + #use doc && java-pkg_dojavadoc "target/html/gapi/" + + use source && java-pkg_dosrc "src/main/groovy" "src/main/org" + java-pkg_dolauncher "groovyc" --main org.codehaus.groovy.tools.FileSystemCompiler + java-pkg_dolauncher "groovy" --main groovy.ui.GroovyMain + java-pkg_dolauncher "groovysh" --main groovy.ui.InteractiveShell + java-pkg_dolauncher "groovyConsole" --main groovy.ui.Console + java-pkg_dolauncher "grape" --main org.codehaus.groovy.tools.GrapeMain +} diff --git a/dev-java/jnr-enxio/jnr-enxio-0.4.ebuild b/dev-java/jnr-enxio/jnr-enxio-0.4.ebuild index 2a1a06456916..5796c40734af 100644 --- a/dev-java/jnr-enxio/jnr-enxio-0.4.ebuild +++ b/dev-java/jnr-enxio/jnr-enxio-0.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jnr-enxio/jnr-enxio-0.4.ebuild,v 1.1 2013/06/06 10:38:38 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/jnr-enxio/jnr-enxio-0.4.ebuild,v 1.2 2013/10/23 18:21:45 tomwij Exp $ EAPI="5" @@ -29,6 +29,7 @@ java_prepare() { cp "${FILESDIR}"/${P}-build.xml build.xml || die } +JAVA_ANT_REWRITE_CLASSPATH="true" EANT_GENTOO_CLASSPATH="jnr-constants,jnr-ffi-0.7" src_install() { diff --git a/dev-java/jnr-unixsocket/jnr-unixsocket-0.3.ebuild b/dev-java/jnr-unixsocket/jnr-unixsocket-0.3.ebuild index 3a98bd5b214a..98098970a2d2 100644 --- a/dev-java/jnr-unixsocket/jnr-unixsocket-0.3.ebuild +++ b/dev-java/jnr-unixsocket/jnr-unixsocket-0.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-java/jnr-unixsocket/jnr-unixsocket-0.3.ebuild,v 1.1 2013/06/06 10:39:05 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/jnr-unixsocket/jnr-unixsocket-0.3.ebuild,v 1.2 2013/10/23 18:27:11 tomwij Exp $ EAPI="5" @@ -30,6 +30,7 @@ java_prepare() { cp "${FILESDIR}"/${P}-build.xml build.xml || die } +JAVA_ANT_REWRITE_CLASSPATH="true" EANT_GENTOO_CLASSPATH="jnr-constants,jnr-enxio,jnr-ffi-0.7" src_install() { diff --git a/dev-java/spring-instrument/Manifest b/dev-java/spring-instrument/Manifest new file mode 100644 index 000000000000..c5987bbdfda6 --- /dev/null +++ b/dev-java/spring-instrument/Manifest @@ -0,0 +1,2 @@ +DIST spring-framework-3.2.4-buildscripts.tar.bz2 2894 SHA256 5a18b76fd55ffca6fbd8957436641287eeead9765de8fe07443fc5d52f03e043 SHA512 003551ffd37501c8b8dceba7ca484709cdf05f96c893d35c33161288770d72f70c092917f79216aa71742e045cb71ddcb17e6b58a2221fe2c153a70e5e0346b9 WHIRLPOOL ae8edd73bf272c3e92e07e5c341110d824703bbb8393a7f4af3ea9b0f306516a025888b2c3433ac0b7a2c3eedaf4236c3e201710e3fd77620290f5c6e28891c7 +DIST spring-framework-3.2.4.tar.gz 8925304 SHA256 0e0ad9631ea17a90fd8bc2565a7fb5b29ad12c1bf9ec9582f77019b5b041d08d SHA512 6a8fe58213f105deaa982b188e7b49a5bd9e0cf32917c568423509fed6b7c708cb5ca42ee7b3818327d673e59e7af7c67c13707e8a635329540b2febddda0f1b WHIRLPOOL f3dba92202402a676d8ad37c0b80d3a7616eecd780477ff21865305e2e2e5048b525ad9d14d36c0c0def96da305e3067e02617e10b949600ba819612f9edf48b diff --git a/dev-java/spring-instrument/files/spring-instrument-3.2.4-build.xml b/dev-java/spring-instrument/files/spring-instrument-3.2.4-build.xml new file mode 100644 index 000000000000..3175f36774f8 --- /dev/null +++ b/dev-java/spring-instrument/files/spring-instrument-3.2.4-build.xml @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/dev-java/spring-instrument/metadata.xml b/dev-java/spring-instrument/metadata.xml new file mode 100644 index 000000000000..e6f191495093 --- /dev/null +++ b/dev-java/spring-instrument/metadata.xml @@ -0,0 +1,16 @@ + + + + java + + The Spring Framework provides a comprehensive programming and configuration model for + modern Java-based enterprise applications - on any kind of deployment platform. A key + element of Spring is infrastructural support at the application level: Spring focuses + on the "plumbing" of enterprise applications so that teams can focus on application-level + business logic, without unnecessary ties to specific deployment environments. + + + SpringSource/spring-framework + + + diff --git a/dev-java/spring-instrument/spring-instrument-3.2.4.ebuild b/dev-java/spring-instrument/spring-instrument-3.2.4.ebuild new file mode 100644 index 000000000000..372fbfe109be --- /dev/null +++ b/dev-java/spring-instrument/spring-instrument-3.2.4.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/spring-instrument/spring-instrument-3.2.4.ebuild,v 1.1 2013/10/23 17:42:21 tomwij Exp $ + +EAPI="5" + +JAVA_PKG_IUSE="doc source test" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="A comprehensive programming and configuration model for modern Java-based enterprise applications" +HOMEPAGE="http://www.springsource.org/spring-framework" +SRC_URI="https://github.com/SpringSource/spring-framework/archive/v${PV}.RELEASE.tar.gz -> spring-framework-${PV}.tar.gz + http://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-${PV}-buildscripts.tar.bz2" + +LICENSE="Apache-2.0" +SLOT="3.2" +KEYWORDS="~amd64" + +DEPEND=">=virtual/jdk-1.7 + test? ( + dev-java/ant-junit4:0 + dev-java/hamcrest-core:1.3 + dev-java/hamcrest-library:1.3 + dev-java/junit:4 + dev-java/mockito:0 + dev-java/spring-core:${SLOT} + dev-java/xmlunit:1 + )" + +RDEPEND=">=virtual/jre-1.7" + +S="${WORKDIR}/spring-framework-${PV}.RELEASE/" + +EANT_BUILD_XML=${S}/${PN}/build.xml + +JAVA_ANT_REWRITE_CLASSPATH="true" +EANT_GENTOO_CLASSPATH="" +EANT_TEST_GENTOO_CLASSPATH="${EANT_GENTOO_CLASSPATH} + hamcrest-library-1.3 + hamcrest-core-1.3 + junit-4 + mockito + spring-core-${SLOT} + xmlunit-1" + +java_prepare() { + find . -name '*.jar' -print -delete || die + + cp "${FILESDIR}"/${P}-build.xml "${EANT_BUILD_XML}" || die +} + +src_test() { + java-pkg-2_src_test +} + +src_install() { + java-pkg_dojar "${S}"/${PN}/dist/${PN}.jar + + use source && java-pkg_dosrc "${S}"/${PN}/src/main/java/org/ + use doc && java-pkg_dojavadoc "${S}"/${PN}/dist/apidocs/ +} diff --git a/dev-lang/go/go-1.1.2.ebuild b/dev-lang/go/go-1.1.2.ebuild index e5dd234e4f3c..398d3793264c 100644 --- a/dev-lang/go/go-1.1.2.ebuild +++ b/dev-lang/go/go-1.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-1.1.2.ebuild,v 1.2 2013/10/20 20:51:08 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/go/go-1.1.2.ebuild,v 1.3 2013/10/23 15:40:51 williamh Exp $ EAPI=5 @@ -14,7 +14,7 @@ if [[ ${PV} = 9999 ]]; then else SRC_URI="http://go.googlecode.com/files/go${PV}.src.tar.gz" # Upstream only supports go on amd64, arm and x86 architectures. - KEYWORDS="-* ~amd64 arm ~x86" + KEYWORDS="-* amd64 arm x86" fi DESCRIPTION="A concurrent garbage collected and typesafe programming language" diff --git a/dev-libs/glib/glib-2.36.4-r1.ebuild b/dev-libs/glib/glib-2.36.4-r1.ebuild index 4016a6b48ea5..6bba7aa99ab7 100644 --- a/dev-libs/glib/glib-2.36.4-r1.ebuild +++ b/dev-libs/glib/glib-2.36.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.36.4-r1.ebuild,v 1.5 2013/10/13 20:17:01 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/glib/glib-2.36.4-r1.ebuild,v 1.6 2013/10/22 20:18:06 ottxor Exp $ EAPI="5" PYTHON_COMPAT=( python2_{6,7} ) @@ -79,6 +79,9 @@ src_prepare() { # Prevent build failure in stage3 where pkgconfig is not available, bug #481056 mv -f "${WORKDIR}"/pkg-config-*/pkg.m4 "${S}"/m4macros/ || die + # #488500 gets autogenerated, but get distributed with Linux-only header + rm "${S}"/gio/gnetworking.h || die + # Fix gmodule issues on fbsd; bug #184301, upstream bug #107626 epatch "${FILESDIR}"/${PN}-2.12.12-fbsd.patch diff --git a/dev-libs/gmp/gmp-5.1.2.ebuild b/dev-libs/gmp/gmp-5.1.2.ebuild index 88876538b0b7..47896f723615 100644 --- a/dev-libs/gmp/gmp-5.1.2.ebuild +++ b/dev-libs/gmp/gmp-5.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-5.1.2.ebuild,v 1.3 2013/10/16 13:14:57 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gmp/gmp-5.1.2.ebuild,v 1.4 2013/10/23 16:48:24 maekke Exp $ inherit flag-o-matic eutils libtool unpacker toolchain-funcs @@ -15,7 +15,7 @@ SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.xz LICENSE="LGPL-3" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" IUSE="doc cxx pgo static-libs" DEPEND="sys-devel/m4 diff --git a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.36.0.ebuild b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.36.0.ebuild index 025d534f7bf6..dde20e1f679b 100644 --- a/dev-libs/gobject-introspection-common/gobject-introspection-common-1.36.0.ebuild +++ b/dev-libs/gobject-introspection-common/gobject-introspection-common-1.36.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gobject-introspection-common/gobject-introspection-common-1.36.0.ebuild,v 1.2 2013/10/20 20:11:02 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gobject-introspection-common/gobject-introspection-common-1.36.0.ebuild,v 1.3 2013/10/23 00:33:01 ssuominen Exp $ EAPI="5" GNOME_ORG_MODULE="gobject-introspection" @@ -15,11 +15,9 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" -DEPEND="" -RDEPEND="${DEPEND} - ! "${WORKDIR}"/c_rehash || die #416717 +} + +src_prepare() { + # Make sure we only ever touch Makefile.org and avoid patching a file + # that gets blown away anyways by the Configure script in src_configure + rm -f Makefile + + if ! use vanilla ; then + epatch "${FILESDIR}"/${PN}-1.0.0a-ldflags.patch #327421 + epatch "${FILESDIR}"/${PN}-1.0.0d-windres.patch #373743 + epatch "${FILESDIR}"/${PN}-1.0.0h-pkg-config.patch + epatch "${FILESDIR}"/${PN}-1.0.1-parallel-build.patch + epatch "${FILESDIR}"/${PN}-1.0.1-x32.patch + epatch "${FILESDIR}"/${PN}-1.0.1e-ipv6.patch + epatch "${FILESDIR}"/${P}-bad-mac-aes-ni.patch #463444 + epatch "${FILESDIR}"/${PN}-1.0.1e-perl-5.18.patch #483820 + epatch "${FILESDIR}"/${PN}-1.0.1e-s_client-verify.patch #472584 + epatch_user #332661 + fi + + # disable fips in the build + # make sure the man pages are suffixed #302165 + # don't bother building man pages if they're disabled + sed -i \ + -e '/DIRS/s: fips : :g' \ + -e '/^MANSUFFIX/s:=.*:=ssl:' \ + -e '/^MAKEDEPPROG/s:=.*:=$(CC):' \ + -e $(has noman FEATURES \ + && echo '/^install:/s:install_docs::' \ + || echo '/^MANDIR=/s:=.*:='${EPREFIX}'/usr/share/man:') \ + Makefile.org \ + || die + # show the actual commands in the log + sed -i '/^SET_X/s:=.*:=set -x:' Makefile.shared + + # allow openssl to be cross-compiled + cp "${FILESDIR}"/gentoo.config-1.0.1 gentoo.config || die + chmod a+rx gentoo.config + + append-flags -fno-strict-aliasing + append-flags $(test-flags-CC -Wa,--noexecstack) + + sed -i '1s,^:$,#!'${EPREFIX}'/usr/bin/perl,' Configure #141906 + # The config script does stupid stuff to prompt the user. Kill it. + sed -i '/stty -icanon min 0 time 50; read waste/d' config || die + ./config --test-sanity || die "I AM NOT SANE" +} + +src_configure() { + unset APPS #197996 + unset SCRIPTS #312551 + unset CROSS_COMPILE #311473 + + tc-export CC AR RANLIB RC + + # Clean out patent-or-otherwise-encumbered code + # Camellia: Royalty Free http://en.wikipedia.org/wiki/Camellia_(cipher) + # IDEA: Expired http://en.wikipedia.org/wiki/International_Data_Encryption_Algorithm + # EC: ????????? ??/??/2015 http://en.wikipedia.org/wiki/Elliptic_Curve_Cryptography + # MDC2: Expired http://en.wikipedia.org/wiki/MDC-2 + # RC5: 5,724,428 03/03/2015 http://en.wikipedia.org/wiki/RC5 + + use_ssl() { usex $1 "enable-${2:-$1}" "no-${2:-$1}" " ${*:3}" ; } + echoit() { echo "$@" ; "$@" ; } + + local krb5=$(has_version app-crypt/mit-krb5 && echo "MIT" || echo "Heimdal") + + # See if our toolchain supports __uint128_t. If so, it's 64bit + # friendly and can use the nicely optimized code paths. #460790 + local ec_nistp_64_gcc_128 + # Disable it for now though #469976 + #if ! use bindist ; then + # echo "__uint128_t i;" > "${T}"/128.c + # if ${CC} ${CFLAGS} -c "${T}"/128.c -o /dev/null >&/dev/null ; then + # ec_nistp_64_gcc_128="enable-ec_nistp_64_gcc_128" + # fi + #fi + + local sslout=$(./gentoo.config) + einfo "Use configuration ${sslout:-(openssl knows best)}" + local config="Configure" + [[ -z ${sslout} ]] && config="config" + echoit \ + ./${config} \ + ${sslout} \ + $(use sse2 || echo "no-sse2") \ + enable-camellia \ + $(use_ssl !bindist ec) \ + ${ec_nistp_64_gcc_128} \ + enable-idea \ + enable-mdc2 \ + $(use_ssl !bindist rc5) \ + enable-tlsext \ + $(use_ssl gmp gmp -lgmp) \ + $(use_ssl kerberos krb5 --with-krb5-flavor=${krb5}) \ + $(use_ssl rfc3779) \ + $(use_ssl tls-heartbeat heartbeats) \ + $(use_ssl zlib) \ + --prefix="${EPREFIX}"/usr \ + --openssldir="${EPREFIX}"${SSL_CNF_DIR} \ + --libdir=$(get_libdir) \ + shared threads \ + || die + + # Clean out hardcoded flags that openssl uses + local CFLAG=$(grep ^CFLAG= Makefile | LC_ALL=C sed \ + -e 's:^CFLAG=::' \ + -e 's:-fomit-frame-pointer ::g' \ + -e 's:-O[0-9] ::g' \ + -e 's:-march=[-a-z0-9]* ::g' \ + -e 's:-mcpu=[-a-z0-9]* ::g' \ + -e 's:-m[a-z0-9]* ::g' \ + ) + sed -i \ + -e "/^CFLAG/s|=.*|=${CFLAG} ${CFLAGS}|" \ + -e "/^SHARED_LDFLAGS=/s|$| ${LDFLAGS}|" \ + Makefile || die +} + +src_compile() { + # depend is needed to use $confopts; it also doesn't matter + # that it's -j1 as the code itself serializes subdirs + emake -j1 depend + emake all + # rehash is needed to prep the certs/ dir; do this + # separately to avoid parallel build issues. + emake rehash +} + +src_test() { + emake -j1 test +} + +src_install() { + emake INSTALL_PREFIX="${D}" install + dobin "${WORKDIR}"/c_rehash #333117 + dodoc CHANGES* FAQ NEWS README doc/*.txt doc/c-indentation.el + dohtml -r doc/* + use rfc3779 && dodoc engines/ccgost/README.gost + + # This is crappy in that the static archives are still built even + # when USE=static-libs. But this is due to a failing in the openssl + # build system: the static archives are built as PIC all the time. + # Only way around this would be to manually configure+compile openssl + # twice; once with shared lib support enabled and once without. + use static-libs || rm -f "${ED}"/usr/lib*/lib*.a + + # create the certs directory + dodir ${SSL_CNF_DIR}/certs + cp -RP certs/* "${ED}"${SSL_CNF_DIR}/certs/ || die + rm -r "${ED}"${SSL_CNF_DIR}/certs/{demo,expired} + + # Namespace openssl programs to prevent conflicts with other man pages + cd "${ED}"/usr/share/man + local m d s + for m in $(find . -type f | xargs grep -L '#include') ; do + d=${m%/*} ; d=${d#./} ; m=${m##*/} + [[ ${m} == openssl.1* ]] && continue + [[ -n $(find -L ${d} -type l) ]] && die "erp, broken links already!" + mv ${d}/{,ssl-}${m} + # fix up references to renamed man pages + sed -i '/^[.]SH "SEE ALSO"/,/^[.]/s:\([^(, ]*(1)\):ssl-\1:g' ${d}/ssl-${m} + ln -s ssl-${m} ${d}/openssl-${m} + # locate any symlinks that point to this man page ... we assume + # that any broken links are due to the above renaming + for s in $(find -L ${d} -type l) ; do + s=${s##*/} + rm -f ${d}/${s} + ln -s ssl-${m} ${d}/ssl-${s} + ln -s ssl-${s} ${d}/openssl-${s} + done + done + [[ -n $(find -L ${d} -type l) ]] && die "broken manpage links found :(" + + dodir /etc/sandbox.d #254521 + echo 'SANDBOX_PREDICT="/dev/crypto"' > "${ED}"/etc/sandbox.d/10openssl + + diropts -m0700 + keepdir ${SSL_CNF_DIR}/private +} + +pkg_preinst() { + has_version ${CATEGORY}/${PN}:0.9.8 && return 0 + preserve_old_lib /usr/$(get_libdir)/lib{crypto,ssl}.so.0.9.8 +} + +pkg_postinst() { + ebegin "Running 'c_rehash ${EROOT%/}${SSL_CNF_DIR}/certs/' to rebuild hashes #333069" + c_rehash "${EROOT%/}${SSL_CNF_DIR}/certs" >/dev/null + eend $? + + has_version ${CATEGORY}/${PN}:0.9.8 && return 0 + preserve_old_lib_notify /usr/$(get_libdir)/lib{crypto,ssl}.so.0.9.8 +} diff --git a/dev-lua/luadbi/luadbi-0.5-r3.ebuild b/dev-lua/luadbi/luadbi-0.5-r3.ebuild index bd22507650a2..b7edb37b5328 100644 --- a/dev-lua/luadbi/luadbi-0.5-r3.ebuild +++ b/dev-lua/luadbi/luadbi-0.5-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r3.ebuild,v 1.1 2013/07/29 01:49:21 mrueg Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lua/luadbi/luadbi-0.5-r3.ebuild,v 1.2 2013/10/23 16:47:14 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://luadbi.googlecode.com/files/${PN}.${PV}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" IUSE="mysql postgres sqlite" REQUIRED_USE="|| ( mysql postgres sqlite )" diff --git a/dev-ml/camlimages/Manifest b/dev-ml/camlimages/Manifest index 35d5fc90b4c4..1a6e98c45205 100644 --- a/dev-ml/camlimages/Manifest +++ b/dev-ml/camlimages/Manifest @@ -1 +1,2 @@ DIST camlimages-4.0.1.tar.bz2 2010729 SHA256 b6a5e79abcfba1316a516f2e0290e6f06c90fa1ed94d8dcd5533a2e3d51c0c89 SHA512 1d80e6b1ab7f48e4219b7bcf6287b8403b6ad56f88d39fb8d9403b5e6f8c4b346c98112874094824ed001c71605e73fd0f4ca044669a07bcf6965619c5ff4811 WHIRLPOOL 22107c7d96995e0e2d68688c5eaa502db21e493a59a9361a59f413fa27349a3f82186d21ea4e17df12bb428d7316c5c4ccaedf0bb03d192671e187b1e5ef6410 +DIST camlimages-4.1.1.tar.bz2 1098450 SHA256 22c4485f69ddda6fa94fcb62c1f996756c93ceb59d6d61962d41df59fa27e346 SHA512 79dc5680ef632968d39513cac161f0e5daf4faecec12f100d56755051d257b1c0e4e45990d4215c4b95596b5d94cebc93b6d828953450b15a4e48993013637b2 WHIRLPOOL f18c3b7046c39c7ae05c91845cd4bd7f8cc52043180be6e21d9f19cfd055aba630cc7f9fc839d2caaba47946269008e952ee31e27aee5e0f184366ab2a183f7c diff --git a/dev-ml/camlimages/camlimages-4.1.1.ebuild b/dev-ml/camlimages/camlimages-4.1.1.ebuild new file mode 100644 index 000000000000..9aa22fc7ff32 --- /dev/null +++ b/dev-ml/camlimages/camlimages-4.1.1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ml/camlimages/camlimages-4.1.1.ebuild,v 1.1 2013/10/22 20:45:45 aballier Exp $ + +EAPI=5 + +inherit eutils vcs-snapshot findlib multilib + +DESCRIPTION="An image manipulation library for ocaml" +HOMEPAGE="http://gallium.inria.fr/camlimages/" +SRC_URI="http://bitbucket.org/camlspotter/camlimages/get/${PV}.tar.bz2 -> ${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0/${PV}" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc exif gif gtk jpeg png postscript tiff truetype X xpm" + +RDEPEND=">=dev-lang/ocaml-3.10.2:=[X?,ocamlopt] + exif? ( media-libs/libexif ) + gif? ( media-libs/giflib ) + gtk? ( dev-ml/lablgtk ) + jpeg? ( virtual/jpeg ) + tiff? ( media-libs/tiff ) + png? ( >=media-libs/libpng-1.4:0 ) + postscript? ( app-text/ghostscript-gpl ) + truetype? ( >=media-libs/freetype-2 ) + xpm? ( x11-libs/libXpm ) + X? ( x11-apps/rgb ) + sys-libs/zlib + " +DEPEND="${DEPEND} + doc? ( dev-python/sphinx[latex] ) + dev-util/omake + virtual/pkgconfig + dev-ml/findlib" + +camlimages_arg_want() { + echo "ARG_WANT_${2}=$(usex $1 1 0)" +} + +src_compile() { + omake \ + $(camlimages_arg_want exif EXIF ) \ + $(camlimages_arg_want gif GIF ) \ + $(camlimages_arg_want png PNG ) \ + $(camlimages_arg_want jpeg JPEG ) \ + $(camlimages_arg_want tiff TIFF ) \ + $(camlimages_arg_want xpm XPM ) \ + $(camlimages_arg_want postscript GS ) \ + $(camlimages_arg_want gtk LABLGTK2) \ + $(camlimages_arg_want X GRAPHICS) \ + $(camlimages_arg_want truetype FREETYPE) \ + --force-dotomake || die + + if use doc ; then + sphinx-build doc/sphinx sphinxdoc || die + fi +} + +src_install() { + findlib_src_preinst + omake --force-dotomake DESTDIR="${D}" install || die + dodoc README.rst + use doc && dohtml -r sphinxdoc/* +} diff --git a/dev-python/PyQt4/Manifest b/dev-python/PyQt4/Manifest index b000bd65e616..dd63a7acaa8a 100644 --- a/dev-python/PyQt4/Manifest +++ b/dev-python/PyQt4/Manifest @@ -1,4 +1,3 @@ -DIST PyQt-x11-gpl-4.10.1.tar.gz 11279330 SHA256 623586f6dcb8a3ac5af688015dfb721b76498242081e3e331c882dd38798fa16 SHA512 997421d80ad6915cbff672bcb60ae4d7a361912d7be03bc4fcaa8c36747f04464a8acc452c235cb0c5c498135fb3a2cc4d945de02f6d2ad2014cce48726e3af4 WHIRLPOOL 23f256882917a5b5cfb3683074c107501fcdd32739c60110585783947885445441649869eb4645854eef3c2181f596afc3ec7cce6c3449f717e5d3d27de3f9a9 DIST PyQt-x11-gpl-4.10.2.tar.gz 11280941 SHA256 747cf2fe285ef050d891bbbbfa213a380583d464a085906ef525058c154be6fe SHA512 6600b87e55f5a8fa0e41549f08d7639baec3ac9ffe14d6b141d808b14f672676abf872a48a300491a9b24eb5a14299f636a71bda246bb63cdb38d5afcd64b6d1 WHIRLPOOL e6822894d68e22be16600bd1c9f1d1d7a04a2170d31651cacd04f184754f2f050aeed8eb8c0c797282334751f488786b17c361871d0580ca222796064c16c5ca DIST PyQt-x11-gpl-4.10.3.tar.gz 11187362 SHA256 a713bebef394213b2c9e1fe0cad5699b869dc356bba50766e069013eba8bf630 SHA512 4edd3539e1855bc3358dcba866433e53d4b9444b867c14cc27115cf5a6c123b0af3bb0bae3085f6d71a31f0b6716da40809ac4ffcaaff415673ed7462f1a0420 WHIRLPOOL 675e324993e8f9a3b2a0a8975c9f1e2af9cd315073a68e6649a8de04e8e8a905d756be2c138a8c19b4ec16a75c7b118b32a3ffc27f8399953599a1b88ac76fad DIST PyQt-x11-gpl-4.9.6.tar.gz 9349834 SHA256 a350f9e5c6d8062671c0f29bf1a70824719b18175ce8372c29bf7c1eda44b18d SHA512 1d0ca00d529f67d33e51b947b9e2c49a64611a842f1a78220c9390afd1657e909451d9b758d0c008b6efbba7ed047f18ca41323e4db2269d685b9d2400a604aa WHIRLPOOL fd9e2339014e2cce9c4106f92593abca3d71881c57a90e6084a08fdc55213cd640723b988fa792bf4e20e448fb7f6fc43fb72bb45fb7c81bf5819684620ad4ae diff --git a/dev-python/PyQt4/PyQt4-4.10.1.ebuild b/dev-python/PyQt4/PyQt4-4.10.3-r1.ebuild similarity index 92% rename from dev-python/PyQt4/PyQt4-4.10.1.ebuild rename to dev-python/PyQt4/PyQt4-4.10.3-r1.ebuild index fc8a358b81c2..15f14ea33e68 100644 --- a/dev-python/PyQt4/PyQt4-4.10.1.ebuild +++ b/dev-python/PyQt4/PyQt4-4.10.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.10.1.ebuild,v 1.8 2013/09/17 19:01:18 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/PyQt4/PyQt4-4.10.3-r1.ebuild,v 1.1 2013/10/23 10:14:55 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) @@ -41,11 +41,11 @@ QT_PV="4.8.0:4" RDEPEND=" ${PYTHON_DEPS} - dev-python/python-exec:0[${PYTHON_USEDEP}] - >=dev-python/sip-4.14.3:=[${PYTHON_USEDEP}] + dev-python/python-exec:2[${PYTHON_USEDEP}] + >=dev-python/sip-4.15.0:=[${PYTHON_USEDEP}] >=dev-qt/qtcore-${QT_PV} X? ( - >=dev-qt/qtgui-${QT_PV}[dbus(+)?] + >=dev-qt/qtgui-${QT_PV} || ( dev-qt/designer:4 =dev-qt/qttest-${QT_PV} ) @@ -187,12 +187,13 @@ src_install() { installation() { # INSTALL_ROOT is used by designer/Makefile, other Makefiles use DESTDIR. emake DESTDIR="${D}" INSTALL_ROOT="${D}" install - mv "${ED}"/usr/bin/pyuic4{,-${EPYTHON}} || die + mkdir -p "${ED}"/usr/lib/python-exec/${EPYTHON} || die + mv "${ED}"/usr/bin/pyuic4 "${ED}"/usr/lib/python-exec/${EPYTHON}/ || die python_optimize } python_foreach_impl run_in_build_dir installation - dosym python-exec /usr/bin/pyuic4 + dosym ../lib/python-exec/python-exec2 /usr/bin/pyuic4 dodoc NEWS THANKS if use doc; then diff --git a/dev-python/autopep8/Manifest b/dev-python/autopep8/Manifest index 4df98694d3c7..f7c62b4f8f59 100644 --- a/dev-python/autopep8/Manifest +++ b/dev-python/autopep8/Manifest @@ -1,3 +1,3 @@ DIST autopep8-0.5.2.tar.gz 10049 SHA256 a9a808bac49605036bdeaa4bf5b50a9bbf87088a54b9a2e54e18c85abcecb70f SHA512 9d27a9b2c7cf90a7ea420732ac13675c6bc93435d9d9dc4e437e3e2e121d4b2931b995da77d751e2dbcf4c2c5379fda6c4c3c0f6cc222b461d4daa95e9ec2564 WHIRLPOOL 5b4f6ca08695da516f6579399de1decb3a1be6b2520a636812f1b68cb6ee7e05cb546fe7537513deb3f9a3f914808ffeaa956d1daa2c4e0bcf14f22071e9e7c8 -DIST autopep8-0.9.3.tar.gz 54727 SHA256 3d4ead82fb5954ceb4f548bddbdacb7bf04043062cd9153807bfe2b0fa393fb6 SHA512 6739ca5bf0ba716af3be1ecfc35b11a96483962367642b6751cde153c500ea36cc901be76da6b033bf6141c28a87ec75a4f6f568bb77a3278d8e7f1fe92b0941 WHIRLPOOL 31f9e38da6be88f1385b4d42aa50b646cd1f52aff6e32ec3615a731899caf823f3abf37004fcfc95c6fbfa4997aea009722646221799e1b2903d1fe51357a9d1 DIST autopep8-0.9.4.tar.gz 70382 SHA256 4f1204c319eebdcc761131f832fcf38131f955a7db456a094942086c0d6ede10 SHA512 2704ec20927b77e18c273513d4a74a46196d9e5df809da833b814def3efab5afe105f9519c76d6c1fff2f7de8d9c533fde67192f2a56d29480aa5a32ff0f3da2 WHIRLPOOL 4f117c759a26e4c78395a456dbaeed057efa0a353dc9f16935c9391c36ea4a47085002341f63db056ab0d558ae9e3c37c15d14a6c0aef925f07657979d633352 +DIST autopep8-0.9.5.tar.gz 71000 SHA256 d6610d683d02a1a487cc3f7d8ef6dd8e436c897f97b64ea2dcfc384767429670 SHA512 daef04cf3d2085fd59af3d8603e14e36e8d2673b783055971212438014b74e6732d8309a870285a2a8f8915cffdf27bd63631ddf6dfd1bb07c2e19b92ed32dae WHIRLPOOL 40d5d0b07c88a85075fed6742528f277d0592f88849bc9d1d1816bcc97c0744726570c8af44f0b1ed3b2840b73286496fe969dc7a0b9020a9f9f87d1f771d1e0 diff --git a/dev-python/autopep8/autopep8-0.9.3.ebuild b/dev-python/autopep8/autopep8-0.9.5.ebuild similarity index 95% rename from dev-python/autopep8/autopep8-0.9.3.ebuild rename to dev-python/autopep8/autopep8-0.9.5.ebuild index 4e67848cdf07..9883be7cadf6 100644 --- a/dev-python/autopep8/autopep8-0.9.3.ebuild +++ b/dev-python/autopep8/autopep8-0.9.5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-0.9.3.ebuild,v 1.2 2013/09/05 18:46:12 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/autopep8/autopep8-0.9.5.ebuild,v 1.1 2013/10/23 13:32:57 xarthisius Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) diff --git a/dev-python/cliff/Manifest b/dev-python/cliff/Manifest index 80f8d4f10668..f22140244eec 100644 --- a/dev-python/cliff/Manifest +++ b/dev-python/cliff/Manifest @@ -1 +1,2 @@ +DIST cliff-1.4.5.tar.gz 121371 SHA256 0ec2c40e899cbb4d478aa946e1430600bf596ca2a3f12162a9514e9d580935ec SHA512 5c46bf5c15e542c9fb4734113c37d5b6ebaf38f586a2eeedf3281085904f99014de6e4da01937485ca9b533b26f58226987ab7356d2f4b70e083802d773ab099 WHIRLPOOL 2ff5d4f898eb9a3c3ab7aa99b4ede7417582e692218b5f2073c7c168b1c47dfad31e3c48ab410d2336638135391d5197835e9da956b04542c92d1a9742b26610 DIST cliff-1.4.tar.gz 124342 SHA256 e5650c92bdd7917f850fc3ac11bd3ad4abd0cb0be4654770b29b63f288bea316 SHA512 764fa34d8eb4775360912f2dfbccb262a34ee693e76d62d66b848a60fbc260dd2240ac4be7991d77118d4af7152aa3e08cf9b98566391fe574dbfdeb8f59a97b WHIRLPOOL 3e767a4614bd4cdbe4b595c7949605715cee3e88fdd23f89d74cd6ab4dc00dd32a834e2b7bc2c583444d753a1181ec321a5d52c3ccb0c56a6ed02feb4fb6e0d3 diff --git a/dev-python/cliff/cliff-1.4.5.ebuild b/dev-python/cliff/cliff-1.4.5.ebuild new file mode 100644 index 000000000000..201a6fa77d43 --- /dev/null +++ b/dev-python/cliff/cliff-1.4.5.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cliff/cliff-1.4.5.ebuild,v 1.1 2013/10/23 03:23:26 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_2,3_3} ) + +inherit distutils-r1 + +DESCRIPTION="Command Line Interface Formulation Framework" +HOMEPAGE="https://github.com/dreamhost/cliff" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pyparsing-2.0.1[${PYTHON_USEDEP}] + >=dev-python/prettytable-0.6[${PYTHON_USEDEP}] + =dev-python/cmd2-0.6.7[${PYTHON_USEDEP}] + virtual/python-argparse[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] + dev-python/mock[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + dev-python/pep8[${PYTHON_USEDEP}] + dev-python/cmd2[${PYTHON_USEDEP}] )" + +python_test() { + nosetests tests || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/cmd2/Manifest b/dev-python/cmd2/Manifest index c176e1966a7f..578ace51df1d 100644 --- a/dev-python/cmd2/Manifest +++ b/dev-python/cmd2/Manifest @@ -1,2 +1,3 @@ DIST cmd2-0.6.4.tar.gz 21147 SHA256 ff52cb800d931bbd0ce4b05bac0b024cf34ec3a04f66eadcb7d3f7dda42429ba SHA512 3c5c043c6ff1249a7804a6c1be67101e4bb236e3be86a642df0b0fe89601935100a7e2a3ba9c43d55be1019103546df98347ca98fa3003aa62e4fdeaf6586607 WHIRLPOOL 1a2a9597ec675afdacd294112021b472c035af48d2cdc12fe734ad1c858c9327001155426b51c7ab1916f8748e6a1adc1b2944cfe78f7083cd08601748fa5337 DIST cmd2-0.6.6.1.tar.gz 20538 SHA256 0b051e6b5f4500f823f996c77991363fe1d5c0b790002eb9922c7b39921cd981 SHA512 f1369ec748079eb2adb02805ad35cc18d2e6e708362e8cb0f0a1ab5efcbf49ec55ded3fecd47974f91b8d72000a236b90427f717c104d666380aadb83b86b47c WHIRLPOOL b6ccece6897567d41fc31d68406ab2ad2ff3ff9abbf5d5a014f9c781790f5196c11fa654cd0c71e6e84b79bfafe729cefd93a41c54bca8ca18580ae39e96bd95 +DIST cmd2-0.6.7.tar.gz 20558 SHA256 8e98c7a1cfd106183559240b269e7cd9fe97e8342b5c05295f591aab6fd2f4f0 SHA512 a37393bd9ef6c3ece02249b5a4293a25889ebd68120ee592d2ccd77a8e3e4ab3ba724e0be7f3c98a453dbba30c1851c7f690fbe69711df8a723545f8dbe38607 WHIRLPOOL 9da375c5ab0e1cd0f13e67b1b168b5f87be7f56bc758589b1e41959f3e14b07ad1e055fc2fce6d44ded77f806217b6bbe590009fec27c9179922ea764db0b86d diff --git a/dev-python/cmd2/cmd2-0.6.7.ebuild b/dev-python/cmd2/cmd2-0.6.7.ebuild new file mode 100644 index 000000000000..c5f6fc3a1c6a --- /dev/null +++ b/dev-python/cmd2/cmd2-0.6.7.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/cmd2/cmd2-0.6.7.ebuild,v 1.1 2013/10/23 03:22:56 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} pypy2_0 ) + +inherit distutils-r1 + +DESCRIPTION="Extra features for standard library's cmd module" +HOMEPAGE="https://bitbucket.org/catherinedevlin/cmd2" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-python/pyparsing-2.0.1[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +#python_prepare_all() { +# # Remove broken pyparsing dep. +# # https://bitbucket.org/catherinedevlin/cmd2/pull-request/3 +# sed -i -e '/= install_requires/d' setup.py || die +# +# distutils-r1_python_prepare_all +#} + +python_test() { + cd "${BUILD_DIR}"/lib || die + "${PYTHON}" -m cmd2 -v || die "Tests fail with ${EPYTHON}" +} diff --git a/dev-python/cython/cython-0.19.1.ebuild b/dev-python/cython/cython-0.19.1.ebuild index 0441ad961933..b6399c2c2825 100644 --- a/dev-python/cython/cython-0.19.1.ebuild +++ b/dev-python/cython/cython-0.19.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/cython-0.19.1.ebuild,v 1.6 2013/10/22 11:40:45 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/cython/cython-0.19.1.ebuild,v 1.7 2013/10/23 17:40:19 ago Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) @@ -16,7 +16,7 @@ SRC_URI="http://www.cython.org/release/${MY_P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" -KEYWORDS="amd64 ~arm hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="doc test" # Note: update numpy dep when it is fixed for py3.3. diff --git a/dev-python/django-openstack-auth/Manifest b/dev-python/django-openstack-auth/Manifest index c2370035c9b0..de81042447ff 100644 --- a/dev-python/django-openstack-auth/Manifest +++ b/dev-python/django-openstack-auth/Manifest @@ -1,2 +1,3 @@ DIST django_openstack_auth-1.0.10.tar.gz 18209 SHA256 a5b5ce9005ededf6f5de946c9f53a1263ea886e2b802dd4af1df6c521e7b9a04 SHA512 d38da0ce962b92e2039443a3b856df918b90a55fcd87ac9f4dc4bbdb12f39acfb126899b9529f682d1b19007d61490aa1d89da4d7d914ed57cdba93d5644a1c8 WHIRLPOOL db9e751ed3b48e00577ebe269a80af5b62d76c52e898ed8d04c39c73187da4a54e04229f743153596d383ec2e86b43e1c17027162fe768173a1d5601a7f99acd DIST django_openstack_auth-1.0.7.tar.gz 21857 SHA256 6486f7da5f5b49c669d81204be133ca3c6181fea8b8a2f4142b1dc823c1dc198 SHA512 62449f1eea8a77fcc1c11197da073e0925e4d4a705506c92cd22896cd00d4eff22dbe35cc4b6f4529c79a9184fe5fc6a5462f32ae24d68b6c21c0bf123723dc9 WHIRLPOOL c4e6c89a0948082e36359860882f0595809e15208f3f972397230f9e1f80d32182bcbc02d7d4473fd01d0ede73a479a35c090f1ecc985d334b7c56c2b9f073c6 +DIST django_openstack_auth-1.1.3.tar.gz 45687 SHA256 565a4b322e1eb2d0cf8df59ae58b49b2e324c414a6dd0ba4a6aa3459600314da SHA512 a313e0660d92c1e135fa5c956622fb9328ca5ba185e11a76f5c59a23fb059c7c0af44e08bfef7f236aa23aec744458cd64c93e7a2724669878f3088465ade321 WHIRLPOOL 3ac089e13e1dc29dc4a097e83d8b8af40221287d688653f8265805520f0c2a864ec31b50c40f4dd72d95d1847905806b843277726fa0f3c8753fc20561ef93a8 diff --git a/dev-python/django-openstack-auth/django-openstack-auth-1.1.3.ebuild b/dev-python/django-openstack-auth/django-openstack-auth-1.1.3.ebuild new file mode 100644 index 000000000000..ce8aa1467388 --- /dev/null +++ b/dev-python/django-openstack-auth/django-openstack-auth-1.1.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/django-openstack-auth/django-openstack-auth-1.1.3.ebuild,v 1.1 2013/10/23 05:25:17 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="A Django authentication backend for use with the OpenStack Keystone +Identity backend." +HOMEPAGE="http://django_openstack_auth.readthedocs.org/" +SRC_URI="mirror://pypi/${PN:0:1}/django_openstack_auth/django_openstack_auth-${PV}.tar.gz" +S="${WORKDIR}/django_openstack_auth-${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pbr-0.5.21[${PYTHON_USEDEP}] + =dev-python/hacking-0.5.6[${PYTHON_USEDEP}] + =dev-python/Babel-0.8[${PYTHON_USEDEP}] + >=dev-python/coverage-3.6[${PYTHON_USEDEP}] + >=dev-python/mox-0.5.3[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] + dev-python/oslo-sphinx[${PYTHON_USEDEP}] )" +RDEPEND=">=dev-python/python-keystoneclient-0.3.2[${PYTHON_USEDEP}] + >=dev-python/django-1.4[${PYTHON_USEDEP}] + /dev/null + + if has_version dev-db/mongodb; then + # please keep in sync with dev-python/pymongo + + local dbpath=${TMPDIR}/mongo.db + local logpath=${TMPDIR}/mongod.log + + # prefer starting with non-default one + DB_PORT=27018 + + mkdir -p "${dbpath}" || die + while true; do + ebegin "Trying to start mongod on port ${DB_PORT}" + + LC_ALL=C \ + mongod --dbpath "${dbpath}" --smallfiles --nojournal \ + --bind_ip ${DB_IP} --port ${DB_PORT} \ + --unixSocketPrefix "${TMPDIR}" \ + --logpath "${logpath}" --fork \ + && sleep 2 + + # Now we need to check if the server actually started... + if [[ ${?} -eq 0 && -S "${TMPDIR}"/mongodb-${DB_PORT}.sock ]]; then + # yay! + eend 0 + break + elif grep -q 'Address already in use' "${logpath}"; then + # ay, someone took our port! + eend 1 + : $(( DB_PORT += 1 )) + continue + else + eend 1 + ewarn "Unable to start mongod for tests." + break + fi + done + fi + + # No support for DB_IP and DB_PORT. + # https://github.com/ipython/ipython/pull/2910 + sed -i -e "s:Connection(:&host='${DB_IP}', port=${DB_PORT}:" \ + "${BUILD_DIR}"/lib/IPython/parallel/tests/test_mongodb.py \ + || die "Unable to sed mongod port into tests" + + local fail + run_tests() { + # Initialize ~/.ipython directory. + "${EPYTHON}" ipython /dev/null || fail=1 + # Run tests (-v for more verbosity). + PYTHONPATH=${PYTHONPATH}:. "${EPYTHON}" iptest -v || fail=1 + } + + VIRTUALX_COMMAND=run_tests virtualmake + + [[ ${DB_PORT} != -1 ]] && mongod --dbpath "${dbpath}" --shutdown + [[ ${fail} ]] && die "Tests fail with ${EPYTHON}" +} + +python_install() { + distutils-r1_python_install + ln -snf "${EPREFIX}"/usr/share/mathjax \ + "${D}$(python_get_sitedir)"/IPython/html/static/mathjax || die +} + +python_install_all() { + distutils-r1_python_install_all + if use emacs; then + cd docs/emacs || die + elisp-install ${PN} ${PN}.el* + elisp-site-file-install "${FILESDIR}"/62ipython-gentoo.el + fi +} + +pkg_postinst() { + use emacs && elisp-site-regen +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-python/jsonrpclib/jsonrpclib-0_pre20110820-r1.ebuild b/dev-python/jsonrpclib/jsonrpclib-0_pre20110820-r1.ebuild index ee5093f5f028..36dfec1e323f 100644 --- a/dev-python/jsonrpclib/jsonrpclib-0_pre20110820-r1.ebuild +++ b/dev-python/jsonrpclib/jsonrpclib-0_pre20110820-r1.ebuild @@ -1,12 +1,11 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonrpclib/jsonrpclib-0_pre20110820-r1.ebuild,v 1.1 2012/04/20 19:43:57 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/jsonrpclib/jsonrpclib-0_pre20110820-r1.ebuild,v 1.2 2013/10/23 03:36:22 prometheanfire Exp $ -EAPI="4" +EAPI="5" +PYTHON_COMPAT=( python2_6 python2_7 ) -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.*" -inherit distutils eutils +inherit distutils-r1 if [[ ${PV} == "9999" ]] ; then EGIT_REPO_URI="git://github.com/joshmarshall/jsonrpclib.git" @@ -26,8 +25,3 @@ IUSE="" DEPEND="" RDEPEND="${DEPEND} dev-python/simplejson" - -src_prepare() { - epatch "${FILESDIR}"/${PN}-fix-nested-imports.patch - distutils_src_prepare -} diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest index 4a2dce24d1f5..40da2b8cd695 100644 --- a/dev-python/keyring/Manifest +++ b/dev-python/keyring/Manifest @@ -1,2 +1,3 @@ DIST keyring-1.0.zip 61370 SHA256 628070bfb2daa080c98ddb3057a2f802cd1d15720ca40e54bdb2aa39d97485f9 SHA512 6b5002b06c5aa420786e4114c3fdaa75eb79ff72af460dcefba5909224bded2ccd9bd19a7a3847395403283f29d2108ba7679adbc97af5717a539c9f14439dd0 WHIRLPOOL 670e6420001defecbf17f1430fd62b48196d89d5ac4f5bf585c5116fec06bc028ca0c18f64fcf5d0c4dcc10e77674d17e75ce3ba29fb5e14877fa61c4f05ffd0 DIST keyring-1.5.zip 80478 SHA256 e7065e8584d3b9724413eaa42198f0b6433a3c097b620bb176fd1e340cfb9dda SHA512 4c283bf7ae64bd38d846b7ff8c74cae6ad59f684c65c130b7dda726e337295cf9c31ad51ad2ef1bd4011e5f92cbd96f7dfd9606f62bcdf6a61e36ee6b3385606 WHIRLPOOL 58c751504e55c40eaea93cdc6abf64ea0c9791f72efef239da3904762d4022f3f993f3816e293a548da58a5c091da18f5eba50e39ef85344b90fa6fa9fa81b2a +DIST keyring-3.1.zip 84216 SHA256 4aa49fa03e6d7b79e1490278c7610f6ff224f58ea8dd90b07541b69d0d178fa0 SHA512 79cb5b6932a7c9d0952893286f2c3e817fde3bfadcd42119a72adf2514d628f78aa0b5f13157c4eea31b49928b44dd1b646f62dc6b6da8958c3b95203a21a27f WHIRLPOOL 1cf8556f24e1c0b078914023ed9670eea879ab85f149d0ca4f9189642e18be5f4e5ac7a7f7ccf464fd87e1bd21bf3dd3715249b8959993899f0af2b446a3038f diff --git a/dev-python/keyring/keyring-3.1.ebuild b/dev-python/keyring/keyring-3.1.ebuild new file mode 100644 index 000000000000..3707da143b4d --- /dev/null +++ b/dev-python/keyring/keyring-3.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/keyring/keyring-3.1.ebuild,v 1.1 2013/10/23 05:22:25 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7} python{3_2,3_3} pypy2_0 ) +#tests restricted due to unpackaged dependancies +RESTRICT="test" + +inherit distutils-r1 +DESCRIPTION="Provides access to the system keyring service" +HOMEPAGE="https://bitbucket.org/kang/python-keyring-lib" +SRC_URI="mirror://pypi/k/${PN}/${P}.zip" + +LICENSE="PSF-2" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + app-arch/unzip + test? ( virtual/python-unittest2[${PYTHON_USEDEP}] )" +RDEPEND="" + +PATCHES=( +) +# "${FILESDIR}/setup-1.0.patch" + +python_test() { + # test_backend.py and test_core.py access keyring backends + # which may spawn password prompts and do other damage. + + # XXX: leave out the harmless tests (dummy backends?) + + for t in test_{cli,util}.py; do + "${PYTHON}" "${BUILD_DIR}"/lib/${PN}/tests/${t} \ + || die "${t} fails with ${EPYTHON}" + done +} diff --git a/dev-python/lesscpy/Manifest b/dev-python/lesscpy/Manifest new file mode 100644 index 000000000000..b4c10db88504 --- /dev/null +++ b/dev-python/lesscpy/Manifest @@ -0,0 +1 @@ +DIST lesscpy-0.9j.tar.gz 32061 SHA256 fa01d435a1ab3abafba683519bdc7aca5e19399e96225e1a8bc1d660b566364d SHA512 9063b89a1ca8dc8424b3b1989bdf7c31de74e26ab8ab5ede1664f53d1ff1946308d9add65236cd5fabc58efcaf1cb5789fa73f0775a83cb70ea9a73d25207a73 WHIRLPOOL 3e885dc03138a2b693c94af775e4386bc8c2bcecb8b6202a5f80ec5b8435798cb0d06934d7e9eb39e0a54c9861c009a673d6ee7990050f1164e239157047140a diff --git a/dev-python/lesscpy/lesscpy-0.9j.ebuild b/dev-python/lesscpy/lesscpy-0.9j.ebuild new file mode 100644 index 000000000000..3881006cde5c --- /dev/null +++ b/dev-python/lesscpy/lesscpy-0.9j.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/lesscpy/lesscpy-0.9j.ebuild,v 1.1 2013/10/23 05:45:59 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="A compiler written in Python for the LESS language." +HOMEPAGE="https://pypi.python.org/pypi/lesscpy" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/ply[${PYTHON_USEDEP}]" + +python_test() { + ${PYTHON} lesscpy/test/__main__.py || die "test failed under ${EPYTHON}" +} diff --git a/dev-python/lesscpy/metadata.xml b/dev-python/lesscpy/metadata.xml new file mode 100644 index 000000000000..db0004aba080 --- /dev/null +++ b/dev-python/lesscpy/metadata.xml @@ -0,0 +1,13 @@ + + + + python + + prometheanfire@gentoo.org + Matthew Thode + + + A compiler written in Python for the LESS language. + + + diff --git a/dev-python/pillow/pillow-2.1.0.ebuild b/dev-python/pillow/pillow-2.1.0.ebuild index d6bcc36df9bb..a152fa99dd03 100644 --- a/dev-python/pillow/pillow-2.1.0.ebuild +++ b/dev-python/pillow/pillow-2.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild,v 1.2 2013/09/28 19:22:44 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pillow/pillow-2.1.0.ebuild,v 1.3 2013/10/23 17:40:10 ago Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) @@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip" LICENSE="HPND" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="doc examples jpeg lcms scanner test tiff tk truetype webp zlib" RDEPEND=" diff --git a/dev-python/psycopg/psycopg-2.5.1.ebuild b/dev-python/psycopg/psycopg-2.5.1.ebuild index e588e6c0d786..04e5138b1d98 100644 --- a/dev-python/psycopg/psycopg-2.5.1.ebuild +++ b/dev-python/psycopg/psycopg-2.5.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.4 2013/10/17 17:08:57 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/psycopg/psycopg-2.5.1.ebuild,v 1.5 2013/10/23 19:47:12 maekke Exp $ EAPI=5 PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) @@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="2" -KEYWORDS="~alpha amd64 ~arm 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 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-base-8.1" diff --git a/dev-python/python-ceilometerclient/Manifest b/dev-python/python-ceilometerclient/Manifest new file mode 100644 index 000000000000..4455c7e7b3eb --- /dev/null +++ b/dev-python/python-ceilometerclient/Manifest @@ -0,0 +1 @@ +DIST python-ceilometerclient-1.0.6.tar.gz 53978 SHA256 b7683ca84896212c55ebb635436c8fdc463e81b3edbef20f24cf82c147202fcf SHA512 81142a3e1cdbcbd9a57b2be723ac651acee25a5e7e238603894443678db64904b2f7dd9b25c3797ff9507e194240c0185e5e5c85af1b5dc2a022f26ee2ab6788 WHIRLPOOL f94606fc39f85666966de630f534e099b6413b7bdfd77577570a400db4f094800be98ffc3d06245b6c952a9e96d12fbe85e3d7eaea43210e87e05c328e2babfb diff --git a/dev-python/python-ceilometerclient/metadata.xml b/dev-python/python-ceilometerclient/metadata.xml new file mode 100644 index 000000000000..8908c218b99f --- /dev/null +++ b/dev-python/python-ceilometerclient/metadata.xml @@ -0,0 +1,14 @@ + + + + openstack + + prometheanfire@gentoo.org + Matthew Thode + + + This is a client library for Ceilometer built on the Ceilometer API. It + provides a Python API (the ceilometerclient module) and a command-line tool (ceilometer). + + + diff --git a/dev-python/python-ceilometerclient/python-ceilometerclient-1.0.6.ebuild b/dev-python/python-ceilometerclient/python-ceilometerclient-1.0.6.ebuild new file mode 100644 index 000000000000..6a122e9d88c9 --- /dev/null +++ b/dev-python/python-ceilometerclient/python-ceilometerclient-1.0.6.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-ceilometerclient/python-ceilometerclient-1.0.6.ebuild,v 1.1 2013/10/23 05:56:58 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="This is a client library for Ceilometer built on the Ceilometer API." +HOMEPAGE="https://github.com/openstack/python-ceilometerclient" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pbr-0.5.21[${PYTHON_USEDEP}] + =dev-python/python-keystoneclient-0.3.0[${PYTHON_USEDEP}] + >=dev-python/pyyaml-3.1.0[${PYTHON_USEDEP}]" PATCHES=( ) # "${FILESDIR}/0.2.3-CVE-2013-2104.patch" python_test() { - ${PYTHON} setup.py nosetests || die + ${PYTHON} -m subunit.run discover -t ./ . || die } diff --git a/dev-python/python-heatclient/python-heatclient-0.2.5.ebuild b/dev-python/python-heatclient/python-heatclient-0.2.5.ebuild new file mode 100644 index 000000000000..b5dbf8a693e0 --- /dev/null +++ b/dev-python/python-heatclient/python-heatclient-0.2.5.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-heatclient/python-heatclient-0.2.5.ebuild,v 1.1 2013/10/23 16:26:24 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="This is a client library for Heat built on the Heat orchestration +API." +HOMEPAGE="https://github.com/openstack/python-heatclient" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pbr-0.5.21[${PYTHON_USEDEP}] + =dev-python/hacking-0.5.6[${PYTHON_USEDEP}] + =dev-python/coverage-3.6[${PYTHON_USEDEP}] + >=dev-python/fixtures-0.3.12[${PYTHON_USEDEP}] + >=dev-python/mock-0.8.0[${PYTHON_USEDEP}] + >=dev-python/mox-0.5.3[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] + >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}] + =dev-python/testrepository-0.0.17[${PYTHON_USEDEP}] + >=dev-python/testtools-0.9.32[${PYTHON_USEDEP}] )" +RDEPEND="virtual/python-argparse[${PYTHON_USEDEP}] + dev-python/httplib2[${PYTHON_USEDEP}] + >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}] + >=dev-python/prettytable-0.6[${PYTHON_USEDEP}] + =dev-python/python-keystoneclient-0.3.0[${PYTHON_USEDEP}] + >=dev-python/pyyaml-3.1.0[${PYTHON_USEDEP}]" + +PATCHES=( +) +# "${FILESDIR}/0.2.3-CVE-2013-2104.patch" + +python_test() { + ${PYTHON} -m subunit.run discover -t ./ . || die +} diff --git a/dev-python/python-keystoneclient/Manifest b/dev-python/python-keystoneclient/Manifest index 0bba567d2b8e..c101eef450f2 100644 --- a/dev-python/python-keystoneclient/Manifest +++ b/dev-python/python-keystoneclient/Manifest @@ -1,2 +1,3 @@ DIST python-keystoneclient-0.2.5.tar.gz 196496 SHA256 3985ab402b3b63510f387df639658687ee001c047ed710bee9a46219ebc31e2b SHA512 2c14d039a80a8b8ac65c974410722b5726b2f0f94c238b60ac93d09828abcf4518cec16af10387ccaa5e1639a5c9e168afa32623e507899c8486152c3d785c8b WHIRLPOOL aa82ee7f157c8573978b04b485068cc5d3f3f8bcfc4e573b8ed631b23ca3ffd8eb47830449c13da5e93e674c42a23c1efb072ffd5005c93a3c6f84a12e1b4063 DIST python-keystoneclient-0.3.1.tar.gz 209845 SHA256 bfc149b2d161bfe168be0fde41d9e75f2c0a99b9f398672f92c7c54c6f62fa26 SHA512 e79a4ab0b8e2c99a94efd6bf6690abd15cf41ea6b4e605c1a3534ee9788cb38239b6cd43e2956bd513b1149ab359af63eb46c7a61a9ebe3f3c1005068a7533de WHIRLPOOL ab4636f77e8de91fe38718f3f43a9f81d4bde69ed02710fe0d02ce1e8965f728c53fff6f28780981e7303c16fe43a33c9c30ac21a7cb1cfc8a2e855bc47c1f36 +DIST python-keystoneclient-0.3.2.tar.gz 231132 SHA256 cfa6766fd3141cd4dbb5ebf126a4b14095dd0aafee71a753fff9f6a0b4ab8a65 SHA512 914dd7366936f09cd8500564d3842e855b2cc005e1ec48488d133ffcc7fe6f1a302777d62b99e262b86ec82220502452cfcf9146f43e7b3704592be4ac77ffe3 WHIRLPOOL f3f751e63749850a72ad5e2ddda38c5917ae6226057ad063d71bd7341d739d69ffd4173d09637302a92f31853e8f57e1cc6abb03f50f8f1c0654e6f29bff9329 diff --git a/dev-python/python-keystoneclient/python-keystoneclient-0.3.2.ebuild b/dev-python/python-keystoneclient/python-keystoneclient-0.3.2.ebuild new file mode 100644 index 000000000000..32121634c4df --- /dev/null +++ b/dev-python/python-keystoneclient/python-keystoneclient-0.3.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-keystoneclient/python-keystoneclient-0.3.2.ebuild,v 1.1 2013/10/23 05:24:14 prometheanfire Exp $ + +EAPI=5 +#restricted due to shitty httpretty dep +RESTRICT="test" +#PYTHON_COMPAT=( python2_5 python2_6 python2_7 ) +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="A client for the OpenStack Keystone API" +HOMEPAGE="https://github.com/openstack/python-keystoneclient" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +#because fuck packaging this shit, I mean, really look at this shit. +#https://github.com/gabrielfalcao/HTTPretty/blob/b5827151ddde2e3fed49f5a1ca7f2bb2ef8876a1/requirements.txt +#https://github.com/openstack/python-keystoneclient/blob/0.3.2/test-requirements.txt +#https://bugs.launchpad.net/python-keystoneclient/+bug/1243528 +# >=dev-python/httpretty-0.6.3[${PYTHON_USEDEP}] +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pbr-0.5.21[${PYTHON_USEDEP}] + =dev-python/hacking-0.5.6[${PYTHON_USEDEP}] + =dev-python/coverage-3.6[${PYTHON_USEDEP}] + >=dev-python/fixtures-0.3.12[${PYTHON_USEDEP}] + >=dev-python/keyring-1.6.1[${PYTHON_USEDEP}] + >=dev-python/mock-0.8.0[${PYTHON_USEDEP}] + >=dev-python/mox-0.5.3[${PYTHON_USEDEP}] + >=dev-python/pycrypto-2.6[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] + >=dev-python/testrepository-0.0.17[${PYTHON_USEDEP}] + >=dev-python/testtools-0.9.32[${PYTHON_USEDEP}] + >=dev-python/webob-1.2.3[${PYTHON_USEDEP}] + =dev-python/Babel-0.9.6[${PYTHON_USEDEP}] )" +RDEPEND="virtual/python-argparse[${PYTHON_USEDEP}] + >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}] + >=dev-python/prettytable-0.6[${PYTHON_USEDEP}] + =dev-python/requests-1.1[${PYTHON_USEDEP}] + >=dev-python/simplejson-2.0.9[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}] + >=dev-python/oslo-config-1.1.0[${PYTHON_USEDEP}] + dev-python/netaddr[${PYTHON_USEDEP}]" + +PATCHES=( +) +# "${FILESDIR}/0.2.3-CVE-2013-2104.patch" + +python_test() { + ${PYTHON} setup.py nosetests || die +} diff --git a/dev-python/python-troveclient/Manifest b/dev-python/python-troveclient/Manifest new file mode 100644 index 000000000000..ab308c55e786 --- /dev/null +++ b/dev-python/python-troveclient/Manifest @@ -0,0 +1,2 @@ +DIST python-troveclient-0.1.4.tar.gz 66983 SHA256 745057a1a1dd2a58f3e638cf506f5b21a6bf8a42bf678adb17a58d6799a10141 SHA512 180ce906fc00b06dcd97b34b3d7f58220ffa18821e92258cff24c542949ef36a6bd6c9b15aa2387d48ea33330e56b1b059d1ac4a82d9e14e78104cd48ad9cee3 WHIRLPOOL b72e43a4cd4708e8b269a900fdb241f612898618f95cdb7d15a9ae245f7d0c4eccc4fb8f12bd30ac79f0eb54bb4845c812a9018037c512a8cfe00f86496d8035 +DIST python-troveclient-1.0.1.tar.gz 117053 SHA256 9d41020a644787d730588ee3ec4638cfb1df30a522d3a15aeab88c9cdb5cc19b SHA512 9f9a1f5ae4a685697f354c5f7dc89236672c8803d2c78b3fa8fefdf5b6aadd54ed4dceaf166a64aebc6b60041550d23552222d8ba04ae4d0c26b5d845a8c225e WHIRLPOOL ab76d65962e4b84710096aaa87581ca9838285805c3a40c67d97c58fc8b13020e055598b02f638ab4f4c4207d066d5657414aebb5d7b526b671217f388b2b2ca diff --git a/dev-python/python-troveclient/metadata.xml b/dev-python/python-troveclient/metadata.xml new file mode 100644 index 000000000000..7886b45b14b6 --- /dev/null +++ b/dev-python/python-troveclient/metadata.xml @@ -0,0 +1,13 @@ + + + + openstack + + prometheanfire@gentoo.org + Matthew Thode + + + This is a client for the OpenStack Trove API, a scalable relational database service. + + + diff --git a/dev-python/python-troveclient/python-troveclient-0.1.4.ebuild b/dev-python/python-troveclient/python-troveclient-0.1.4.ebuild new file mode 100644 index 000000000000..4d0f657b5c41 --- /dev/null +++ b/dev-python/python-troveclient/python-troveclient-0.1.4.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-troveclient/python-troveclient-0.1.4.ebuild,v 1.1 2013/10/23 06:17:30 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="This is a client for the OpenStack Trove API, a scalable relational database service." +HOMEPAGE="https://github.com/openstack/python-troveclient" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pbr-0.5.16[${PYTHON_USEDEP}] + =dev-python/hacking-0.5.6[${PYTHON_USEDEP}] + =dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] + >=dev-python/testrepository-0.0.17[${PYTHON_USEDEP}] + >=dev-python/testtools-0.9.32[${PYTHON_USEDEP}] + >=dev-python/mock-0.8.0[${PYTHON_USEDEP}] )" +RDEPEND="virtual/python-argparse[${PYTHON_USEDEP}] + dev-python/httplib2[${PYTHON_USEDEP}] + >=dev-python/lxml-2.3[${PYTHON_USEDEP}] + >=dev-python/prettytable-0.6[${PYTHON_USEDEP}] + qt - Build Android plugin + Build plugin for Android devices Enable autotools project manager plugin + Build plugin for bare metal devices Add support for dev-vcs/bzr version control system Add support for IBM ClearCase version control system (requires manual installation of ClearCase client) Enable cmake project manager plugin Enable support for vim-like key bindings + Build plugin for Apple iOS devices Enable integration with MADDE (Maemo Application Development and Debugging Environment) Add support for dev-vcs/mercurial version control system Add support for Perforce version control system (requires manual installation of Perforce client) - Build QNX/Blackberry plugin + Enable Python source code editor + Build plugin for QNX/Blackberry devices Add support for memory debugging using dev-util/valgrind diff --git a/dev-qt/qt-creator/qt-creator-3.0.0_beta.ebuild b/dev-qt/qt-creator/qt-creator-3.0.0_beta.ebuild new file mode 100644 index 000000000000..926ec7743f9e --- /dev/null +++ b/dev-qt/qt-creator/qt-creator-3.0.0_beta.ebuild @@ -0,0 +1,127 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qt-creator/qt-creator-3.0.0_beta.ebuild,v 1.1 2013/10/23 13:08:04 pesa Exp $ + +EAPI=5 + +PLOCALES="cs de fr ja pl ru sl zh_CN zh_TW" + +inherit eutils l10n multilib qt4-r2 + +DESCRIPTION="Lightweight IDE for C++/QML development centering around Qt" +HOMEPAGE="http://qt-project.org/wiki/Category:Tools::QtCreator" +LICENSE="LGPL-2.1" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI=( + "git://gitorious.org/${PN}/${PN}.git" + "https://git.gitorious.org/${PN}/${PN}.git" + ) +else + MY_PV=${PV/_/-} + MY_P=${PN}-${MY_PV}-src + [[ ${MY_PV} == ${PV} ]] && MY_REL=official || MY_REL=development + SRC_URI="http://download.qt-project.org/${MY_REL}_releases/${PN/-}/${PV%.*}/${MY_PV}/${MY_P}.tar.gz" + S=${WORKDIR}/${MY_P} +fi + +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +QTC_PLUGINS=(android autotools:autotoolsprojectmanager baremetal bazaar + clearcase cmake:cmakeprojectmanager cvs fakevim git ios mercurial + perforce python:pythoneditor qnx subversion valgrind) +IUSE="debug doc examples test ${QTC_PLUGINS[@]%:*}" + +# minimum Qt version required +QT_PV="4.8.0:4" + +CDEPEND=" + =dev-libs/botan-1.10*[threads] + >=dev-qt/qtcore-${QT_PV}[ssl] + >=dev-qt/qtdeclarative-${QT_PV} + || ( + ( >=dev-qt/qtgui-4.8.5:4 dev-qt/designer:4 ) + ( >=dev-qt/qtgui-${QT_PV} =dev-qt/qthelp-${QT_PV}[doc?] + >=dev-qt/qtscript-${QT_PV} + >=dev-qt/qtsql-${QT_PV} + >=dev-qt/qtsvg-${QT_PV} +" +DEPEND="${CDEPEND} + virtual/pkgconfig + test? ( >=dev-qt/qttest-${QT_PV} ) +" +RDEPEND="${CDEPEND} + >=sys-devel/gdb-7.2[client(+),python] + examples? ( >=dev-qt/qtdemo-${QT_PV} ) +" +PDEPEND=" + autotools? ( sys-devel/autoconf ) + bazaar? ( dev-vcs/bzr ) + cmake? ( dev-util/cmake ) + cvs? ( dev-vcs/cvs ) + git? ( dev-vcs/git ) + mercurial? ( dev-vcs/mercurial ) + subversion? ( dev-vcs/subversion ) + valgrind? ( dev-util/valgrind ) +" + +src_prepare() { + qt4-r2_src_prepare + + # disable unwanted plugins + for plugin in "${QTC_PLUGINS[@]#[+-]}"; do + if ! use ${plugin%:*}; then + einfo "Disabling ${plugin%:*} plugin" + sed -i -re "/^\s+${plugin#*:}\>/d" src/plugins/plugins.pro \ + || die "failed to disable ${plugin%:*} plugin" + fi + done + + # fix translations + sed -i -e "/^LANGUAGES =/ s:=.*:= $(l10n_get_locales):" \ + share/qtcreator/translations/translations.pro || die + + # remove bundled qbs for now + # TODO: package it and re-enable the plugin + rm -rf src/shared/qbs || die +} + +src_configure() { + EQMAKE4_EXCLUDE="share/qtcreator/templates/* + tests/*" + eqmake4 IDE_LIBRARY_BASENAME="$(get_libdir)" \ + IDE_PACKAGE_MODE=1 \ + TEST=$(use test && echo 1 || echo 0) \ + USE_SYSTEM_BOTAN=1 +} + +src_test() { + echo ">>> Test phase [QTest]: ${CATEGORY}/${PF}" + cd tests/auto || die + + EQMAKE4_EXCLUDE="valgrind/*" + eqmake4 IDE_LIBRARY_BASENAME="$(get_libdir)" + + emake check +} + +src_install() { + emake INSTALL_ROOT="${ED}usr" install + + dodoc dist/{changes-*,known-issues} + + # install documentation + if use doc; then + emake docs + insinto /usr/share/doc/${PF} + doins share/doc/qtcreator/qtcreator{,-dev}.qch + docompress -x /usr/share/doc/${PF}/qtcreator{,-dev}.qch + fi + + # install desktop file + make_desktop_entry qtcreator 'Qt Creator' QtProject-qtcreator 'Qt;Development;IDE' +} diff --git a/dev-ruby/activeldap/Manifest b/dev-ruby/activeldap/Manifest index 83f19e111334..a68dbc242cda 100644 --- a/dev-ruby/activeldap/Manifest +++ b/dev-ruby/activeldap/Manifest @@ -1 +1,2 @@ DIST activeldap-3.2.2.gem 218624 SHA256 2c8f1c5ca5d32ef6c98cc9ad00933a10b3ed9fc0d77eaea504a5615e6e37ece0 SHA512 f3a802fa1e05b2140fc0c14035ce4ec7037496a2de50908a1143bf3a2c89cf9de6a339ead075b38e7f8b8f7f78314cfd9fe414b64e71e89bdd8dce6b9ab7a1ad WHIRLPOOL a07beca35e89738cc1fa39c5cfd193a63240708ab857812795fe02c148e73ef2e9e1865e286d82608c8fbbf78e4f87c6afc66f8a506b0de51550a0dd006bff6a +DIST activeldap-4.0.1.gem 220672 SHA256 3d024040981834455a80cadecb17774deb0de099f1b828d31dc033fb0db3275d SHA512 8fb805092124f673eee3bd8cdb323aa700791b992b5983e844eb25cf0841e1bc36edf5eefed71958537f5cb17ad75b1fdc2f108347d14e4298fc384a29fda57f WHIRLPOOL cc79be414a868187e14503b449dd88b84dd35dde51e337e786c3ee08c4a284b9683b6eb26dd59c192f3a48671c9424faf296a9334b2c2482e0e9df0a5e0edd17 diff --git a/dev-ruby/activeldap/activeldap-4.0.1.ebuild b/dev-ruby/activeldap/activeldap-4.0.1.ebuild new file mode 100644 index 000000000000..a9b4bd9db716 --- /dev/null +++ b/dev-ruby/activeldap/activeldap-4.0.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/activeldap/activeldap-4.0.1.ebuild,v 1.1 2013/10/22 17:59:01 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby19" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_EXTRADOC="README.textile TODO" +RUBY_FAKEGEM_EXTRAINSTALL="po" + +inherit ruby-fakegem + +MY_P="${P/ruby-/}" +DESCRIPTION="Ruby/ActiveLDAP provides an activerecord inspired object oriented interface to LDAP" +HOMEPAGE="https://github.com/activeldap/activeldap" + +LICENSE="GPL-2" +SLOT="4" +KEYWORDS="~amd64" +IUSE="" + +# Most tests require a live LDAP server to run. +RESTRICT="test" + +ruby_add_rdepend " + >=dev-ruby/activemodel-4.0.0:4.0 + dev-ruby/locale + dev-ruby/ruby-gettext + dev-ruby/gettext_i18n_rails + || ( >=dev-ruby/ruby-ldap-0.8.2 dev-ruby/ruby-net-ldap )" + +all_ruby_install() { + all_fakegem_install + + dodoc doc/text/* + + insinto /usr/share/doc/${PF} + doins -r examples +} diff --git a/dev-ruby/arel/Manifest b/dev-ruby/arel/Manifest index e6d2b9b3dbb1..04c8ac7392c9 100644 --- a/dev-ruby/arel/Manifest +++ b/dev-ruby/arel/Manifest @@ -1,3 +1,4 @@ DIST arel-2.2.3.gem 46080 SHA256 ce8a0efef467948a6a3a2fa35f99bee097c52a567ea862395850dd48ee4f9438 SHA512 e094e2f56ec3b0a6b8627533240dc5c0dc8fa99eec52c4c656c6d7778a9fb23338c70a4603ff1135526a59fd0cd42f59d6c415d8aade372717771079cbda31e4 WHIRLPOOL 9250803e2cafa59cfc8217f28973c0c17c1d4fb30d4307919bd846f7f5c5ebfe8b1d5e671b429ec3c1c1551075a68e4446d79a73c2425ebad3c08f7e07764871 DIST arel-3.0.2.gem 46080 SHA256 7d5e9c081444fa4d6a0bba70d3ddf56d9592658dafa59ffca4ebd6aa60de0b95 SHA512 be4b4109a17681c928ae3134f632a0c3e8a4180a2340ae272b989d163eb82e9aab3e8bba9ab78f117113091920f1b749370df8469b6e3d2941dff826dcda6625 WHIRLPOOL 40d156966c8d9dc52741a9088e3e0aa75a8b595ccc87ddf89a0bffb7663f1d92c4d4c297e02101b8914b6942f1deafb9ad60ab0eb5d7213b4decfe720f805d31 DIST arel-4.0.0.gem 51712 SHA256 93c5b7f3a994cd489fb143548a281cecb66d1cf4e46ae36847e1920b257abfa7 SHA512 c66f5483d6f41b7d8074f47a8a6b94000f92fe5bfe0f0e648a55bebab9c28f7109c311da3730fbd0a240463a2deed495f572a1ca5179a20496a4327af32fda25 WHIRLPOOL 12ba41fea51b9ee85e20144fa96c5524afc291ca78d7f4bbddb9bc9e7c78f7ff4337f13d7038c18d56cdc8de4d7afb081030d37c67f1a2bd2d1b8180f25bdea9 +DIST arel-4.0.1.gem 52736 SHA256 d40aaac9e7c557847b27d527687dba5a57229da2d1d283ad324891c4cdf32194 SHA512 faf3366cffcb2c9b98a5e8fcf156d93576ff08eeb4888a557ccece20fb30d872738a7d1b067a1d808ec4cef56b204eb5f917ec9fe17a291f86eef81baf55a156 WHIRLPOOL 6cfff128817f8f1262d809beafe0c12ecd40241cd46a029d24b6403919b8c29c06b0ddeb80f3b840e13781197cbab50aefeac61ae9a473ab9374edd07c18271e diff --git a/dev-ruby/arel/arel-4.0.1.ebuild b/dev-ruby/arel/arel-4.0.1.ebuild new file mode 100644 index 000000000000..bc794a25cc30 --- /dev/null +++ b/dev-ruby/arel/arel-4.0.1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/arel/arel-4.0.1.ebuild,v 1.1 2013/10/23 05:19:02 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby19 ruby20" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="History.txt README.markdown" + +# Generating the gemspec from metadata causes a crash in jruby +RUBY_FAKEGEM_GEMSPEC="arel.gemspec" + +inherit ruby-fakegem versionator + +DESCRIPTION="Arel is a Relational Algebra for Ruby." +HOMEPAGE="http://github.com/rails/arel" +LICENSE="MIT" +SLOT="$(get_version_component_range 1-2)" +KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +ruby_add_bdepend " + test? ( + dev-ruby/test-unit:2 + virtual/ruby-minitest + )" + +all_ruby_prepare() { + # Put the proper version number in the gemspec. + sed -i -e "s/ s.version = \".*\"/ s.version = \"${PV}\"/" arel.gemspec || die +} + +each_ruby_test() { + ruby-ng_testrb-2 -Ilib test/test_*.rb +} diff --git a/dev-ruby/cocaine/Manifest b/dev-ruby/cocaine/Manifest index c77b7028c67f..5a4c679ae5a8 100644 --- a/dev-ruby/cocaine/Manifest +++ b/dev-ruby/cocaine/Manifest @@ -1,2 +1 @@ -DIST cocaine-0.4.2.gem 12288 SHA256 b1c04ddd688053ef25bfe79f9f980b76f7e8a2b33fef7bd15276a6706f1e4c85 SHA512 13d9ff34f4a82aaa66ce9eda1918d54b062322d39cd73cf18456a3ee0eb431a36ea4120c722c56cf0759a0b44fd8e2f542bea16a4fca4267ef24ec85a966e45d WHIRLPOOL 7616a637109cd9a83f1e1309a4198e107453a586afb9490e43966ea3aa437736bb395e3dba011f66b118ea4c0f887b756b07efc518f65dd0c209f9b3f996a6cc -DIST cocaine-0.5.1.gem 12800 SHA256 d8cab89e51f261e707de675cb62572454fb124db0ec9eaa40a6698ee35dcfc76 SHA512 92b749f69e1d2c3b5c62ca34030325717f635526fc30f6faabd9eb85d2581d92bca2197e245b0f32ef882878155aeb105014b9dc91ea513dee40c18f20f5f183 WHIRLPOOL 6364bee0338b4d350621427678e47b116a753f065b301a2a155551b72c2c5d3966005e42b8c6911441ad3d8378036957e90463897baefe32368bcd24719054c4 +DIST cocaine-0.5.3.gem 14336 SHA256 9ebb0c7127a498897da99bde17262bce53a06c4e904c87cf2db5ec9362487ef2 SHA512 10a3ae3694890554cddd8d4eee62b0143e776092ff74977c7e494c37787fa34d360db8c12f1fd91b311b141e0ee59d5959b43229c1f7acaaf4f6602e93e59276 WHIRLPOOL f55faf22d338f23c203370720a78b22e2c615b627378e266c929ff1e93be15d1a8b111aab5604a57026533b03de0a8762ba1317552cea178aa9bb3acdcad4c91 diff --git a/dev-ruby/cocaine/cocaine-0.4.2.ebuild b/dev-ruby/cocaine/cocaine-0.4.2.ebuild deleted file mode 100644 index 68e9ecf9aefc..000000000000 --- a/dev-ruby/cocaine/cocaine-0.4.2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/cocaine/cocaine-0.4.2.ebuild,v 1.1 2012/12/16 09:31:48 graaff Exp $ - -EAPI=4 -USE_RUBY="ruby18 ruby19 jruby" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="README.md" - -RUBY_FAKEGEM_RECIPE_TEST="rspec" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="A small library for doing command lines" -HOMEPAGE="http://www.thoughtbot.com/projects/cocaine" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -ruby_add_bdepend " - test? ( - dev-ruby/bourne - dev-ruby/mocha - )" - -all_ruby_prepare() { - sed -i \ - -e '/git ls-files/d' \ - "${RUBY_FAKEGEM_GEMSPEC}" || die - - rm Gemfile* || die - - sed -i -e '/bundler/d' Rakefile || die - - sed -i -e '/pry/ s:^:#:' spec/spec_helper.rb || die -} diff --git a/dev-ruby/cocaine/cocaine-0.5.1.ebuild b/dev-ruby/cocaine/cocaine-0.5.3.ebuild similarity index 94% rename from dev-ruby/cocaine/cocaine-0.5.1.ebuild rename to dev-ruby/cocaine/cocaine-0.5.3.ebuild index f351597eb8bb..105163f54ac5 100644 --- a/dev-ruby/cocaine/cocaine-0.5.1.ebuild +++ b/dev-ruby/cocaine/cocaine-0.5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/cocaine/cocaine-0.5.1.ebuild,v 1.1 2013/04/30 06:13:00 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/cocaine/cocaine-0.5.3.ebuild,v 1.1 2013/10/23 17:31:35 graaff Exp $ EAPI=5 USE_RUBY="ruby19" diff --git a/dev-ruby/map/Manifest b/dev-ruby/map/Manifest index 008bf8db2c2e..f43ba2ad4490 100644 --- a/dev-ruby/map/Manifest +++ b/dev-ruby/map/Manifest @@ -1 +1,2 @@ DIST map-5.5.0.gem 20480 SHA256 26419306d9ff4b5f68d7b9502010fb8bee3fc5b5c3078922678dbe3a51dd9b08 SHA512 3578d9a3881b9773fdbf89bc4501628d258711eded54003f16e50141e631e78dd114fb8d81af624c13a5fa3cfe3712bd48a8da570fa18748b5889ab6c9ae4d3b WHIRLPOOL 5fa2f673b055f0900ab4e2d37bccce7213d52249a343abf8cc4726987c71e6028454a96cb0127fa6f1f13632e95ed9ebc07f8cc9f3fcae6037caf04a35d92372 +DIST map-6.5.1.gem 23040 SHA256 305f07f976adb57871fd453ed95ff3598ad1146f85e8c6c0df6f8241f187d54f SHA512 f2d05ab70e0b369e88fbf7235822e925b8f437d4f678e9d132cdb5db6cf81fe929305b2339cdc755c1f1d0d9c0e424a40c4d2f3373f82eba8af39d673d086e52 WHIRLPOOL 5bcbcdeb295efa59ec5ce4e52790e0dc42e57e3b277afc948791f8af8a3a589bb7a0f274e74e4d467e59438bb37b6293baf64ea50066cbf24593d17ec8ea61a4 diff --git a/dev-ruby/map/files/map-6.5.1-ruby18-failing-tests.patch b/dev-ruby/map/files/map-6.5.1-ruby18-failing-tests.patch new file mode 100644 index 000000000000..d33a5fa0fbe2 --- /dev/null +++ b/dev-ruby/map/files/map-6.5.1-ruby18-failing-tests.patch @@ -0,0 +1,75 @@ +--- test/map_test.rb.old 2013-10-14 17:23:08.612541725 +0100 ++++ test/map_test.rb 2013-10-14 17:24:20.001644242 +0100 +@@ -405,47 +405,6 @@ + assert{ m[:key][0].is_a?(Map) } + end + +- testing 'that #add overlays the leaves of one hash onto another without nuking branches' do +- m = Map.new +- +- assert do +- m.add( +- :comments => [ +- { :body => 'a' }, +- { :body => 'b' }, +- ], +- +- [:comments, 0] => {'title' => 'teh title', 'description' => 'description'}, +- [:comments, 1] => {'description' => 'description'}, +- ) +- end +- +- assert do +- m =~ +- {"comments"=> +- [{"body"=>"a", "title"=>"teh title", "description"=>"description"}, +- {"body"=>"b", "description"=>"description"}]} +- end +- +- m = Map.new +- +- assert do +- m.add( +- [:a, :b, :c] => 42, +- +- [:a, :b] => {:d => 42.0} +- ) +- end +- +- assert do +- m =~ +- {"a"=>{"b"=>{"c"=>42, "d"=>42.0}}} +- end +- +- assert{ Map.new.tap{|i| i.add} =~ {} } +- assert{ Map.new.tap{|i| i.add({})} =~ {} } +- end +- + testing 'that Map.combine is teh sweet' do + { + [{:a => {:b => 42}}, {:a => {:c => 42.0}}] => +@@ -734,24 +693,6 @@ + assert{ map.list.class != Array } + end + +- testing 'rack compatible params' do +- m = Map.for(:a => [{}, {:b => 42}], :x => [ nil, [ nil, {:y => 42}] ], :A => {:B => {:C => 42}}) +- +- assert{ m.param_for(:a, 1, :b) == 'map[a][][b]=42' } +- assert{ m.name_for(:a, 1, :b) == 'map[a][][b]' } +- +- assert{ m.param_for(:x, 1, 1, :y) == 'map[x][][][y]=42' } +- assert{ m.name_for(:x, 1, 1, :y) == 'map[x][][][y]' } +- +- assert{ m.param_for(:A, :B, :C) == 'map[A][B][C]=42' } +- assert{ m.name_for(:A, :B, :C) == 'map[A][B][C]' } +- +- assert{ m.name_for(:A, :B, :C, :prefix => :foo) == 'foo[A][B][C]' } +- +- m = Map.for({"a"=>{"b"=>42}, "x"=>{"y"=>42}, "foo"=>:bar, "array"=>[{"k"=>:v}]}) +- assert{ m.to_params == "map[a][b]=42&map[x][y]=42&map[foo]=bar&map[array][][k]=v" } +- end +- + testing 'delete_if' do + m = Map.for(:k => :v) + assert{ m.delete_if{|k| k.to_s == 'k'} } diff --git a/dev-ruby/map/files/ruby18-failing-tests.patch b/dev-ruby/map/files/ruby18-failing-tests.patch new file mode 100644 index 000000000000..c0a608ff6aff --- /dev/null +++ b/dev-ruby/map/files/ruby18-failing-tests.patch @@ -0,0 +1,15 @@ +--- test/map_test.rb.old 2013-10-14 15:37:25.639883829 +0000 ++++ test/map_test.rb 2013-10-14 15:37:33.747781899 +0000 +@@ -651,12 +651,6 @@ + assert{ all_args == [[1, 2], [3, 4]] } + end + +- testing 'keeps every entry for which block is true and returns self' do +- m = Map.new( { :a => 1 , :b => 2 , :c => 3 , :d => 4 } ) +- assert{ m.keep_if { |k,v| v % 2 == 0 }.object_id == m.object_id } +- assert{ m == Map.new( { :b => 2 , :d => 4 } ) } +- end +- + testing 'it raises a RuntimeError if called on a frozen instance' do + m = Map.new( { :a => 1 } ).freeze + diff --git a/dev-ruby/map/map-6.5.1.ebuild b/dev-ruby/map/map-6.5.1.ebuild new file mode 100644 index 000000000000..9fa5ecd4d29d --- /dev/null +++ b/dev-ruby/map/map-6.5.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/map/map-6.5.1.ebuild,v 1.1 2013/10/22 18:03:08 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby18 ruby19 ruby20 jruby" + +RUBY_FAKEGEM_TASK_DOC="" + +RUBY_FAKEGEM_EXTRADOC="README" + +RUBY_FAKEGEM_GEMSPEC="map.gemspec" + +inherit ruby-fakegem + +DESCRIPTION="A string/symbol indifferent ordered hash that works in all rubies." +HOMEPAGE="http://github.com/ahoward/map" + +LICENSE="|| ( Ruby BSD-2 )" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" + +each_ruby_prepare() { + case ${RUBY} in + *ruby18) + epatch "${FILESDIR}/ruby18-failing-tests.patch" + epatch "${FILESDIR}/${P}-ruby18-failing-tests.patch" + ;; + *jruby) + epatch "${FILESDIR}/${P}-ruby18-failing-tests.patch" + ;; + *) + ;; + esac +} diff --git a/dev-ruby/mocha/mocha-0.13.3-r1.ebuild b/dev-ruby/mocha/mocha-0.13.3-r1.ebuild new file mode 100644 index 000000000000..c1f3059ba43c --- /dev/null +++ b/dev-ruby/mocha/mocha-0.13.3-r1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mocha/mocha-0.13.3-r1.ebuild,v 1.1 2013/10/23 05:39:12 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby18 ruby19 ruby20 jruby" + +RUBY_FAKEGEM_TASK_TEST="test:units" + +RUBY_FAKEGEM_TASK_DOC="yardoc" +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="README.md RELEASE.md" + +RUBY_FAKEGEM_EXTRAINSTALL="init.rb" + +inherit ruby-fakegem + +DESCRIPTION="A Ruby library for mocking and stubbing using a syntax like that of JMock, and SchMock" +HOMEPAGE="http://gofreerange.com/mocha/docs/" + +LICENSE="MIT" +SLOT="0.13" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +ruby_add_bdepend " + doc? ( dev-ruby/yard ) + test? ( >=dev-ruby/test-unit-2.5.1-r1 )" + +ruby_add_rdepend "dev-ruby/metaclass" #metaclass ~> 0.0.1 + +all_ruby_prepare() { + sed -i -e '/[Bb]undler/ s:^:#:' -e '1iload "lib/mocha/version.rb"' Rakefile || die +} + +each_ruby_test() { + ruby-ng_testrb-2 test/unit/* +} diff --git a/dev-ruby/racc/Manifest b/dev-ruby/racc/Manifest index 41666c9a9b26..0236ed43b4f7 100644 --- a/dev-ruby/racc/Manifest +++ b/dev-ruby/racc/Manifest @@ -1,2 +1,3 @@ +DIST racc-1.4.10.gem 109568 SHA256 6282f61f123f4e1d39bac5ad19027e34c336a5e1d80f9e4769c80b16db11b583 SHA512 b1199c603ff593a661b3c00b832b64607b1c8a601256de23e99d5826227d791736497a6b082b25c0d88f40a665b8603720fe1c9e97cc91e64d34a2592c5b499a WHIRLPOOL 958e6d21dfc4628aa839870104947444ad48861e09052584ce5aa3edc624350cfad6c5eb740ec9720fc636ee045c4619a4e8fe730ff5bf2773877438759b68a2 DIST racc-1.4.8.gem 109056 SHA256 934d178848b6c55fae8db6108e6e8af0954af8cb374ff9526d098abebf247b7b SHA512 7361da42ba576dc1aa2c812d97f1f3f7d3f8b45a69f791ce8559592e5526aca13276586fdf15588f2c3c332d28724b94f49e06d0b093adf36c5a59af266e8f1f WHIRLPOOL c7a28d6786a04d2b97fdcb48d1beb506aa525832e5eba36462db2a23971ca12b501b6a46ecf729efa0422112ad73e7f9ed85cae401c1461e4642b4e605ec04ba DIST racc-1.4.9.gem 109056 SHA256 f9d53caeb1ff5ac633a270a45478e585e6e054c44f6da28415f3432caf8f61d5 SHA512 84dfe85c7f0054ee6b2895b7ae3d28bebb51183c023457f8006b13b50a10a74e0f97ab92e3724a5c492dae9cebadb6f9e6d78e32add6bb11b07dd25459b7a7c2 WHIRLPOOL 1ab62401c403044d45b292dec12257b25847b7577d11bdd795fb7946720492356ffed43686fca288afad9ddce47cd8735bf0e62c9b297cbcbb2b1680764c805e diff --git a/dev-ruby/racc/racc-1.4.10.ebuild b/dev-ruby/racc/racc-1.4.10.ebuild new file mode 100644 index 000000000000..26622974c10c --- /dev/null +++ b/dev-ruby/racc/racc-1.4.10.ebuild @@ -0,0 +1,85 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/racc/racc-1.4.10.ebuild,v 1.1 2013/10/23 05:53:11 graaff Exp $ + +EAPI=5 + +USE_RUBY="ruby18 ruby19 ruby20 jruby" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_TASK_DOC="docs" +RUBY_FAKEGEM_EXTRADOC="README.rdoc README.ja.rdoc TODO ChangeLog" + +inherit multilib ruby-fakegem + +DESCRIPTION="A LALR(1) parser generator for Ruby" +HOMEPAGE="https://github.com/tenderlove/racc" + +LICENSE="LGPL-2.1" +SLOT="0" + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="doc test" + +ruby_add_bdepend "dev-ruby/rake" + +all_ruby_prepare() { + sed -i -e 's|/tmp/out|${TMPDIR:-/tmp}/out|' test/helper.rb || die "tests fix failed" + + # Avoid depending on rake-compiler since we don't use it to compile + # the extension. + sed -i -e '/rake-compiler/ s:^:#:' -e '/extensiontask/ s:^:#:' Rakefile + sed -i -e '/ExtensionTask/,/^ end/ s:^:#:' Rakefile + + # Avoid isolation since dependencies are not properly declared. + sed -i -e 's/, :isolate//' Rakefile || die +} + +each_ruby_prepare() { + case ${RUBY} in + *jruby) + # Some tests are broken on jruby, avoid them. We used to + # avoid all tests so this is not a regression for us. + rm test/test_racc_command.rb || die + ;; + *ruby18) + sed -i -e '/test_norule_y/,/end/ s:^:#:' \ + -e '/test_unterm_y/,/end/ s:^:#:' test/test_racc_command.rb || die + ;; + *) + ${RUBY} -Cext/racc extconf.rb || die + ;; + esac +} + +each_ruby_compile() { + case ${RUBY} in + *jruby) + einfo "Under JRuby, racc cannot use the shared object parser, so instead" + einfo "you have to rely on the pure Ruby implementation." + ;; + *ruby18) + einfo "No longer compiles with ruby 1.8, only the pure Ruby implementation is used." + ;; + *) + emake V=1 -Cext/racc + # Copy over the file here so that we don't have to do + # special ruby install for JRuby and the other + # implementations. + cp -l ext/racc/cparse$(get_modname) lib/racc/cparse$(get_modname) || die + ;; + esac +} + +each_ruby_test() { + ${RUBY} -Ilib -S testrb test/test_*.rb || die +} + +all_ruby_install() { + all_fakegem_install + + dodoc -r rdoc + + docinto examples + dodoc -r sample +} diff --git a/dev-tex/biblatex/Manifest b/dev-tex/biblatex/Manifest index 6e5c6c4f77fc..1d4f2feb5dc7 100644 --- a/dev-tex/biblatex/Manifest +++ b/dev-tex/biblatex/Manifest @@ -1 +1,2 @@ DIST biblatex-2.7.tds.tgz 9148797 SHA256 1397b3255532137fe402b1c5883626926dca930692bfb03e94964125f0932185 SHA512 1330873d4400d89e7fef97f1b87fb66def2ff87f5481f60d1634a4fc20bc8aef4386a448cb8d41f0d6cfe3daa36687332178456abff8f22826617be7aff0267e WHIRLPOOL 6be492f8bc2922b51ec5d56954add1e2cac50f98eaff455231fd429b8f8ed33cbb4334b64702747ffecc383079674d61e1c146c1c1602c2dd50cfa6ab945705d +DIST biblatex-2.8.tds.tgz 9164107 SHA256 626beb1edce190e31be8c40ff5ce4f24e5b9eb629f3b52b988d462bd07070bdc SHA512 312106ae0d097d4ccd890eaa2d4785d7f6ed284fa09c9c5910b9c46dc8069ea0debfa8f9acf30f00a06aceb8986cebf95d23a61a6ffd67e8136150c1215d239f WHIRLPOOL 161d5387ca3f7024799f87aa761d92f662f4b04172d6601b7a78db965d998e95f35d1d962eb3c222371f763d639092d4f6114ea1ca045b89a1af945523f22ab3 diff --git a/dev-tex/biblatex/biblatex-2.8.ebuild b/dev-tex/biblatex/biblatex-2.8.ebuild new file mode 100644 index 000000000000..0d8548026b62 --- /dev/null +++ b/dev-tex/biblatex/biblatex-2.8.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tex/biblatex/biblatex-2.8.ebuild,v 1.1 2013/10/22 21:33:13 mrueg Exp $ + +EAPI=5 + +inherit latex-package + +DESCRIPTION="Reimplementation of the bibliographic facilities provided by LaTeX" +HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/biblatex" +SRC_URI="mirror://sourceforge/${PN}/${P}.tds.tgz" + +LICENSE="LPPL-1.3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples" + +RDEPEND="dev-texlive/texlive-bibtexextra" +DEPEND="${RDEPEND}" + +S=${WORKDIR} +TEXMF=/usr/share/texmf-site + +src_install() { + insinto "${TEXMF}" + doins -r bibtex tex + + dodoc doc/latex/biblatex/{README,RELEASE} + use doc && { pushd doc/latex/biblatex/ ; latex-package_src_doinstall doc ; popd ; } + if use examples ; then + docinto examples + dodoc -r doc/latex/biblatex/examples + fi +} diff --git a/dev-util/debootstrap/Manifest b/dev-util/debootstrap/Manifest index ad13e0104493..572d98ac7c66 100644 --- a/dev-util/debootstrap/Manifest +++ b/dev-util/debootstrap/Manifest @@ -1,3 +1,4 @@ DIST debootstrap_1.0.52.tar.gz 57505 SHA256 0b7ad9c887de826a4561ff552069a8663b38e2cf4c91182a37682d737bff39f9 SHA512 fe0b3f30c8093d303d768d411475ec01936a02e4e52d863695ffe06daf7de962a2703cb4536e45e9fe8d33020239e95f388554be6385a4dcdead25cd0fe803f6 WHIRLPOOL 437be4c7c687ec236bf494c634cf9a0ba5f29052aab1ce49ecca4972d6db022931efa9556224400b2a56e664eb9b8408405a2a2dc8fbb3466cee90bf004b9bf4 DIST debootstrap_1.0.53.tar.gz 59064 SHA256 26b74baee6909e9ce363891cc355fced6d875ca8c3715e72ff9dfb580c9cc272 SHA512 3a4e4c0a2362646af080ce63db82ef418b2306ab1f39253dbf14667b68b9970da0c14398218574aff62a31f5f369e23e1483a1b4e44d7fc06ebb497643a74663 WHIRLPOOL ae87558aa7dc2eb985ef57b8680ff55e38528ad50ad74ecb20e3b4d49bdb20db673854a413b1ca1239014a9fcf85256ef150976ff37c10c618d43df2cea4d17e +DIST debootstrap_1.0.55.tar.gz 59024 SHA256 a0c4f8980df376470ab71687c43a41fe62a44b117c58a4b8d98a6177cfd5e33a SHA512 5d1672ee24bf8375987b8c54a093f24fb879d8b3c9f11d377097d90001d18e9d1acd155552eeb22b8f4d6361ba6b86bbc833822f27f12222f12bd4b757e1a786 WHIRLPOOL c81e2e5bb8130083887d738557e034a31553c7beea521dafd2f27ed31233effc60524e005266539fbf4043049a1dff55214ec7346366df265bbc81cd50c73aff DIST devices.tar.gz 47835 SHA256 0d93f93c8b21160069d14e74f8f990a2e0e1e5a90dc828b29e6b3f5aa5829e48 SHA512 994ec8d72e3d52d2d872f7ff0da2336e4cbd3a5fa73bb6cdb9e06f5e7f5b8c69cea639c738fdba1186f382d6dcf62e7746fface664bfbd744aac24b16f034432 WHIRLPOOL 222963bb920e1311bc2f481bba04e49f386b60cce6ce0576424896277e0c4fc6a339d4403d587744c32b0bfb1db6391f200fa8d66117e3f21e1c12f35365d732 diff --git a/dev-util/debootstrap/debootstrap-1.0.55.ebuild b/dev-util/debootstrap/debootstrap-1.0.55.ebuild new file mode 100644 index 000000000000..f03688bb5cd9 --- /dev/null +++ b/dev-util/debootstrap/debootstrap-1.0.55.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/debootstrap/debootstrap-1.0.55.ebuild,v 1.1 2013/10/23 23:07:33 jer Exp $ + +EAPI=5 +inherit eutils + +DESCRIPTION="Debian/Ubuntu bootstrap scripts" +HOMEPAGE="http://packages.qa.debian.org/d/debootstrap.html" +SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.gz + mirror://gentoo/devices.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + app-arch/dpkg + net-misc/wget + sys-devel/binutils +" + +DOCS=( TODO debian/changelog ) + +src_unpack() { + unpack ${PN}_${PV}.tar.gz + cp "${DISTDIR}"/devices.tar.gz "${S}" +} + +src_compile() { + return +} + +src_install() { + default + doman debootstrap.8 +} + +pkg_postinst() { + if ! has_version ${CATEGORY}/${PN} && ! has_version app-crypt/gnupg; then + elog "To check Release files against a keyring" + elog " (--keyring=K), please install app-crypt/gnupg." + fi +} diff --git a/dev-util/geany/geany-1.23.1.ebuild b/dev-util/geany/geany-1.23.1.ebuild index 139d9d89b2d1..afd25e90bec0 100644 --- a/dev-util/geany/geany-1.23.1.ebuild +++ b/dev-util/geany/geany-1.23.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/geany/geany-1.23.1.ebuild,v 1.1 2013/05/28 15:09:07 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/geany/geany-1.23.1.ebuild,v 1.2 2013/10/22 20:23:04 polynomial-c Exp $ EAPI=5 inherit eutils fdo-mime gnome2-utils @@ -43,7 +43,7 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" DOCDIR="${ED}/usr/share/doc/${PF}" install || die + emake DESTDIR="${D}" DOCDIR="${ED}/usr/share/doc/${PF}" install rm -f "${ED}"/usr/share/doc/${PF}/{COPYING,GPL-2,ScintillaLicense.txt} prune_libtool_files --all } diff --git a/dev-util/visual-regexp/metadata.xml b/dev-util/visual-regexp/metadata.xml index 59e2b8f78cb5..f5b2d29b8036 100644 --- a/dev-util/visual-regexp/metadata.xml +++ b/dev-util/visual-regexp/metadata.xml @@ -1,8 +1,9 @@ + proxy-maintainers - maintainer-needed@gentoo.org - Default assignee for orphaned packages + quentin@minster.io + Quentin Minster diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index bf5b650a667c..f7d2ef984d7a 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.88 2013/10/22 15:15:51 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.89 2013/10/22 19:23:47 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -492,7 +492,7 @@ distutils-r1_python_install() { flags+=( --install-scripts="${PYTHON_SCRIPTDIR}" ) fi - esetup.py install "${@}" "${flags[@]}" + esetup.py install "${@}" install "${flags[@]}" if [[ -d ${root}$(python_get_sitedir)/tests ]]; then die "Package installs 'tests' package, file collisions likely." diff --git a/games-arcade/smc/files/smc-1.9-underlink.patch b/games-arcade/smc/files/smc-1.9-underlink.patch new file mode 100644 index 000000000000..6e076027c472 --- /dev/null +++ b/games-arcade/smc/files/smc-1.9-underlink.patch @@ -0,0 +1,25 @@ +diff -burN smc-1.9.orig/configure.ac smc-1.9/configure.ac +--- smc-1.9.orig/configure.ac 2013-10-23 19:11:08.635054067 +0200 ++++ smc-1.9/configure.ac 2013-10-23 19:42:29.820272295 +0200 +@@ -12,6 +12,10 @@ + ### Check for libraries ### + + # Check for the Boost Filesystem library ++AC_CHECK_LIB(boost_system, main, , ++ AC_MSG_ERROR([Unable to find Boost System library])) ++ ++# Check for the Boost Filesystem library + AC_CHECK_LIB(boost_filesystem, main, , + AC_MSG_ERROR([Unable to find Boost Filesystem library])) + +@@ -36,6 +40,10 @@ + CPPFLAGS="$CPPFLAGS $SDL_CFLAGS" + LIBS="$LIBS $SDL_LIBS" + ++# Check for the X11 library ++AC_CHECK_LIB(X11, XOpenDisplay, , ++ AC_MSG_ERROR([X11 library not found])) ++ + # Check for the libpng library + AC_CHECK_LIB(png, png_init_io, , + AC_MSG_ERROR([libpng library not found])) diff --git a/games-arcade/smc/smc-1.9.ebuild b/games-arcade/smc/smc-1.9.ebuild index 9d2bd07a9e14..5923fcb8c199 100644 --- a/games-arcade/smc/smc-1.9.ebuild +++ b/games-arcade/smc/smc-1.9.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-arcade/smc/smc-1.9.ebuild,v 1.9 2012/11/19 22:19:52 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-arcade/smc/smc-1.9.ebuild,v 1.10 2013/10/23 22:08:17 mr_bones_ Exp $ EAPI=4 -inherit eutils flag-o-matic games +inherit autotools eutils flag-o-matic games MUSIC_P=SMC_Music_4.1_high DESCRIPTION="Secret Maryo Chronicles" @@ -20,6 +20,7 @@ RDEPEND=" + + dk +- ++ + +- ++ + + + us diff --git a/games-board/pychess/pychess-0.10.1-r2.ebuild b/games-board/pychess/pychess-0.10.1-r2.ebuild new file mode 100644 index 000000000000..0e8f1cab020d --- /dev/null +++ b/games-board/pychess/pychess-0.10.1-r2.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/games-board/pychess/pychess-0.10.1-r2.ebuild,v 1.2 2013/10/22 18:30:42 hasufell Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_6 python2_7 ) +PYTHON_REQ_USE="sqlite" + +inherit fdo-mime gnome2-utils distutils-r1 games + +DESCRIPTION="A chess client for Gnome" +HOMEPAGE="http://pychess.googlepages.com/home" +SRC_URI="http://pychess.googlecode.com/files/${P/_/}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="gstreamer" + +DEPEND="dev-python/librsvg-python + dev-python/pycairo[${PYTHON_USEDEP}] + dev-python/pygobject:2[${PYTHON_USEDEP}] + dev-python/pygtk:2[${PYTHON_USEDEP}] + dev-python/pygtksourceview:2[${PYTHON_USEDEP}] + gstreamer? ( dev-python/gst-python[${PYTHON_USEDEP}] ) + dev-python/gconf-python + x11-themes/gnome-icon-theme" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/${P}-python.patch ) + +S=${WORKDIR}/${P/_/} + +python_install() { + distutils-r1_python_install --install-scripts="${GAMES_BINDIR}" + + # bug 487706 + sed -i \ + -e "s/@PYTHON@/${EPYTHON}/" \ + "${ED%/}/$(python_get_sitedir)"/${PN}/Players/engineNest.py || die +} + +python_install_all() { + distutils-r1_python_install_all + dodoc AUTHORS README + prepgamesdirs +} + +src_prepare() { + distutils-r1_src_prepare +} + +src_compile() { + distutils-r1_src_compile +} + +src_install() { + distutils-r1_src_install +} + +pkg_preinst() { + games_pkg_preinst + gnome2_icon_savelist +} + +pkg_postinst() { + games_pkg_postinst + gnome2_icon_cache_update + fdo-mime_desktop_database_update +} + +pkg_postrm() { + gnome2_icon_cache_update + fdo-mime_desktop_database_update +} diff --git a/gnome-base/gnome-core-apps/gnome-core-apps-3.8.0.ebuild b/gnome-base/gnome-core-apps/gnome-core-apps-3.8.0.ebuild index fe86f6513ed2..bbe84e15465a 100644 --- a/gnome-base/gnome-core-apps/gnome-core-apps-3.8.0.ebuild +++ b/gnome-base/gnome-core-apps/gnome-core-apps-3.8.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-core-apps/gnome-core-apps-3.8.0.ebuild,v 1.3 2013/09/01 17:35:34 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-core-apps/gnome-core-apps-3.8.0.ebuild,v 1.4 2013/10/23 06:26:40 pacho Exp $ EAPI="5" @@ -8,7 +8,7 @@ DESCRIPTION="Sub-meta package for the core applications integrated with GNOME 3" HOMEPAGE="http://www.gnome.org/" LICENSE="metapackage" SLOT="3.0" -IUSE="+bluetooth +cdr cups +networkmanager" +IUSE="+bluetooth +cdr cups" # when unmasking for an arch # double check none of the deps are still masked ! @@ -49,7 +49,6 @@ RDEPEND=" bluetooth? ( >=net-wireless/gnome-bluetooth-${PV} ) cdr? ( >=app-cdr/brasero-${PV} ) - networkmanager? ( >=gnome-extra/nm-applet-0.9.8.0[bluetooth?] ) !gnome-base/gnome-applets " diff --git a/java-virtuals/ejb-api/Manifest b/java-virtuals/ejb-api/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/java-virtuals/ejb-api/ejb-api-0.ebuild b/java-virtuals/ejb-api/ejb-api-0.ebuild new file mode 100644 index 000000000000..7a68b6c19795 --- /dev/null +++ b/java-virtuals/ejb-api/ejb-api-0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/java-virtuals/ejb-api/ejb-api-0.ebuild,v 1.1 2013/10/23 17:49:48 tomwij Exp $ + +EAPI="5" + +inherit java-virtuals-2 + +DESCRIPTION="Virtual for Enterprise JavaBeans API (javax.ejb)" +HOMEPAGE="http://www.gentoo.org" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="" +RDEPEND="dev-java/glassfish-ejb-api:0" + +JAVA_VIRTUAL_PROVIDES="glassfish-ejb-api" diff --git a/java-virtuals/ejb-api/metadata.xml b/java-virtuals/ejb-api/metadata.xml new file mode 100644 index 000000000000..838c00a4a448 --- /dev/null +++ b/java-virtuals/ejb-api/metadata.xml @@ -0,0 +1,5 @@ + + + +java + diff --git a/java-virtuals/interceptor-api/Manifest b/java-virtuals/interceptor-api/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/java-virtuals/interceptor-api/interceptor-api-0.ebuild b/java-virtuals/interceptor-api/interceptor-api-0.ebuild new file mode 100644 index 000000000000..549a0323f104 --- /dev/null +++ b/java-virtuals/interceptor-api/interceptor-api-0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/java-virtuals/interceptor-api/interceptor-api-0.ebuild,v 1.1 2013/10/23 18:04:48 tomwij Exp $ + +EAPI="5" + +inherit java-virtuals-2 + +DESCRIPTION="Virtual for Interceptor API (javax.interceptor)" +HOMEPAGE="http://www.gentoo.org" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="" +RDEPEND="dev-java/glassfish-interceptor-api:0" + +JAVA_VIRTUAL_PROVIDES="glassfish-interceptor-api" diff --git a/java-virtuals/interceptor-api/metadata.xml b/java-virtuals/interceptor-api/metadata.xml new file mode 100644 index 000000000000..838c00a4a448 --- /dev/null +++ b/java-virtuals/interceptor-api/metadata.xml @@ -0,0 +1,5 @@ + + + +java + diff --git a/java-virtuals/xmlrpc-api/Manifest b/java-virtuals/xmlrpc-api/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/java-virtuals/xmlrpc-api/metadata.xml b/java-virtuals/xmlrpc-api/metadata.xml new file mode 100644 index 000000000000..838c00a4a448 --- /dev/null +++ b/java-virtuals/xmlrpc-api/metadata.xml @@ -0,0 +1,5 @@ + + + +java + diff --git a/java-virtuals/xmlrpc-api/xmlrpc-api-0.ebuild b/java-virtuals/xmlrpc-api/xmlrpc-api-0.ebuild new file mode 100644 index 000000000000..4151f351a575 --- /dev/null +++ b/java-virtuals/xmlrpc-api/xmlrpc-api-0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/java-virtuals/xmlrpc-api/xmlrpc-api-0.ebuild,v 1.1 2013/10/23 17:48:17 tomwij Exp $ + +EAPI="5" + +inherit java-virtuals-2 + +DESCRIPTION="Virtual for XML RPC API (javax.xml.rpc)" +HOMEPAGE="http://www.gentoo.org" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND="" +RDEPEND="dev-java/glassfish-xmlrpc-api:0" + +JAVA_VIRTUAL_PROVIDES="glassfish-xmlrpc-api" diff --git a/kde-base/kdepim-runtime/files/kdepim-runtime-4.11.2-flags.patch b/kde-base/kdepim-runtime/files/kdepim-runtime-4.11.2-flags.patch new file mode 100644 index 000000000000..b6ca2df2d529 --- /dev/null +++ b/kde-base/kdepim-runtime/files/kdepim-runtime-4.11.2-flags.patch @@ -0,0 +1,154 @@ +commit c561149538336804f212f5a12ea6cf3d1a3a19f5 +Author: Andre Woebbeking +Date: Fri Sep 27 22:19:42 2013 +0200 + + Don't bother IMAP servers with not supported flags + + Created a new method ResourceTask::fromAkonadiToSupportedImapFlags() to convert + Akonadi to IMAP flags supported by the server and use it everywhere instead of + fromAkonadiFlags(). + + fromAkonadiFlags() was made private to make it impossible to call it by accident. + + BUG:278082 + FIXED-IN: 4.11.3 + REVIEW:112724 + + CCBUG:287356 + + This also reduces the risk to trigger 287356 as the insert on the IMAP server + doesn't fail due to unsupported IMAP flags. + +diff --git a/resources/imap/additemtask.cpp b/resources/imap/additemtask.cpp +index da965a1..af427ff 100644 +--- a/resources/imap/additemtask.cpp ++++ b/resources/imap/additemtask.cpp +@@ -64,7 +64,7 @@ void AddItemTask::doStart( KIMAP::Session *session ) + KIMAP::AppendJob *job = new KIMAP::AppendJob( session ); + job->setMailBox( mailBox ); + job->setContent( msg->encodedContent( true ) ); +- job->setFlags( fromAkonadiFlags( item().flags().toList() ) ); ++ job->setFlags( fromAkonadiToSupportedImapFlags( item().flags().toList() ) ); + connect( job, SIGNAL(result(KJob*)), SLOT(onAppendMessageDone(KJob*)) ); + job->start(); + } +diff --git a/resources/imap/changeitemsflagstask.cpp b/resources/imap/changeitemsflagstask.cpp +index 1c7f415..d7eb183 100644 +--- a/resources/imap/changeitemsflagstask.cpp ++++ b/resources/imap/changeitemsflagstask.cpp +@@ -91,7 +91,7 @@ KIMAP::StoreJob* ChangeItemsFlagsTask::prepareJob( KIMAP::Session *session ) + void ChangeItemsFlagsTask::triggerAppendFlagsJob(KIMAP::Session* session) + { + KIMAP::StoreJob *store = prepareJob( session ); +- store->setFlags( fromAkonadiFlags( addedFlags().toList() ) ); ++ store->setFlags( fromAkonadiToSupportedImapFlags( addedFlags().toList() ) ); + store->setMode( KIMAP::StoreJob::AppendFlags ); + connect( store, SIGNAL(result(KJob*)), SLOT(onAppendFlagsDone(KJob*)) ); + store->start(); +@@ -100,7 +100,7 @@ void ChangeItemsFlagsTask::triggerAppendFlagsJob(KIMAP::Session* session) + void ChangeItemsFlagsTask::triggerRemoveFlagsJob(KIMAP::Session* session) + { + KIMAP::StoreJob *store = prepareJob( session ); +- store->setFlags( fromAkonadiFlags( removedFlags().toList() ) ); ++ store->setFlags( fromAkonadiToSupportedImapFlags( removedFlags().toList() ) ); + store->setMode( KIMAP::StoreJob::RemoveFlags ); + connect( store, SIGNAL(result(KJob*)), SLOT(onRemoveFlagsDone(KJob*)) ); + store->start(); +diff --git a/resources/imap/changeitemtask.cpp b/resources/imap/changeitemtask.cpp +index 1a5e969..242e202 100644 +--- a/resources/imap/changeitemtask.cpp ++++ b/resources/imap/changeitemtask.cpp +@@ -34,7 +34,6 @@ + + #include "imapflags.h" + #include "uidnextattribute.h" +-#include "collectionflagsattribute.h" + + ChangeItemTask::ChangeItemTask( ResourceStateInterface::Ptr resource, QObject *parent ) + : ResourceTask( DeferIfNoSession, resource, parent ), m_session( 0 ), m_oldUid( 0 ), m_newUid( 0 ) +@@ -67,7 +66,7 @@ void ChangeItemTask::doStart( KIMAP::Session *session ) + + job->setMailBox( mailBox ); + job->setContent( msg->encodedContent( true ) ); +- job->setFlags( fromAkonadiFlags( item().flags().toList() ) ); ++ job->setFlags( fromAkonadiToSupportedImapFlags( item().flags().toList() ) ); + + connect( job, SIGNAL(result(KJob*)), + this, SLOT(onAppendMessageDone(KJob*)) ); +@@ -105,19 +104,7 @@ void ChangeItemTask::onPreStoreSelectDone( KJob *job ) + + void ChangeItemTask::triggerStoreJob() + { +- QList flags = fromAkonadiFlags( item().flags().toList() ); +- Akonadi::CollectionFlagsAttribute *flagAttr = item().parentCollection().attribute(); +- // the server does not support arbitrary flags, so filter out those it can't handle +- if ( flagAttr && !flagAttr->flags().isEmpty() && !flagAttr->flags().contains( "\\*" ) ) { +- for ( QList< QByteArray >::iterator it = flags.begin(); it != flags.end(); ) { +- if ( flagAttr->flags().contains( *it ) ) { +- ++it; +- } else { +- kDebug() << "Server does not support flag" << *it; +- it = flags.erase( it ); +- } +- } +- } ++ QList flags = fromAkonadiToSupportedImapFlags( item().flags().toList() ); + + KIMAP::StoreJob *store = new KIMAP::StoreJob( m_session ); + +diff --git a/resources/imap/resourcetask.cpp b/resources/imap/resourcetask.cpp +index a41e884..1de07f3 100644 +--- a/resources/imap/resourcetask.cpp ++++ b/resources/imap/resourcetask.cpp +@@ -25,6 +25,7 @@ + + #include + ++#include "collectionflagsattribute.h" + #include "imapflags.h" + #include "sessionpool.h" + #include "resourcestateinterface.h" +@@ -347,6 +348,26 @@ void ResourceTask::showInformationDialog( const QString &message, const QString + m_resource->showInformationDialog( message, title, dontShowAgainName ); + } + ++QList ResourceTask::fromAkonadiToSupportedImapFlags( const QList &flags ) const ++{ ++ QList imapFlags = fromAkonadiFlags( flags ); ++ ++ const Akonadi::CollectionFlagsAttribute *flagAttr = collection().attribute(); ++ // the server does not support arbitrary flags, so filter out those it can't handle ++ if ( flagAttr && !flagAttr->flags().isEmpty() && !flagAttr->flags().contains( "\\*" ) ) { ++ for ( QList< QByteArray >::iterator it = imapFlags.begin(); it != imapFlags.end(); ) { ++ if ( flagAttr->flags().contains( *it ) ) { ++ ++it; ++ } else { ++ kDebug() << "Server does not support flag" << *it; ++ it = imapFlags.erase( it ); ++ } ++ } ++ } ++ ++ return imapFlags; ++} ++ + QList ResourceTask::fromAkonadiFlags( const QList &flags ) + { + QList newFlags; +diff --git a/resources/imap/resourcetask.h b/resources/imap/resourcetask.h +index f2bfed0..69c1a64 100644 +--- a/resources/imap/resourcetask.h ++++ b/resources/imap/resourcetask.h +@@ -125,7 +125,12 @@ protected: + const QChar separatorCharacter() const; + void setSeparatorCharacter( const QChar &separator ); + ++ QList fromAkonadiToSupportedImapFlags( const QList &flags ) const; ++ + static QList toAkonadiFlags( const QList &flags ); ++ ++private: ++ + static QList fromAkonadiFlags( const QList &flags ); + + private slots: diff --git a/kde-base/kdepim-runtime/kdepim-runtime-4.11.2.ebuild b/kde-base/kdepim-runtime/kdepim-runtime-4.11.2-r1.ebuild similarity index 91% rename from kde-base/kdepim-runtime/kdepim-runtime-4.11.2.ebuild rename to kde-base/kdepim-runtime/kdepim-runtime-4.11.2-r1.ebuild index 7e32c2b60cb3..f2baecbd96e6 100644 --- a/kde-base/kdepim-runtime/kdepim-runtime-4.11.2.ebuild +++ b/kde-base/kdepim-runtime/kdepim-runtime-4.11.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-runtime/kdepim-runtime-4.11.2.ebuild,v 1.1 2013/10/09 23:03:53 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdepim-runtime/kdepim-runtime-4.11.2-r1.ebuild,v 1.1 2013/10/22 21:13:54 dilfridge Exp $ EAPI=5 @@ -33,6 +33,8 @@ RDEPEND="${DEPEND} !kde-misc/akonadi-facebook " +PATCHES=( "${FILESDIR}/${P}-flags.patch" ) + src_configure() { local mycmakeargs=( $(cmake-utils_use_find_package facebook LibKFbAPI) diff --git a/kde-base/libplasmaclock/libplasmaclock-4.11.2.ebuild b/kde-base/libplasmaclock/libplasmaclock-4.11.2.ebuild index 30ac9b6a8fd1..8b97bc326e3b 100644 --- a/kde-base/libplasmaclock/libplasmaclock-4.11.2.ebuild +++ b/kde-base/libplasmaclock/libplasmaclock-4.11.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/libplasmaclock/libplasmaclock-4.11.2.ebuild,v 1.1 2013/10/09 23:04:01 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/libplasmaclock/libplasmaclock-4.11.2.ebuild,v 1.2 2013/10/23 21:06:12 johu Exp $ EAPI=5 @@ -9,11 +9,12 @@ KMMODULE="libs/plasmaclock" inherit kde4-meta DESCRIPTION="Libraries for KDE Plasma's clocks" -KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" -IUSE="debug" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +IUSE="debug semantic-desktop" DEPEND=" $(add_kdebase_dep kephal) + semantic-desktop? ( $(add_kdebase_dep kdepimlibs) ) " RDEPEND="${DEPEND}" @@ -22,3 +23,11 @@ KMSAVELIBS="true" KMEXTRACTONLY=" libs/kephal/ " + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_with semantic-desktop KdepimLibs) + ) + + kde4-meta_src_configure +} diff --git a/kde-base/plasma-workspace/plasma-workspace-4.11.2-r1.ebuild b/kde-base/plasma-workspace/plasma-workspace-4.11.2-r1.ebuild index 6b86db30d878..366dff5da5ab 100644 --- a/kde-base/plasma-workspace/plasma-workspace-4.11.2-r1.ebuild +++ b/kde-base/plasma-workspace/plasma-workspace-4.11.2-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-base/plasma-workspace/plasma-workspace-4.11.2-r1.ebuild,v 1.1 2013/10/09 23:04:36 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/plasma-workspace/plasma-workspace-4.11.2-r1.ebuild,v 1.2 2013/10/23 21:11:41 johu Exp $ EAPI=5 @@ -13,7 +13,7 @@ OPENGL_REQUIRED="always" inherit python-single-r1 kde4-meta DESCRIPTION="Plasma: KDE desktop framework" -KEYWORDS=" ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" IUSE="debug gps json python qalculate semantic-desktop" REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )" @@ -24,11 +24,10 @@ COMMONDEPEND=" !kde-misc/ktouchpadenabler $(add_kdebase_dep kactivities) $(add_kdebase_dep kdelibs 'semantic-desktop?') - $(add_kdebase_dep kdepimlibs) $(add_kdebase_dep kephal) $(add_kdebase_dep ksysguard) $(add_kdebase_dep libkworkspace) - $(add_kdebase_dep libplasmaclock) + $(add_kdebase_dep libplasmaclock 'semantic-desktop?') $(add_kdebase_dep libplasmagenericshell) $(add_kdebase_dep libtaskmanager) x11-libs/libX11 @@ -48,6 +47,7 @@ COMMONDEPEND=" qalculate? ( sci-libs/libqalculate ) semantic-desktop? ( dev-libs/soprano + $(add_kdebase_dep kdepimlibs) $(add_kdebase_dep nepomuk-core) ) " @@ -108,6 +108,7 @@ src_configure() { $(cmake-utils_use_with python PythonLibrary) $(cmake-utils_use_with qalculate) $(cmake-utils_use_with semantic-desktop Akonadi) + $(cmake-utils_use_with semantic-desktop KdepimLibs) $(cmake-utils_use_with semantic-desktop NepomukCore) $(cmake-utils_use_with semantic-desktop Soprano) -DWITH_Xmms=OFF diff --git a/kde-misc/akonadi-git-resource/Manifest b/kde-misc/akonadi-git-resource/Manifest index a55ae4acf5cf..0da4e0a09d56 100644 --- a/kde-misc/akonadi-git-resource/Manifest +++ b/kde-misc/akonadi-git-resource/Manifest @@ -1,2 +1 @@ -DIST akonadi-git-resource-0_p20120222.tar.xz 10256 SHA256 8f531d1742675a9c9e8c5c38cb021bd80d17009798269b584db88f29151ddae0 -DIST akonadi-git-resource-0_p20130522.tar.xz 10908 SHA256 0ce0495ae5664f48d63a77965e413fef98e2ba77ee6e6c050cb615a67e39acf6 SHA512 4137eaf49b48a8f4d3fa90a0287f31f09396231abc5d08ea8d620781822b6bf8f64631d7ed5c9a797950c1874b68b03a28ef3fb9c23404445430491c9ffdd678 WHIRLPOOL 30e4561db78d74b5ca4be11e224a2bef7edc065817bab83522ba8c3607df1c3d0013a828c3ff9f6a03e94005e6ab53a6d10818cab2d1c076e4a1c3f96c19618c +DIST akonadi-git-resource-0_p20131023.tar.xz 10928 SHA256 549b9ce173554670d7a2105df693c9c2841657c429f5dd992c0cff33b6afe319 SHA512 82de7d331bba16aa5ecb9d8f7c3e81d70cabfd2ff01dbd5f4c4c640b078daf643deacf3c375f80fc27889e8a3e92f083af88ae0bb2b530718b5ecf403239830a WHIRLPOOL cca130da2288abfb5936bcab4cca6f7ab6bbbb5558cf016fccdc6f3eaadd492e9d7898440c2f182e4085036833797b8c92713b15d361d2103a2bb2050274a573 diff --git a/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20120222.ebuild b/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20120222.ebuild deleted file mode 100644 index 0e6ba36bc2b2..000000000000 --- a/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20120222.ebuild +++ /dev/null @@ -1,25 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20120222.ebuild,v 1.2 2013/05/30 11:39:16 kensington Exp $ - -EAPI=4 - -KDE_SCM="git" -inherit kde4-base - -DESCRIPTION="Git commit integration in Akonadi" -HOMEPAGE="https://projects.kde.org/projects/playground/pim/akonadi-git-resource" -LICENSE="GPL-2" - -SRC_URI="http://dev.gentoo.org/~johu/distfiles/${P}.tar.xz" - -SLOT="4" -KEYWORDS="~amd64 ~x86" -IUSE="debug" - -DEPEND=" - $(add_kdebase_dep kdepimlibs 'semantic-desktop(+)') - =dev-libs/libgit2-0.16* -" - -S=${WORKDIR} diff --git a/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20130522.ebuild b/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20131023.ebuild similarity index 74% rename from kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20130522.ebuild rename to kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20131023.ebuild index 0bfcaa5e2ea5..75940270a2ae 100644 --- a/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20130522.ebuild +++ b/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20131023.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20130522.ebuild,v 1.2 2013/05/30 11:39:16 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/akonadi-git-resource/akonadi-git-resource-0_p20131023.ebuild,v 1.1 2013/10/23 18:44:26 johu Exp $ EAPI=5 @@ -17,6 +17,6 @@ KEYWORDS="~amd64 ~x86" IUSE="debug" DEPEND=" - $(add_kdebase_dep kdepimlibs 'semantic-desktop(+)') - =dev-libs/libgit2-0.17* + $(add_kdebase_dep kdepimlibs) + >=dev-libs/libgit2-0.17 " diff --git a/kde-misc/plasma-nm/files/plasma-nm-0.9.3.1-vpn.patch b/kde-misc/plasma-nm/files/plasma-nm-0.9.3.1-vpn.patch new file mode 100644 index 000000000000..d98448d7ae50 --- /dev/null +++ b/kde-misc/plasma-nm/files/plasma-nm-0.9.3.1-vpn.patch @@ -0,0 +1,322 @@ +diff --git a/applet/declarative/contents/ui/main.qml b/applet/declarative/contents/ui/main.qml +index 8ea88cc..aa81707 100644 +--- a/applet/declarative/contents/ui/main.qml ++++ b/applet/declarative/contents/ui/main.qml +@@ -19,6 +19,7 @@ + */ + + import QtQuick 1.1 ++import org.kde.plasma.extras 0.1 as PlasmaExtras + import org.kde.plasma.components 0.1 as PlasmaComponents + import org.kde.plasma.core 0.1 as PlasmaCore + import org.kde.networkmanagement 0.1 as PlasmaNM +@@ -77,16 +78,7 @@ Item { + anchors.fill: parent + } + +- ListView { +- id: connectionView; +- +- property bool expandedItem: false; +- property string previouslyExpandedItem: ""; +- +- property bool activeExpanded: true; +- property bool previousExpanded: true; +- property bool unknownExpanded: true; +- ++ PlasmaExtras.ScrollArea { + anchors { + left: parent.left; + right: parent.right; +@@ -95,50 +87,64 @@ Item { + topMargin: padding.margins.top; + bottomMargin: padding.margins.bottom + } +- clip: true +- model: connectionSortModel; +- currentIndex: -1; +- interactive: true; +- boundsBehavior: Flickable.StopAtBounds; +- section.property: "itemSection"; +- section.delegate: SectionHeader { +- onHideSection: { +- if (section == i18n("Active connections")) { +- connectionView.activeExpanded = false; +- } else if (section == i18n("Previous connections")) { +- connectionView.previousExpanded = false; +- } else { +- connectionView.unknownExpanded = false; ++ ++ ListView { ++ id: connectionView; ++ ++ property bool expandedItem: false; ++ property string previouslyExpandedItem: ""; ++ ++ property bool activeExpanded: true; ++ property bool previousExpanded: true; ++ property bool unknownExpanded: true; ++ ++ anchors.fill: parent; ++ ++ clip: true ++ model: connectionSortModel; ++ currentIndex: -1; ++ interactive: true; ++ boundsBehavior: Flickable.StopAtBounds; ++ section.property: "itemSection"; ++ section.delegate: SectionHeader { ++ onHideSection: { ++ if (section == i18n("Active connections")) { ++ connectionView.activeExpanded = false; ++ } else if (section == i18n("Previous connections")) { ++ connectionView.previousExpanded = false; ++ } else { ++ connectionView.unknownExpanded = false; ++ } + } +- } + +- onShowSection: { +- if (section == i18n("Active connections")) { +- connectionView.activeExpanded = true; +- } else if (section == i18n("Previous connections")) { +- connectionView.previousExpanded = true; +- } else { +- connectionView.unknownExpanded = true; ++ onShowSection: { ++ if (section == i18n("Active connections")) { ++ connectionView.activeExpanded = true; ++ } else if (section == i18n("Previous connections")) { ++ connectionView.previousExpanded = true; ++ } else { ++ connectionView.unknownExpanded = true; ++ } + } + } +- } + +- delegate: ConnectionItem { +- expanded: connectionView.expandedItem && connectionView.previouslyExpandedItem == itemUni; +- onItemExpanded: { +- if (itemExpanded) { +- connectionView.expandedItem = true; +- connectionView.previouslyExpandedItem = itemUni;; +- connectionView.currentIndex = index; +- } else { +- connectionView.expandedItem = false; +- connectionView.previouslyExpandedItem = ""; ++ delegate: ConnectionItem { ++ expanded: connectionView.expandedItem && connectionView.previouslyExpandedItem == itemUni; ++ onItemExpanded: { ++ if (itemExpanded) { ++ connectionView.expandedItem = true; ++ connectionView.previouslyExpandedItem = itemUni;; ++ connectionView.currentIndex = index; ++ } else { ++ connectionView.expandedItem = false; ++ connectionView.previouslyExpandedItem = ""; ++ } + } +- } + +- ListView.onRemove: { +- if (ListView.isCurrentItem) { +- connectionView.previouslyExpandedItem = ""; ++ ListView.onRemove: { ++ if (ListView.isCurrentItem) { ++ connectionView.previouslyExpandedItem = ""; ++ } + } + } + } +diff --git a/declarative-plugins/applet/connectionicon.cpp b/declarative-plugins/applet/connectionicon.cpp +index c3f8540..76bdca0 100644 +--- a/declarative-plugins/applet/connectionicon.cpp ++++ b/declarative-plugins/applet/connectionicon.cpp +@@ -166,12 +166,24 @@ void ConnectionIcon::setIcons() + + foreach (const NetworkManager::ActiveConnection::Ptr & active, actives) { + if (((active->default4() || active->default6()) && active->state() == NetworkManager::ActiveConnection::Activated) || !defaultRouteExists) { ++ NetworkManager::ActiveConnection::Ptr activeConnection; ++ if (active->vpn()) { ++ NetworkManager::ActiveConnection::Ptr activeTmp; ++ activeTmp = NetworkManager::findActiveConnection(active->specificObject()); ++ if (activeTmp) { ++ activeConnection = activeTmp; ++ } + +- if (active->vpn() || active->devices().isEmpty()) { ++ vpnFound = true; ++ NMAppletDebug() << "Emit signal setHoverIcon(object-locked)"; ++ Q_EMIT setHoverIcon("object-locked"); ++ } else { ++ activeConnection = active; ++ } ++ if (activeConnection->devices().isEmpty()) { + continue; + } +- +- NetworkManager::Device::Ptr device = NetworkManager::findNetworkInterface(active->devices().first()); ++ NetworkManager::Device::Ptr device = NetworkManager::findNetworkInterface(activeConnection->devices().first()); + if (device) { + NetworkManager::Device::Type type = device->type(); + +@@ -184,7 +196,7 @@ void ConnectionIcon::setIcons() + setWirelessIconForSignalStrength(100); + connectionFound = true; + } else { +- NetworkManager::AccessPoint::Ptr ap = wifiDevice->findAccessPoint(active->specificObject()); ++ NetworkManager::AccessPoint::Ptr ap = wifiDevice->findAccessPoint(activeConnection->specificObject()); + if (ap) { + setWirelessIcon(device, ap->ssid()); + connectionFound = true; +@@ -222,9 +234,7 @@ void ConnectionIcon::setIcons() + } + } + } +- } +- +- if (active->vpn() && active->state() == NetworkManager::ActiveConnection::Activated) { ++ } else if (active->vpn() && active->state() == NetworkManager::ActiveConnection::Activated) { + vpnFound = true; + NMAppletDebug() << "Emit signal setHoverIcon(object-locked)"; + Q_EMIT setHoverIcon("object-locked"); +diff --git a/declarative-plugins/applet/networkstatus.cpp b/declarative-plugins/applet/networkstatus.cpp +index d63066d..8149da9 100644 +--- a/declarative-plugins/applet/networkstatus.cpp ++++ b/declarative-plugins/applet/networkstatus.cpp +@@ -129,8 +129,8 @@ void NetworkStatus::changeTooltip() + } + + QString tooltip = ""; +- QString format = "%1 - %2
%3

"; +- QString formatDefault = "%1 - %2
%3

"; ++ const QString format = "%1 - %2
%3

"; ++ const QString formatDefault = "%1 - %2
%3

"; + + foreach (const NetworkManager::ActiveConnection::Ptr & active, NetworkManager::activeConnections()) { + if (!active->devices().isEmpty()) { +@@ -145,7 +145,6 @@ void NetworkStatus::changeTooltip() + } else { + devName = device->ipInterfaceName(); + } +-// conType = NetworkManager::ConnectionSettings::typeAsString(active->connection()->settings()->connectionType()); + if (active->vpn()) { + conType = i18n("VPN Connection"); + } else { +diff --git a/declarative-plugins/model/model.cpp b/declarative-plugins/model/model.cpp +index 1b3f4c3..bb88362 100644 +--- a/declarative-plugins/model/model.cpp ++++ b/declarative-plugins/model/model.cpp +@@ -230,7 +230,7 @@ void Model::addConnection(const QString& connection, const QString& device) + { + NetworkManager::Connection::Ptr con = NetworkManager::findConnection(connection); + +- if (con->settings()->isSlave()) { ++ if (con->settings()->isSlave() || con->name().isEmpty() || con->uuid().isEmpty()) { + return; + } + +@@ -395,7 +395,11 @@ void Model::removeWirelessNetwork(const QString& ssid, const QString& device) + if (wirelessDevice) { + accessPoint = wirelessDevice->findAccessPoint(item->specificPath()); + } +- if (accessPoint && accessPoint->mode() == NetworkManager::AccessPoint::Adhoc && ++ ++ // When accesspoint in ad-hoc mode dissapears, we should remove the item only when there is no connection. Similar case is when ++ // a wireless device is in AP mode, but in this case there could be only one visible AP and this should always be associated with some connection. ++ if (accessPoint && ((accessPoint->mode() == NetworkManager::AccessPoint::Adhoc && !item->connectionPath().isEmpty()) || ++ wirelessDevice->mode() == NetworkManager::WirelessDevice::ApMode) && + NetworkManager::isWirelessEnabled() && NetworkManager::isWirelessHardwareEnabled()) { + item->setWirelessNetwork(QString()); + if (updateItem(item)) { +diff --git a/declarative-plugins/model/modelitem.cpp b/declarative-plugins/model/modelitem.cpp +index 9a5931f..58d5c42 100644 +--- a/declarative-plugins/model/modelitem.cpp ++++ b/declarative-plugins/model/modelitem.cpp +@@ -151,6 +151,17 @@ QString ModelItem::icon() const + break; + case NetworkManager::ConnectionSettings::Wireless: + if (m_signal == 0 ) { ++ if (!m_connectionPath.isEmpty()) { ++ NetworkManager::Connection::Ptr con = NetworkManager::findConnection(m_connectionPath); ++ if (con) { ++ NetworkManager::WirelessSetting::Ptr wirelessSetting; ++ wirelessSetting = con->settings()->setting(NetworkManager::Setting::Wireless).dynamicCast(); ++ if (wirelessSetting && (wirelessSetting->mode() == NetworkManager::WirelessSetting::Adhoc || ++ wirelessSetting->mode() == NetworkManager::WirelessSetting::Ap)) { ++ return "network-wireless-100"; ++ } ++ } ++ } + return "network-wireless-00"; + } else if (m_signal < 20) { + return "network-wireless-20"; +diff --git a/kded/bluetoothmonitor.cpp b/kded/bluetoothmonitor.cpp +index 2221d09..5d0218b 100644 +--- a/kded/bluetoothmonitor.cpp ++++ b/kded/bluetoothmonitor.cpp +@@ -220,6 +220,7 @@ void BluetoothMonitor::init() + + mDunDevice = reply.value(); + } ++ + #if WITH_MODEMMANAGER_SUPPORT + void BluetoothMonitor::modemAdded(const QString &udi) + { +diff --git a/lib/editor/bridgewidget.cpp b/lib/editor/bridgewidget.cpp +index 8815eb2..95344c4 100644 +--- a/lib/editor/bridgewidget.cpp ++++ b/lib/editor/bridgewidget.cpp +@@ -216,5 +216,5 @@ void BridgeWidget::populateBridges() + + bool BridgeWidget::isValid() const + { +- return !m_ui->ifaceName->text().isEmpty() && m_ui->bridges->count() > 0; ++ return !m_ui->ifaceName->text().isEmpty(); + } +diff --git a/vpn/vpnc/vpnc.cpp b/vpn/vpnc/vpnc.cpp +index d4a511d..645249d 100644 +--- a/vpn/vpnc/vpnc.cpp ++++ b/vpn/vpnc/vpnc.cpp +@@ -145,7 +145,6 @@ NMVariantMapMap VpncUiPlugin::importConnectionSettings(const QString &fileName) + KConfigGroup cg(config, "main"); // Keys&Values are stored under [main] + if (cg.exists()) { + // Setup cisco-decrypt binary to decrypt the passwords +- QStringList decrArgs; + const QString ciscoDecryptBinary = KStandardDirs::findExe("cisco-decrypt", QString::fromLocal8Bit(qgetenv("PATH")) + ":/usr/lib/vpnc"); + if (ciscoDecryptBinary.isEmpty()) { + mErrorMessage = i18n("Needed executable cisco-decrypt could not be found."); +@@ -174,11 +173,11 @@ NMVariantMapMap VpncUiPlugin::importConnectionSettings(const QString &fileName) + } + else if (!decrPlugin->readStringKeyValue(cg,"enc_UserPassword").isEmpty() && !ciscoDecryptBinary.isEmpty()) { + // Decrypt the password and insert into map +- decrArgs.clear(); +- decrArgs << decrPlugin->readStringKeyValue(cg,"enc_UserPassword"); +- decrPlugin->ciscoDecrypt->setProgram(ciscoDecryptBinary, decrArgs); ++ decrPlugin->ciscoDecrypt->setProgram(ciscoDecryptBinary); + decrPlugin->ciscoDecrypt->start(); +- if (decrPlugin->ciscoDecrypt->waitForStarted() && decrPlugin->ciscoDecrypt->waitForFinished()) { ++ decrPlugin->ciscoDecrypt->waitForStarted(); ++ decrPlugin->ciscoDecrypt->write(decrPlugin->readStringKeyValue(cg,"enc_UserPassword").toUtf8()); ++ if (decrPlugin->ciscoDecrypt->waitForFinished()) { + secretData.insert(NM_VPNC_KEY_XAUTH_PASSWORD, decrPlugin->decryptedPasswd); + } + } +@@ -203,11 +202,11 @@ NMVariantMapMap VpncUiPlugin::importConnectionSettings(const QString &fileName) + } + else if (!decrPlugin->readStringKeyValue(cg,"enc_GroupPwd").isEmpty() && !ciscoDecryptBinary.isEmpty()) { + //Decrypt the password and insert into map +- decrArgs.clear(); +- decrArgs << decrPlugin->readStringKeyValue(cg,"enc_GroupPwd"); +- decrPlugin->ciscoDecrypt->setProgram(ciscoDecryptBinary, decrArgs); ++ decrPlugin->ciscoDecrypt->setProgram(ciscoDecryptBinary); + decrPlugin->ciscoDecrypt->start(); +- if (decrPlugin->ciscoDecrypt->waitForStarted() && decrPlugin->ciscoDecrypt->waitForFinished()) { ++ decrPlugin->ciscoDecrypt->waitForStarted(); ++ decrPlugin->ciscoDecrypt->write(decrPlugin->readStringKeyValue(cg,"enc_GroupPwd").toUtf8()); ++ if (decrPlugin->ciscoDecrypt->waitForFinished()) { + secretData.insert(NM_VPNC_KEY_SECRET, decrPlugin->decryptedPasswd); + data.insert(NM_VPNC_KEY_SECRET"-flags", QString::number(NetworkManager::Setting::AgentOwned)); + } diff --git a/kde-misc/plasma-nm/plasma-nm-0.9.3.1.ebuild b/kde-misc/plasma-nm/plasma-nm-0.9.3.1-r1.ebuild similarity index 91% rename from kde-misc/plasma-nm/plasma-nm-0.9.3.1.ebuild rename to kde-misc/plasma-nm/plasma-nm-0.9.3.1-r1.ebuild index 810dbfafb596..eee176fba441 100644 --- a/kde-misc/plasma-nm/plasma-nm-0.9.3.1.ebuild +++ b/kde-misc/plasma-nm/plasma-nm-0.9.3.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/kde-misc/plasma-nm/plasma-nm-0.9.3.1.ebuild,v 1.1 2013/10/15 22:37:06 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/plasma-nm/plasma-nm-0.9.3.1-r1.ebuild,v 1.1 2013/10/23 21:43:29 johu Exp $ EAPI=5 @@ -33,6 +33,8 @@ RDEPEND="${DEPEND} !kde-misc/networkmanagement " +PATCHES=( "${FILESDIR}/${P}-vpn.patch" ) + src_configure() { local mycmakeargs=( $(cmake-utils_use !modemmanager DISABLE_MODEMMANAGER_SUPPORT) diff --git a/lxde-base/lxsession/lxsession-0.4.9.2-r1.ebuild b/lxde-base/lxsession/lxsession-0.4.9.2-r1.ebuild new file mode 100644 index 000000000000..785410a77b28 --- /dev/null +++ b/lxde-base/lxsession/lxsession-0.4.9.2-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxsession/lxsession-0.4.9.2-r1.ebuild,v 1.1 2013/10/23 09:53:44 nullishzero Exp $ + +EAPI=5 + +VALA_MIN_API_VERSION="0.14" +VALA_MAX_API_VERSION="0.20" + +inherit vala autotools eutils + +DESCRIPTION="LXDE session manager (lite version)" +HOMEPAGE="http://lxde.sf.net/" +SRC_URI="mirror://sourceforge/lxde/${P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86 ~arm-linux ~x86-linux" +SLOT="0" +# upower USE flag is enabled by default in the desktop profile +IUSE="nls upower" + +COMMON_DEPEND="dev-libs/glib:2 + dev-libs/libgee:0 + dev-libs/dbus-glib + lxde-base/lxde-common + sys-auth/polkit + x11-libs/gtk+:2 + x11-libs/libX11 + sys-apps/dbus" +RDEPEND="${COMMON_DEPEND} + !lxde-base/lxsession-edit + sys-apps/lsb-release + upower? ( sys-power/upower )" +DEPEND="${COMMON_DEPEND} + $(vala_depend) + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig + x11-proto/xproto" + +DOCS="AUTHORS ChangeLog README" + +src_prepare() { + # bug #488082 + epatch "${FILESDIR}"/${P}-makefile.patch + + eautoreconf +} + +src_configure() { + # dbus is used for restart/shutdown (CK, logind?), and suspend/hibernate (UPower) + econf \ + $(use_enable nls) +} diff --git a/lxde-base/lxsession/lxsession-0.4.9.2.ebuild b/lxde-base/lxsession/lxsession-0.4.9.2.ebuild index 4963af5fd124..b8b90aaec85a 100644 --- a/lxde-base/lxsession/lxsession-0.4.9.2.ebuild +++ b/lxde-base/lxsession/lxsession-0.4.9.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxsession/lxsession-0.4.9.2.ebuild,v 1.5 2013/10/17 20:16:22 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/lxde-base/lxsession/lxsession-0.4.9.2.ebuild,v 1.6 2013/10/23 09:45:42 nullishzero Exp $ EAPI=5 @@ -23,6 +23,7 @@ COMMON_DEPEND="dev-libs/glib:2 dev-libs/libgee:0 dev-libs/dbus-glib lxde-base/lxde-common + sys-auth/polkit x11-libs/gtk+:2 x11-libs/libX11 sys-apps/dbus" diff --git a/media-gfx/qrencode/Manifest b/media-gfx/qrencode/Manifest index 02a879de4a91..b0cd1c2ebfeb 100644 --- a/media-gfx/qrencode/Manifest +++ b/media-gfx/qrencode/Manifest @@ -1,5 +1,3 @@ DIST qrencode-3.3.0.tar.bz2 365098 SHA256 55f0803208bd952b50a56a2be880fc7a76f2d214c96fae48a929599694cbea51 SHA512 4e7ad0fda1a34c47f3b93c541e2bdcfc1f71ad911719e202e2d5590826f4107a9c3e7a5b4a23c83364577453665c83287135bc1d3f8a123c652e33691d31bbff WHIRLPOOL f58e6b8f074c2f3d25fe970b093bd566c4fe64401e21b7d8dbc284c7ca1443e529822ce04b2e9c70b9e08dd58a1360af7cda9f12012b4aafb05d697ef738e680 DIST qrencode-3.3.1.tar.bz2 365432 SHA256 7ad730379a9352051940c3be58cf4c6d548525f378551cb33e9c709c419adb9b SHA512 28eddb96264faefc3ae1e8c45961b685ee76e061f3e8d201661f572aa09661573afdb76596c3c41d6d94bd381898a8d22338c6cee3ffd3fc8fe4c78715922873 WHIRLPOOL b95c7c18b4e2e766ee43c1028c4f1255890a4d56304e3fd372733a1f908d34a5e9793f09b515e49c4f547aaf5f5aa358867f17d717d81bcd41f45cd4f28a2d3c -DIST qrencode-3.4.1.tar.bz2 375563 SHA256 8b7a5a5fc7389a5bcaec4f2ad814c2562424991ab908067d00f8e0868d2aa5f0 SHA512 5829697c5a7d137c3918dc0c0ec8505ad7fdc6deb7207d7fa8feb3856dedf1db5ec6de4a90c19a4a14f369a7cd513e15147c9b20d08bfb867a02b0eb5325d6ca WHIRLPOOL c00340ee49171d55dd2481e50ca9c8254eac4f0210656deac16d2f2602627e6a9bc1c30db67dae6a3841f0a765cf2bc5463e8d6c75f6029c5596c9b30d15c925 -DIST qrencode-3.4.2.tar.bz2 375876 SHA256 fc492a506a1460c1ce850ff6137db55cb2e3d466f4c559108aae3a96d623c1b1 SHA512 e7845c237cc76a25f67ca9b1d76431e9ae7b0f1b7711dbff3a2cd771b7a37c283249c651aafb2a7d62069a377745ce98abee651059a95c01635ebe00981de377 WHIRLPOOL 0adedff2e6cc7fa3949678a647b37a976b4679910f792e25cdc2114dc1fab95741c87cc02954c1fe7dbf02fb34302e24eaf397d68d275fcc074aa3e55f8ba2e4 DIST qrencode-3.4.3.tar.bz2 370709 SHA256 dfd71487513c871bad485806bfd1fdb304dedc84d2b01a8fb8e0940b50597a98 SHA512 eba9d6220d0d5e08da614bd05904a08e11c45b7b293c45aa8417345c3267eae8790e83d9338b6cbadbd3fe15ac4579e0fb9e4e23b4f7e1d56e5fb3729afb9cf5 WHIRLPOOL 02b60e306fc2365de0be0f02619f1e5a3dcf783024845872d23940a4b720bf8a2b89255e95898c2a7323a93c8f4210b4362b30c0fc2ff1ae90d4850f344bd675 diff --git a/media-gfx/qrencode/qrencode-3.4.1.ebuild b/media-gfx/qrencode/qrencode-3.4.1.ebuild deleted file mode 100644 index 5b1f3ebebd3a..000000000000 --- a/media-gfx/qrencode/qrencode-3.4.1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/qrencode/qrencode-3.4.1.ebuild,v 1.2 2013/02/23 17:25:45 ago Exp $ - -EAPI=4 - -AUTOTOOLS_AUTORECONF=true - -inherit autotools-utils - -DESCRIPTION="C library for encoding data in a QR Code symbol" -HOMEPAGE="http://fukuchi.org/works/qrencode/" -SRC_URI="http://fukuchi.org/works/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -IUSE="" - -RDEPEND="media-libs/libpng" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}/${PN}-3.2.0-pngregenfix.patch" ) diff --git a/media-gfx/qrencode/qrencode-3.4.2.ebuild b/media-gfx/qrencode/qrencode-3.4.2.ebuild deleted file mode 100644 index 8651043250d7..000000000000 --- a/media-gfx/qrencode/qrencode-3.4.2.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/qrencode/qrencode-3.4.2.ebuild,v 1.1 2013/03/03 19:29:36 joker Exp $ - -EAPI=4 - -AUTOTOOLS_AUTORECONF=true - -inherit autotools-utils - -DESCRIPTION="C library for encoding data in a QR Code symbol" -HOMEPAGE="http://fukuchi.org/works/qrencode/" -SRC_URI="http://fukuchi.org/works/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" -IUSE="" - -RDEPEND="media-libs/libpng" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -PATCHES=( "${FILESDIR}/${PN}-3.2.0-pngregenfix.patch" ) diff --git a/media-gfx/qrencode/qrencode-3.4.3.ebuild b/media-gfx/qrencode/qrencode-3.4.3.ebuild index e6f7e99fc457..a8d41b335105 100644 --- a/media-gfx/qrencode/qrencode-3.4.3.ebuild +++ b/media-gfx/qrencode/qrencode-3.4.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/qrencode/qrencode-3.4.3.ebuild,v 1.1 2013/08/22 13:08:09 joker Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/qrencode/qrencode-3.4.3.ebuild,v 1.2 2013/10/23 13:37:04 joker Exp $ EAPI=4 @@ -14,7 +14,7 @@ SRC_URI="http://fukuchi.org/works/${PN}/${P}.tar.bz2" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd" IUSE="" RDEPEND="media-libs/libpng" diff --git a/media-plugins/vdr-epgsearch/files/vdr-epgsearch-1.0.0_vdr-2.1.2.diff b/media-plugins/vdr-epgsearch/files/vdr-epgsearch-1.0.0_vdr-2.1.2.diff new file mode 100644 index 000000000000..5b9d657e95ec --- /dev/null +++ b/media-plugins/vdr-epgsearch/files/vdr-epgsearch-1.0.0_vdr-2.1.2.diff @@ -0,0 +1,15 @@ +diff -Naur epgsearch-1.0.0.orig/uservars.h epgsearch-1.0.0/uservars.h +--- epgsearch-1.0.0.orig/uservars.h 2013-10-23 00:54:29.000000000 +0200 ++++ epgsearch-1.0.0/uservars.h 2013-10-23 00:56:21.000000000 +0200 +@@ -537,7 +537,11 @@ + cVideodirVar() : cInternalVar("%videodir%") {} + string Evaluate(const cEvent*, bool escapeStrings = false) + { ++#if APIVERSNUM > 20101 ++ return cVideoDirectory::Name(); ++#else + return VideoDirectory; ++#endif + } + }; + diff --git a/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.0-r1.ebuild b/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.0-r1.ebuild index e0604647ba71..b2a47c2d032e 100644 --- a/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.0-r1.ebuild +++ b/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.0-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.0-r1.ebuild,v 1.5 2012/12/15 13:27:34 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-epgsearch/vdr-epgsearch-1.0.0-r1.ebuild,v 1.6 2013/10/22 23:11:52 hd_brummy Exp $ EAPI="5" @@ -50,6 +50,8 @@ src_prepare() { epatch "${FILESDIR}/${P}_vdr-1.7.33.diff" fi + epatch "${FILESDIR}/${P}_vdr-2.1.2.diff" + # disable automagic deps sed -i Makefile -e '/^AUTOCONFIG=/s/^/#/' diff --git a/media-plugins/vdr-extrecmenu/files/vdr-extrecmenu-1.2.2_vdr-2.1.2.diff b/media-plugins/vdr-extrecmenu/files/vdr-extrecmenu-1.2.2_vdr-2.1.2.diff new file mode 100644 index 000000000000..b1f4d391a44a --- /dev/null +++ b/media-plugins/vdr-extrecmenu/files/vdr-extrecmenu-1.2.2_vdr-2.1.2.diff @@ -0,0 +1,167 @@ +diff -Naur extrecmenu-1.2.2.orig/mymenueditrecording.c extrecmenu-1.2.2/mymenueditrecording.c +--- extrecmenu-1.2.2.orig/mymenueditrecording.c 2013-10-23 13:14:38.010071212 +0200 ++++ extrecmenu-1.2.2/mymenueditrecording.c 2013-10-23 13:21:12.560096164 +0200 +@@ -76,7 +76,11 @@ + + if(isdir) + { ++#if APIVERSNUM > 20101 ++ if(-1==asprintf(&oldname,"%s%s%s/%s",cVideoDirectory::Name(),tmppath?"/":"",dirbase?dirbase:"",dirname)) ++#else + if(-1==asprintf(&oldname,"%s%s%s/%s",VideoDirectory,tmppath?"/":"",dirbase?dirbase:"",dirname)) ++#endif + oldname=NULL; + } + else +@@ -84,7 +88,11 @@ + + if(oldname) + { ++#if APIVERSNUM > 20101 ++ if(-1==asprintf(&newname,"%s%s%s/%s%s",cVideoDirectory::Name(),tmppath?"/":"",tmppath?tmppath:"",tmpname,isdir?"":strrchr(recording->FileName(),'/'))) ++#else + if(-1==asprintf(&newname,"%s%s%s/%s%s",VideoDirectory,tmppath?"/":"",tmppath?tmppath:"",tmpname,isdir?"":strrchr(recording->FileName(),'/'))) ++#endif + newname=NULL; + + if(newname) +@@ -305,7 +313,11 @@ + + if(dirname) + { ++#if APIVERSNUM > 20101 ++ if(-1==asprintf(&oldname,"%s%s%s/%s",cVideoDirectory::Name(),dirbase?"/":"",tmpdirbase?tmpdirbase:"",tmpdirname)) ++#else + if(-1==asprintf(&oldname,"%s%s%s/%s",VideoDirectory,dirbase?"/":"",tmpdirbase?tmpdirbase:"",tmpdirname)) ++#endif + oldname=NULL; + } + else +@@ -357,7 +369,11 @@ + if(dir) + dir=ExchangeChars(dir,true); + ++#if APIVERSNUM > 20101 ++ if(-1==asprintf(&_newname,"%s%s%s%s",cVideoDirectory::Name(),dir?"/":"",dir?dir:"",strrchr(dirname?oldname:recording->FileName(),'/'))) ++#else + if(-1==asprintf(&_newname,"%s%s%s%s",VideoDirectory,dir?"/":"",dir?dir:"",strrchr(dirname?oldname:recording->FileName(),'/'))) ++#endif + _newname=NULL; + + if(_newname) +@@ -424,7 +440,11 @@ + { + if(!strncmp(oldname,rec->FileName(),strlen(oldname))) + { ++#if APIVERSNUM > 20101 ++ char *_buf=ExchangeChars(strdup(oldname+strlen(cVideoDirectory::Name())+1),false); ++#else + char *_buf=ExchangeChars(strdup(oldname+strlen(VideoDirectory)+1),false); ++#endif + + if(strcmp(rec->Name(),_buf)) + { +diff -Naur extrecmenu-1.2.2.orig/mymenurecordings.c extrecmenu-1.2.2/mymenurecordings.c +--- extrecmenu-1.2.2.orig/mymenurecordings.c 2013-10-23 13:14:38.010071212 +0200 ++++ extrecmenu-1.2.2/mymenurecordings.c 2013-10-23 13:27:17.916785937 +0200 +@@ -590,7 +590,11 @@ + { + if(mysetup.FileSystemFreeMB) + { ++#if APIVERSNUM > 20101 ++ string path=cVideoDirectory::Name(); ++#else + string path=VideoDirectory; ++#endif + path+="/"; + char *tmpbase=base?ExchangeChars(strdup(base),true):NULL; + if(base) +@@ -634,7 +638,11 @@ + else + { + int freemb; ++#if APIVERSNUM > 20101 ++ cVideoDirectory::VideoDiskSpace(&freemb); ++#else + VideoDiskSpace(&freemb); ++#endif + return freemb; + } + +@@ -747,7 +755,11 @@ + for(cRecording *recording=Recordings.First();recording;recording=Recordings.Next(recording)) + list->Add(new myRecListItem(recording)); + // sort my recordings list ++#if APIVERSNUM > 20101 ++ string path=cVideoDirectory::Name(); ++#else + string path=VideoDirectory; ++#endif + path+="/"; + if(base) + path+=base; +@@ -1211,7 +1223,11 @@ + { + char *strBase=base?ExchangeChars(strdup(base), true):NULL; + char *strName=ExchangeChars(strdup(item->Name()), true); ++#if APIVERSNUM > 20101 ++ if(-1==asprintf(¶meter,"\"%s/%s/%s\"",cVideoDirectory::Name(),strBase?strBase:"", strName)) ++#else + if(-1==asprintf(¶meter,"\"%s/%s/%s\"",VideoDirectory,strBase?strBase:"", strName)) ++#endif + parameter=NULL; + free(strBase); + free(strName); +@@ -1235,7 +1251,11 @@ + // change sorting + eOSState myMenuRecordings::ChangeSorting() + { ++#if APIVERSNUM > 20101 ++ string path=cVideoDirectory::Name(); ++#else + string path=VideoDirectory; ++#endif + path+="/"; + if(base) + path+=base; +diff -Naur extrecmenu-1.2.2.orig/tools.c extrecmenu-1.2.2/tools.c +--- extrecmenu-1.2.2.orig/tools.c 2013-10-23 13:14:38.010071212 +0200 ++++ extrecmenu-1.2.2/tools.c 2013-10-23 13:36:56.026822499 +0200 +@@ -152,7 +152,11 @@ + { + if(!strncmp(OldName,item->recording->FileName(),strlen(OldName))) + { ++#if APIVERSNUM > 20101 ++ buf=strdup(OldName+strlen(cVideoDirectory::Name())+1); ++#else + buf=strdup(OldName+strlen(VideoDirectory)+1); ++#endif + if(buf) + { + buf=ExchangeChars(buf,false); +@@ -240,8 +244,13 @@ + { + myRecListItem *item=(myRecListItem*)&ListObject; + ++#if APIVERSNUM > 20101 ++ char *s1=StripEpisodeName(strdup(filename+strlen(cVideoDirectory::Name()))); ++ char *s2=StripEpisodeName(strdup(item->filename+strlen(cVideoDirectory::Name()))); ++#else + char *s1=StripEpisodeName(strdup(filename+strlen(VideoDirectory))); + char *s2=StripEpisodeName(strdup(item->filename+strlen(VideoDirectory))); ++#endif + + int compare; + if(mysetup.DescendSorting) +@@ -699,7 +708,11 @@ + + isyslog("[extrecmenu] moving canceled"); + ++#if APIVERSNUM > 20101 ++ cVideoDirectory::RemoveVideoFile(To.c_str()); ++#else + RemoveVideoFile(To.c_str()); ++#endif + + return true; + } diff --git a/media-plugins/vdr-extrecmenu/vdr-extrecmenu-1.2.2-r2.ebuild b/media-plugins/vdr-extrecmenu/vdr-extrecmenu-1.2.2-r2.ebuild new file mode 100644 index 000000000000..6f5bb2dae460 --- /dev/null +++ b/media-plugins/vdr-extrecmenu/vdr-extrecmenu-1.2.2-r2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-extrecmenu/vdr-extrecmenu-1.2.2-r2.ebuild,v 1.1 2013/10/23 12:02:49 hd_brummy Exp $ + +EAPI="5" + +inherit vdr-plugin-2 + +VERSION="936" #every bump, new version + +DVDARCHIVE="dvdarchive-2.3-beta.sh" + +DESCRIPTION="Video Disk Recorder - Extended recordings menu Plugin" +HOMEPAGE="http://projects.vdr-developer.org/projects/show/plg-extrecmenu" +SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz + mirror://gentoo/${DVDARCHIVE}.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=">=media-video/vdr-1.6.0" +RDEPEND="${DEPEND}" + +src_prepare() { + + cd "${WORKDIR}" + epatch "${FILESDIR}/${DVDARCHIVE%.sh}-configfile.patch" + + cd "${S}" + if grep -q fskProtection /usr/include/vdr/timers.h; then + einfo "Enabling parentalrating option" + sed -i "s:#WITHPINPLUGIN:WITHPINPLUGIN:" Makefile + fi + + vdr-plugin-2_src_prepare + + if has_version ">=media-video/vdr-1.7.28"; then + sed -i "s:SetRecording(recording->FileName(),recording->Title:SetRecording(recording->FileName:" mymenurecordings.c + fi + + if has_version ">=media-video/vdr-1.7.32"; then + export EXTRECMENU_USE_VDR_CUTTER=1 + einfo "disabled plugin cutter" + einfo "plugin use now the vdr included cutter" + fi + + epatch "${FILESDIR}/${P}_vdr-2.1.2.diff" +} + +src_install() { + vdr-plugin-2_src_install + + cd "${WORKDIR}" + newbin ${DVDARCHIVE} dvdarchive.sh + + insinto /etc/vdr + doins "${FILESDIR}"/dvdarchive.conf +} diff --git a/media-plugins/vdr-live/files/vdr-live-0.3.0_p20130504_vdr-2.1.2.diff b/media-plugins/vdr-live/files/vdr-live-0.3.0_p20130504_vdr-2.1.2.diff new file mode 100644 index 000000000000..1346c9be611d --- /dev/null +++ b/media-plugins/vdr-live/files/vdr-live-0.3.0_p20130504_vdr-2.1.2.diff @@ -0,0 +1,69 @@ +diff -Naur vdr-live-0.3.0_p20130504.orig/pages/recordings.ecpp vdr-live-0.3.0_p20130504/pages/recordings.ecpp +--- vdr-live-0.3.0_p20130504.orig/pages/recordings.ecpp 2013-10-23 03:28:13.746493449 +0200 ++++ vdr-live-0.3.0_p20130504/pages/recordings.ecpp 2013-10-23 03:29:48.779832793 +0200 +@@ -79,7 +79,11 @@ + deletions.clear(); + + int FreeMB, UsedMB; ++#if APIVERSNUM > 20101 ++int Percent = cVideoDirectory::VideoDiskSpace(&FreeMB, &UsedMB); ++#else + int Percent = VideoDiskSpace(&FreeMB, &UsedMB); ++#endif + int Minutes = int(double(FreeMB) / MB_PER_MINUTE); + int Hours = Minutes / 60; + Minutes %= 60; +diff -Naur vdr-live-0.3.0_p20130504.orig/recman.cpp vdr-live-0.3.0_p20130504/recman.cpp +--- vdr-live-0.3.0_p20130504.orig/recman.cpp 2013-10-23 03:28:13.756493450 +0200 ++++ vdr-live-0.3.0_p20130504/recman.cpp 2013-10-23 03:31:25.813172263 +0200 +@@ -112,7 +112,11 @@ + if (found == string::npos) + return false; + ++#if APIVERSNUM > 20101 ++ string newname = string(cVideoDirectory::Name()) + "/" + name + oldname.substr(found); ++#else + string newname = string(VideoDirectory) + "/" + name + oldname.substr(found); ++#endif + + if (!MoveDirectory(oldname.c_str(), newname.c_str(), copy)) { + esyslog("[LIVE]: renaming failed from '%s' to '%s'", oldname.c_str(), newname.c_str()); +diff -Naur vdr-live-0.3.0_p20130504.orig/tools.cpp vdr-live-0.3.0_p20130504/tools.cpp +--- vdr-live-0.3.0_p20130504.orig/tools.cpp 2013-10-23 03:28:13.799826786 +0200 ++++ vdr-live-0.3.0_p20130504/tools.cpp 2013-10-23 03:34:29.146517191 +0200 +@@ -365,7 +365,11 @@ + stat(source.c_str(), &st1); + stat(target.c_str(),&st2); + if (!copy && (st1.st_dev == st2.st_dev)) { ++#if APIVERSNUM > 20101 ++ if (!cVideoDirectory::RenameVideoFile(source.c_str(), target.c_str())) { ++#else + if (!RenameVideoFile(source.c_str(), target.c_str())) { ++#endif + esyslog("[LIVE]: rename failed from %s to %s", source.c_str(), target.c_str()); + return false; + } +@@ -461,7 +465,11 @@ + size_t found = source.find_last_of(delim); + if (found != std::string::npos) { + source = source.substr(0, found); ++#if APIVERSNUM > 20101 ++ while (source != cVideoDirectory::Name()) { ++#else + while (source != VideoDirectory) { ++#endif + found = source.find_last_of(delim); + if (found == std::string::npos) + break; +@@ -478,7 +486,11 @@ + size_t found = target.find_last_of(delim); + if (found != std::string::npos) { + target = target.substr(0, found); ++#if APIVERSNUM > 20101 ++ while (target != cVideoDirectory::Name()) { ++#else + while (target != VideoDirectory) { ++#endif + found = target.find_last_of(delim); + if (found == std::string::npos) + break; diff --git a/media-plugins/vdr-live/vdr-live-0.3.0_p20130504.ebuild b/media-plugins/vdr-live/vdr-live-0.3.0_p20130504.ebuild index 161c5c727b9e..a115bdf80d40 100644 --- a/media-plugins/vdr-live/vdr-live-0.3.0_p20130504.ebuild +++ b/media-plugins/vdr-live/vdr-live-0.3.0_p20130504.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-live/vdr-live-0.3.0_p20130504.ebuild,v 1.1 2013/10/05 16:46:26 hd_brummy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-plugins/vdr-live/vdr-live-0.3.0_p20130504.ebuild,v 1.2 2013/10/23 02:11:45 hd_brummy Exp $ EAPI="5" @@ -58,6 +58,8 @@ src_prepare() { vdr-plugin-2_src_prepare + epatch "${FILESDIR}/${P}_vdr-2.1.2.diff" + if ! use pcre; then sed -i "s:^HAVE_LIBPCRECPP:#HAVE_LIBPCRECPP:" Makefile || die fi diff --git a/media-sound/tomahawk/tomahawk-9999.ebuild b/media-sound/tomahawk/tomahawk-9999.ebuild index 7a33d9280e32..592d5f913430 100644 --- a/media-sound/tomahawk/tomahawk-9999.ebuild +++ b/media-sound/tomahawk/tomahawk-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/tomahawk-9999.ebuild,v 1.20 2013/10/19 16:31:07 johu Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/tomahawk/tomahawk-9999.ebuild,v 1.21 2013/10/23 19:20:02 johu Exp $ EAPI=5 @@ -32,7 +32,7 @@ DEPEND=" >=dev-libs/libattica-0.4.0 dev-libs/qjson dev-libs/quazip - dev-libs/qtkeychain[qt5?] + dev-libs/qtkeychain >=media-libs/libechonest-2.1.0 >=media-libs/liblastfm-1.0.1 >=media-libs/phonon-4.5.0 diff --git a/media-tv/mythtv/files/mythbackend.service b/media-tv/mythtv/files/mythbackend.service new file mode 100644 index 000000000000..8db861286091 --- /dev/null +++ b/media-tv/mythtv/files/mythbackend.service @@ -0,0 +1,82 @@ +# Do not edit this file, it will be replaced on update +# If you need to make modifications to this unit file first make a copy in # /etc/systemd/system + +# This file is part of the packaging of MythTV # +# MythTV is free software; view http://www.mythtv.org for more information. +# +# It is sometimes necessary to wait for a capture device to finish (hot)plug +# initialization before the backend starts. If this is necessary, +# create a Wants and After entry for all the capture devices that +# one wishes to wait to be created before the backend starts using the systemd +# device name mangling names (/dev/some/thing turns +# into dev-some-thing.device). These normally should be udev persistent +# filename rules to avoid confusion. +# See the MythTV wiki for udev persistent filename # discussions found at: +# http://www.mythtv.org/wiki/Device_Filenames_and_udev +# +# In order to insure that systemd will create a device unit for the +# capture device, one must insure that udev will have the tag "systemd" +# (i.e. add TAG+="systemd" to the udev rule). +# +# The MythTV package ships with a default udev rule file located in: +# /lib/udev/rules.d/99-mythbackend.rules + +[Unit] +Description=MythTV backend service +After=network.target mysqld.service +# Uncomment the following line if you will be using the mythweb plugin on the +# same system as mythbackend. +#Wants=httpd.service + +[Service] +# You have 2 choices for 'Type': simple or forking +# These require ExecStart lines which are NOT interchangeable. +# Type=simple is recommended. +# If using 'Type=simple' +# 1) you cannot have --daemon in the command line + +# If using 'Type=forking' +# 1) you must have --daemon in the command line AND +# 2) you must have --pidfile /somewhere in the command line AND +# 3) you must have a line PIDFILE=/somewhere in the [service] stanza +# this lets systemd know how to find the forked process PID, +# otherwise it presumes the starting process will be the remaining process +# (cf. with the mysqld_safe process which starts mysqld and then disappears). +# Specifying a pidfile with Type simple does not cause any problems and +# may help in debugging startup failures. + +#Type=forking +Type=simple + +Environment=MYTHCONFDIR=/etc/mythtv +# Default setting assumes a system wide install. Otherwise it should be set to +# the folder containing the .mythtv subfolder containing the config.xml file +# Such as +Environment=HOME=/usr/share/mythtv +# or +Environment=HOME=/~/.mythtv + +# systemd changes execution from the calling user (possibly root) to this user +# if you have permissions problems or obscure errors try logging in as mythtv +# See notes below +User=mythtv + +# Uncomment one of the following... +# Use sysloging rather than separate logging: +#ExecStart=/usr/bin/mythbackend --syslog local7 + +# If Type=forking you must specify the --daemon and --pidfile options: +#ExecStart=/usr/bin/mythbackend --daemon --logpath /var/log/mythtv --loglevel crit --pidfile /run/mythtv/mythbackend.pid +#PIDFILE=/run/mythtv/mythbackend.pid + +# Systemd sends stdout to syslog, and mythbackend has console logging enabled without --daemon. +# Send stdout to /dev/null so console logging doesn't go to syslog +StandardOutput=null +# Default setting for Type=simple. +ExecStart=/usr/bin/mythbackend --logpath /var/log/mythtv --loglevel crit + +# Whether systemd will continue over-watch and restart on any halt +#Restart=Restart-always + +[Install] +WantedBy=multi-user.target diff --git a/media-tv/mythtv/mythtv-0.27_p20130924.ebuild b/media-tv/mythtv/mythtv-0.27_p20130924.ebuild index 3c7a37b30079..bacb342b9219 100644 --- a/media-tv/mythtv/mythtv-0.27_p20130924.ebuild +++ b/media-tv/mythtv/mythtv-0.27_p20130924.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.27_p20130924.ebuild,v 1.2 2013/10/10 16:18:21 rich0 Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-tv/mythtv/mythtv-0.27_p20130924.ebuild,v 1.4 2013/10/24 03:21:30 patrick Exp $ EAPI=5 @@ -8,7 +8,7 @@ PYTHON_DEPEND="python? 2:2.6" BACKPORTS="d9561055abeec11fba234c9bdfbde5e79e695803" MY_P=${P%_p*} -inherit flag-o-matic multilib eutils python user +inherit flag-o-matic multilib eutils python user systemd MYTHTV_VERSION="v0.27" MYTHTV_BRANCH="fixes/0.27" @@ -267,6 +267,7 @@ src_install() { newinitd "${FILESDIR}"/mythbackend.init mythbackend newconfd "${FILESDIR}"/mythbackend.conf mythbackend + systemd_dounit "${FILESDIR}"/mythbackend.service dodoc keys.txt diff --git a/metadata/dtd/timestamp.chk b/metadata/dtd/timestamp.chk index 1ed6494372fd..839641cd1f00 100644 --- a/metadata/dtd/timestamp.chk +++ b/metadata/dtd/timestamp.chk @@ -1 +1 @@ -Tue, 22 Oct 2013 17:06:58 +0000 +Thu, 24 Oct 2013 05:06:57 +0000 diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 1ed6494372fd..82464347ed8f 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Tue, 22 Oct 2013 17:06:58 +0000 +Thu, 24 Oct 2013 05:06:58 +0000 diff --git a/metadata/herds.xml b/metadata/herds.xml index 86120c8b6c2c..05d13570f1c3 100644 --- a/metadata/herds.xml +++ b/metadata/herds.xml @@ -20,7 +20,7 @@ always a description without a lang attribute. Also there are no overlapping descriptions allowed (multiple description tags with the same language) - $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1072 2013/10/19 16:13:55 pacho Exp $ + $Header: /var/cvsroot/gentoo/xml/htdocs/proj/en/metastructure/herds/herds.xml,v 1.1073 2013/10/23 04:39:16 redlizard Exp $ --> @@ -417,6 +417,10 @@ heroxbd@gentoo.org Benda XU + + redlizard@gentoo.org + Ruud Koolen + python diff --git a/metadata/md5-cache/app-accessibility/pocketsphinx-0.8 b/metadata/md5-cache/app-accessibility/pocketsphinx-0.8 index 3aebe0fc80ff..c929143f44f6 100644 --- a/metadata/md5-cache/app-accessibility/pocketsphinx-0.8 +++ b/metadata/md5-cache/app-accessibility/pocketsphinx-0.8 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=app-accessibility/sphinxbase media-libs/gstreamer:0.10 media-libs/gst-plugins-base:0.10 python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) SLOT=0 SRC_URI=mirror://sourceforge/cmusphinx/pocketsphinx-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fa272912b9f6c26a9ccd40fd183c98cd diff --git a/metadata/md5-cache/app-accessibility/sphinxbase-0.8 b/metadata/md5-cache/app-accessibility/sphinxbase-0.8 index d24f99f2e203..f179ef7b8ae7 100644 --- a/metadata/md5-cache/app-accessibility/sphinxbase-0.8 +++ b/metadata/md5-cache/app-accessibility/sphinxbase-0.8 @@ -9,5 +9,5 @@ LICENSE=BSD-2 HPND MIT RDEPEND=media-sound/pulseaudio lapack? ( virtual/lapack ) python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) SLOT=0 SRC_URI=mirror://sourceforge/cmusphinx/sphinxbase-0.8.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b133da8fea81f2bb4eaa44d92d01cdbd diff --git a/metadata/md5-cache/app-admin/ansible-1.2.1 b/metadata/md5-cache/app-admin/ansible-1.2.1 index 958e4ba7a4c8..12e5646c0896 100644 --- a/metadata/md5-cache/app-admin/ansible-1.2.1 +++ b/metadata/md5-cache/app-admin/ansible-1.2.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/ansible/ansible/archive/v1.2.1.tar.gz -> ansible-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9d2c16965f7e9bc9b625b649839a177e diff --git a/metadata/md5-cache/app-admin/ansible-1.2.3 b/metadata/md5-cache/app-admin/ansible-1.2.3 index d96b00ac69c6..d70da2d97f2b 100644 --- a/metadata/md5-cache/app-admin/ansible-1.2.3 +++ b/metadata/md5-cache/app-admin/ansible-1.2.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/ansible/ansible/archive/v1.2.3.tar.gz -> ansible-1.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4040dd20eb911ca44bef0444f5f6d1a7 diff --git a/metadata/md5-cache/app-admin/ansible-1.3.3 b/metadata/md5-cache/app-admin/ansible-1.3.3 index 8e5b86f8d539..523d5e1714c4 100644 --- a/metadata/md5-cache/app-admin/ansible-1.3.3 +++ b/metadata/md5-cache/app-admin/ansible-1.3.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/ansible/ansible/archive/v1.3.3.tar.gz -> ansible-1.3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=76de77a9ddf84fcf7670573aad52667c diff --git a/metadata/md5-cache/app-admin/ansible-9999 b/metadata/md5-cache/app-admin/ansible-9999 index 1c01fd5a0a1f..7f1a1622567e 100644 --- a/metadata/md5-cache/app-admin/ansible-9999 +++ b/metadata/md5-cache/app-admin/ansible-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/jinja dev-python/pyyaml dev-python/paramiko net-misc/sshpass virtual/ssh python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=09fc89de9bea495e02e5627cec93f3bf diff --git a/metadata/md5-cache/app-admin/clustershell-1.6 b/metadata/md5-cache/app-admin/clustershell-1.6 index e55579fdb291..e1a76a861dc9 100644 --- a/metadata/md5-cache/app-admin/clustershell-1.6 +++ b/metadata/md5-cache/app-admin/clustershell-1.6 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/openssl python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3: REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/cea-hpc/clustershell/archive/v1.6.tar.gz -> clustershell-1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ae387dc19d60d1ea25c04fff09a232c2 diff --git a/metadata/md5-cache/app-admin/denyhosts-2.6-r8 b/metadata/md5-cache/app-admin/denyhosts-2.6-r8 index 212a287d738b..86bd94302937 100644 --- a/metadata/md5-cache/app-admin/denyhosts-2.6-r8 +++ b/metadata/md5-cache/app-admin/denyhosts-2.6-r8 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/denyhosts/DenyHosts-2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aac0cb45cf0c7306b8559d72e50f600a diff --git a/metadata/md5-cache/app-admin/eclean-kernel-0.4 b/metadata/md5-cache/app-admin/eclean-kernel-0.4 index 29f85c600dbb..a4c7bee7b2fe 100644 --- a/metadata/md5-cache/app-admin/eclean-kernel-0.4 +++ b/metadata/md5-cache/app-admin/eclean-kernel-0.4 @@ -10,5 +10,5 @@ RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/eclean-kernel/downloads/eclean-kernel-0.4.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=852ae3d7d779df1afb9899ca3d5745fc diff --git a/metadata/md5-cache/app-admin/eclean-kernel-0.4.1 b/metadata/md5-cache/app-admin/eclean-kernel-0.4.1 index 013109c4a3ae..4558de730475 100644 --- a/metadata/md5-cache/app-admin/eclean-kernel-0.4.1 +++ b/metadata/md5-cache/app-admin/eclean-kernel-0.4.1 @@ -10,5 +10,5 @@ RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/eclean-kernel/downloads/eclean-kernel-0.4.1.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=599f20f0929dd29d3aa2b1060b294fdd diff --git a/metadata/md5-cache/app-admin/eclean-kernel-9999 b/metadata/md5-cache/app-admin/eclean-kernel-9999 index 07da7300fa13..54bb166526d8 100644 --- a/metadata/md5-cache/app-admin/eclean-kernel-9999 +++ b/metadata/md5-cache/app-admin/eclean-kernel-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9cb1ec45e7d26ad18f0212f85eb6ece4 diff --git a/metadata/md5-cache/app-admin/eselect-9999 b/metadata/md5-cache/app-admin/eselect-9999 index 57f65b34e57e..093529eccd85 100644 --- a/metadata/md5-cache/app-admin/eselect-9999 +++ b/metadata/md5-cache/app-admin/eselect-9999 @@ -1,5 +1,5 @@ -DEFINED_PHASES=compile install postinst prepare unpack -DEPEND=sys-apps/sed || ( sys-apps/coreutils sys-freebsd/freebsd-bin app-misc/realpath ) >=sys-devel/autoconf-2.65 >=sys-devel/automake-1.12 doc? ( dev-python/docutils ) >=dev-vcs/git-1.8.2.1 +DEFINED_PHASES=compile install postinst unpack +DEPEND=sys-apps/sed || ( sys-apps/coreutils sys-freebsd/freebsd-bin app-misc/realpath ) doc? ( dev-python/docutils ) dev-vcs/git DESCRIPTION=Gentoo's multi-purpose configuration and management tool EAPI=5 HOMEPAGE=http://wiki.gentoo.org/wiki/Project:Eselect @@ -8,5 +8,5 @@ LICENSE=GPL-2+ || ( GPL-2+ CC-BY-SA-2.5 ) PDEPEND=emacs? ( app-emacs/eselect-mode ) vim-syntax? ( app-vim/eselect-syntax ) RDEPEND=!app-admin/eselect-news sys-apps/sed || ( sys-apps/coreutils sys-freebsd/freebsd-bin app-misc/realpath ) sys-apps/file sys-libs/ncurses SLOT=0 -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b03cebf1b0bfe809766460b885da2fba +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=b8a221ad1026298f388c553af60724e6 diff --git a/metadata/md5-cache/app-admin/glance-2012.2.4-r4 b/metadata/md5-cache/app-admin/glance-2012.2.4-r4 index f2e814e1299e..34a078d76528 100644 --- a/metadata/md5-cache/app-admin/glance-2012.2.4-r4 +++ b/metadata/md5-cache/app-admin/glance-2012.2.4-r4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/glance/folsom/2012.2.4/+download/glance-2012.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=507fdb7f3749c19e046de8e4e860d0b7 diff --git a/metadata/md5-cache/app-admin/glance-2013.1.3-r2 b/metadata/md5-cache/app-admin/glance-2013.1.3-r2 index 7433dec8bcdb..a09977beb065 100644 --- a/metadata/md5-cache/app-admin/glance-2013.1.3-r2 +++ b/metadata/md5-cache/app-admin/glance-2013.1.3-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/glance/grizzly/2013.1.3/+download/glance-2013.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e2147494f003e62a65fc47728313bc4e diff --git a/metadata/md5-cache/app-admin/glance-2013.1.9999 b/metadata/md5-cache/app-admin/glance-2013.1.9999 index fcda586b14aa..f3307ae7967f 100644 --- a/metadata/md5-cache/app-admin/glance-2013.1.9999 +++ b/metadata/md5-cache/app-admin/glance-2013.1.9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3aa9660ed2e4576dd541c2537f77f5f8 diff --git a/metadata/md5-cache/app-admin/glance-2013.2.9999 b/metadata/md5-cache/app-admin/glance-2013.2.9999 new file mode 100644 index 000000000000..2a906db91971 --- /dev/null +++ b/metadata/md5-cache/app-admin/glance-2013.2.9999 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=Provides services for discovering, registering, and retrieving virtual machine images with Openstack +EAPI=5 +HOMEPAGE=https://launchpad.net/glance +IUSE=mysql postgres +sqlite +swift python_targets_python2_7 +LICENSE=Apache-2.0 +RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[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/eventlet-0.13.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pastedeploy-1.5.0[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/webob-1.2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/boto-2.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/kombu-2.4.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pycrypto-2.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/lxml-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-1.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/jsonschema-1.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-cinderclient-1.0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyopenssl[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/six[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) +SLOT=0 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=93e63ab2b617af4855cff82bd2c39b8f diff --git a/metadata/md5-cache/app-admin/glance-9999 b/metadata/md5-cache/app-admin/glance-9999 index 41c4e2b7750b..8d4ad2f280d6 100644 --- a/metadata/md5-cache/app-admin/glance-9999 +++ b/metadata/md5-cache/app-admin/glance-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/anyjson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jsonschema-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-glanceclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/routes[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] swift? ( >=dev-python/python-swiftclient-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( ldap mysql postgres sqlite ) || ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8b9e47fb3c4fda9df32e77a9aa1db12d diff --git a/metadata/md5-cache/app-admin/keepass-2.21 b/metadata/md5-cache/app-admin/keepass-2.21 index bab516a0bb06..6574f533b99e 100644 --- a/metadata/md5-cache/app-admin/keepass-2.21 +++ b/metadata/md5-cache/app-admin/keepass-2.21 @@ -10,4 +10,4 @@ RDEPEND=>=dev-lang/mono-2.10.5 dev-dotnet/libgdiplus[cairo] SLOT=0 SRC_URI=mirror://sourceforge/keepass/KeePass-2.21-Source.zip _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=25c60981f2986c2a2e99a514862b3c53 +_md5_=984161b10e9608787042d444b8a6d623 diff --git a/metadata/md5-cache/app-admin/keepass-2.22 b/metadata/md5-cache/app-admin/keepass-2.22 index 0b51542d7141..626f75cb0df9 100644 --- a/metadata/md5-cache/app-admin/keepass-2.22 +++ b/metadata/md5-cache/app-admin/keepass-2.22 @@ -10,4 +10,4 @@ RDEPEND=>=dev-lang/mono-2.10.5 dev-dotnet/libgdiplus[cairo] SLOT=0 SRC_URI=mirror://sourceforge/keepass/KeePass-2.22-Source.zip _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=5c571ed3335b9bd6f216356cdfab242a +_md5_=6af5eff3c2fc8bc8949fb64f9c180c25 diff --git a/metadata/md5-cache/app-admin/keepass-2.23 b/metadata/md5-cache/app-admin/keepass-2.23 new file mode 100644 index 000000000000..4da6af88c652 --- /dev/null +++ b/metadata/md5-cache/app-admin/keepass-2.23 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup unpack +DEPEND=>=dev-lang/mono-2.10.5 app-arch/unzip >=sys-apps/sed-4 +DESCRIPTION=A free, open source, light-weight and easy-to-use password manager +EAPI=5 +HOMEPAGE=http://keepass.info/ +IUSE=aot +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=dev-lang/mono-2.10.5 dev-dotnet/libgdiplus[cairo] +SLOT=0 +SRC_URI=mirror://sourceforge/keepass/KeePass-2.23-Source.zip http://keepass.info/filepool/Resources_131022.zip +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 mono-env 59ca1177366cc9e14521d3501e9bb281 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=78c53bfcef2a3c9e950778868db996cd diff --git a/metadata/md5-cache/app-admin/mcelog-100 b/metadata/md5-cache/app-admin/mcelog-100 new file mode 100644 index 000000000000..a93ca98131fa --- /dev/null +++ b/metadata/md5-cache/app-admin/mcelog-100 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst prepare setup +DEPEND=virtual/pkgconfig +DESCRIPTION=A tool to log and decode Machine Check Exceptions +EAPI=5 +HOMEPAGE=http://mcelog.org/ +IUSE=selinux +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=selinux? ( sec-policy/selinux-mcelog ) +RESTRICT=test +SLOT=0 +SRC_URI=https://github.com/andikleen/mcelog/archive/v100.tar.gz -> mcelog-100.tar.gz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=7ceaec3eb974a6c38d6ba12ea6ee3336 diff --git a/metadata/md5-cache/app-admin/salt-0.16.0 b/metadata/md5-cache/app-admin/salt-0.16.0 index 793708203996..32f32c23aad6 100644 --- a/metadata/md5-cache/app-admin/salt-0.16.0 +++ b/metadata/md5-cache/app-admin/salt-0.16.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/salt/salt-0.16.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4e332d30c0312aa8f6f73c260ab5e469 diff --git a/metadata/md5-cache/app-admin/salt-0.16.2 b/metadata/md5-cache/app-admin/salt-0.16.2 index 6fceeed97dd1..21121a13e003 100644 --- a/metadata/md5-cache/app-admin/salt-0.16.2 +++ b/metadata/md5-cache/app-admin/salt-0.16.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/salt/salt-0.16.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5cc665eb61127ed24de6bf3e1baea369 diff --git a/metadata/md5-cache/app-admin/salt-0.16.3 b/metadata/md5-cache/app-admin/salt-0.16.3 index dfc18b3d4dbf..47835cad2758 100644 --- a/metadata/md5-cache/app-admin/salt-0.16.3 +++ b/metadata/md5-cache/app-admin/salt-0.16.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/salt/salt-0.16.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9bbc9a1b89de2bcca9441d3c4d5eb49a diff --git a/metadata/md5-cache/app-admin/salt-0.16.4 b/metadata/md5-cache/app-admin/salt-0.16.4 index 05744c3c7c3a..46583a052a67 100644 --- a/metadata/md5-cache/app-admin/salt-0.16.4 +++ b/metadata/md5-cache/app-admin/salt-0.16.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/salt/salt-0.16.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ee1fc03a10115f3754c74a1a60dba470 diff --git a/metadata/md5-cache/app-admin/salt-9999 b/metadata/md5-cache/app-admin/salt-9999 index f438f4215406..d66c6c797861 100644 --- a/metadata/md5-cache/app-admin/salt-9999 +++ b/metadata/md5-cache/app-admin/salt-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/pyzmq-2.1.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/msgpack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pycryptopp[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-apps/pciutils mako? ( dev-python/mako[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openssl? ( dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) redis? ( dev-python/redis-py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e13d4cc8f2a09b3615b4c10d8e38d61a diff --git a/metadata/md5-cache/app-admin/supervisor-3.0 b/metadata/md5-cache/app-admin/supervisor-3.0 index 619be22a7752..47518d5d5872 100644 --- a/metadata/md5-cache/app-admin/supervisor-3.0 +++ b/metadata/md5-cache/app-admin/supervisor-3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/s/supervisor/supervisor-3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7d27fac82a89568a2e12637d5909c8d8 diff --git a/metadata/md5-cache/app-admin/supervisor-3.0_beta2-r1 b/metadata/md5-cache/app-admin/supervisor-3.0_beta2-r1 index fbcf3f6ed236..4179ae2f74b5 100644 --- a/metadata/md5-cache/app-admin/supervisor-3.0_beta2-r1 +++ b/metadata/md5-cache/app-admin/supervisor-3.0_beta2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/s/supervisor/supervisor-3.0b2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4c7fa960562371bde22132dd42074217 diff --git a/metadata/md5-cache/app-admin/webapp-config-1.50.19-r1 b/metadata/md5-cache/app-admin/webapp-config-1.50.19-r1 index 52793f09f00a..9cb4aed6c07d 100644 --- a/metadata/md5-cache/app-admin/webapp-config-1.50.19-r1 +++ b/metadata/md5-cache/app-admin/webapp-config-1.50.19-r1 @@ -10,5 +10,5 @@ RDEPEND=portage? ( sys-apps/portage[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~blueness/webapp-config/webapp-config-1.50.19.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15bf15c33233fd8249b948b832ef4aa7 diff --git a/metadata/md5-cache/app-admin/webapp-config-1.51-r1 b/metadata/md5-cache/app-admin/webapp-config-1.51-r1 index 94efe9b26d72..7c35ffcdeb71 100644 --- a/metadata/md5-cache/app-admin/webapp-config-1.51-r1 +++ b/metadata/md5-cache/app-admin/webapp-config-1.51-r1 @@ -10,5 +10,5 @@ RDEPEND=portage? ( sys-apps/portage[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~blueness/webapp-config/webapp-config-1.51.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=72464e75d0164c0c70e2c233d134b874 diff --git a/metadata/md5-cache/app-admin/webapp-config-9999 b/metadata/md5-cache/app-admin/webapp-config-9999 index 3026cb4ad66b..f0d72d8f3917 100644 --- a/metadata/md5-cache/app-admin/webapp-config-9999 +++ b/metadata/md5-cache/app-admin/webapp-config-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=portage? ( sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=09c903b09cd12ac4d962471121993a0b diff --git a/metadata/md5-cache/app-backup/duplicity-0.6.22 b/metadata/md5-cache/app-backup/duplicity-0.6.22 index d0f7ba9d6e48..977afef16602 100644 --- a/metadata/md5-cache/app-backup/duplicity-0.6.22 +++ b/metadata/md5-cache/app-backup/duplicity-0.6.22 @@ -10,5 +10,5 @@ RDEPEND=net-libs/librsync app-crypt/gnupg dev-python/paramiko[python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.launchpad.net/duplicity/0.6-series/0.6.22/+download/duplicity-0.6.22.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=86abc9da52e51ace73e33b5877d4a6e0 diff --git a/metadata/md5-cache/app-backup/obnam-1.4 b/metadata/md5-cache/app-backup/obnam-1.4 index b0b92b437447..e0fc798b8e55 100644 --- a/metadata/md5-cache/app-backup/obnam-1.4 +++ b/metadata/md5-cache/app-backup/obnam-1.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[threads] ) py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/o/obnam/obnam_1.4.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b1a9ff4ea96a349146b7f78881672162 diff --git a/metadata/md5-cache/app-backup/obnam-1.5 b/metadata/md5-cache/app-backup/obnam-1.5 index 626bd74c6a84..8d64a8f3f915 100644 --- a/metadata/md5-cache/app-backup/obnam-1.5 +++ b/metadata/md5-cache/app-backup/obnam-1.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[threads] ) py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/o/obnam/obnam_1.5.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7118b296feaf56f24f2bf2e31e8042b1 diff --git a/metadata/md5-cache/app-crypt/ckpass-0.1 b/metadata/md5-cache/app-crypt/ckpass-0.2 similarity index 56% rename from metadata/md5-cache/app-crypt/ckpass-0.1 rename to metadata/md5-cache/app-crypt/ckpass-0.2 index 3470088ca808..892f3902a270 100644 --- a/metadata/md5-cache/app-crypt/ckpass-0.1 +++ b/metadata/md5-cache/app-crypt/ckpass-0.2 @@ -1,11 +1,11 @@ DEFINED_PHASES=install -DEPEND=dev-libs/libkpass +DEPEND=>=dev-libs/libkpass-6 DESCRIPTION=An ncurses based password database client that is compatible with KeePass 1.x format databases -EAPI=4 +EAPI=5 HOMEPAGE=http://ckpass.sourceforge.net/ KEYWORDS=~amd64 LICENSE=GPL-3 -RDEPEND=dev-libs/libkpass +RDEPEND=>=dev-libs/libkpass-6 SLOT=0 -SRC_URI=mirror://sourceforge/ckpass/ckpass-0.1.tar.gz -_md5_=34c38014ac19f123f135aa03906d5799 +SRC_URI=mirror://sourceforge/ckpass/ckpass-0.2.tar.gz +_md5_=785331b22ccb803f0f4853cc65beb965 diff --git a/metadata/md5-cache/app-editors/retext-4.0.1 b/metadata/md5-cache/app-editors/retext-4.0.1 index 992d75fc5565..f7b9e96bcdf7 100644 --- a/metadata/md5-cache/app-editors/retext-4.0.1 +++ b/metadata/md5-cache/app-editors/retext-4.0.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/docutils[python_targets_python2_7(-)?,python_targets_python3_ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://sourceforge/retext/ReText-4.0.1.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4ca30db046aa927856f78f77d251ecae diff --git a/metadata/md5-cache/app-editors/retext-4.0.1-r1 b/metadata/md5-cache/app-editors/retext-4.0.1-r1 index 08f83b7152cf..0bd3c62495b9 100644 --- a/metadata/md5-cache/app-editors/retext-4.0.1-r1 +++ b/metadata/md5-cache/app-editors/retext-4.0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/docutils[python_targets_python2_7(-)?,python_targets_python3_ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://sourceforge/retext/ReText-4.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cee2730759f42c304c5b030c475d9e60 diff --git a/metadata/md5-cache/app-editors/retext-4.0.1-r2 b/metadata/md5-cache/app-editors/retext-4.0.1-r2 index 5d0ebbe74610..bfa97c2a6318 100644 --- a/metadata/md5-cache/app-editors/retext-4.0.1-r2 +++ b/metadata/md5-cache/app-editors/retext-4.0.1-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/docutils[python_targets_python2_7(-)?,python_targets_python3_ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/retext/ReText-4.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=10fff426dadb6b6e15ae4e4f51d9afb2 diff --git a/metadata/md5-cache/app-editors/retext-9999 b/metadata/md5-cache/app-editors/retext-9999 index ba3de4173639..7f5bfa6e0be8 100644 --- a/metadata/md5-cache/app-editors/retext-9999 +++ b/metadata/md5-cache/app-editors/retext-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/docutils[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] dev-python/markdown[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] dev-python/markups[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] dev-python/PyQt4[webkit,python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] spell? ( dev-python/pyenchant[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) dev-python/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ed35bc5fb63877d0a0fe97735bf3b5f8 diff --git a/metadata/md5-cache/app-emacs/eselect-mode-9999 b/metadata/md5-cache/app-emacs/eselect-mode-9999 index 0c4c264614fe..a99e35c6768c 100644 --- a/metadata/md5-cache/app-emacs/eselect-mode-9999 +++ b/metadata/md5-cache/app-emacs/eselect-mode-9999 @@ -1,10 +1,10 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup unpack -DEPEND=>=virtual/emacs-21 >=dev-vcs/git-1.8.2.1 +DEPEND=>=virtual/emacs-21 dev-vcs/git DESCRIPTION=Emacs major mode for editing eselect files EAPI=5 HOMEPAGE=http://wiki.gentoo.org/wiki/Project:Eselect LICENSE=GPL-2+ RDEPEND=>=virtual/emacs-21 SLOT=0 -_eclasses_=elisp ae11b438eee6c692e6c94c9a86999514 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1b42eba8b98bb2dd14c042917137323d +_eclasses_=elisp ae11b438eee6c692e6c94c9a86999514 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=3d03a6d82e77ec81190a0dc7704b4380 diff --git a/metadata/md5-cache/app-emacs/pymacs-0.25-r1 b/metadata/md5-cache/app-emacs/pymacs-0.25-r1 index 4b87188aaa17..44f191159723 100644 --- a/metadata/md5-cache/app-emacs/pymacs-0.25-r1 +++ b/metadata/md5-cache/app-emacs/pymacs-0.25-r1 @@ -10,5 +10,5 @@ RDEPEND=>=virtual/emacs-21 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/pinard/Pymacs/tarball/v0.25 -> pymacs-0.25.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp ae11b438eee6c692e6c94c9a86999514 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp ae11b438eee6c692e6c94c9a86999514 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=a805343d1c378a01a4125922af86f32a diff --git a/metadata/md5-cache/app-emulation/cloud-init-0.7.2 b/metadata/md5-cache/app-emulation/cloud-init-0.7.2 index fd22af5bbf8f..b2537929bd22 100644 --- a/metadata/md5-cache/app-emulation/cloud-init-0.7.2 +++ b/metadata/md5-cache/app-emulation/cloud-init-0.7.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/cheetah[python_targets_python2_7(-)?,-python_single_target_py REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/cloud-init/trunk/0.7.2/+download/cloud-init-0.7.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cdc24f64fb4f4260c8bd2bb25aadf7c0 diff --git a/metadata/md5-cache/app-emulation/open-vm-tools-kmod-2013.09.16.1328054 b/metadata/md5-cache/app-emulation/open-vm-tools-kmod-2013.09.16.1328054 index 2519733b1ca6..7e56677f5ec2 100644 --- a/metadata/md5-cache/app-emulation/open-vm-tools-kmod-2013.09.16.1328054 +++ b/metadata/md5-cache/app-emulation/open-vm-tools-kmod-2013.09.16.1328054 @@ -10,4 +10,4 @@ RDEPEND=kernel_linux? ( virtual/modutils ) SLOT=0 SRC_URI=mirror://sourceforge/open-vm-tools/open-vm-tools-2013.09.16-1328054.tar.gz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c linux-mod 708d6a92c561743e612fca9d8fde5309 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f905c2f0ef311f9a96ef087b998210f5 +_md5_=09c84f97cda8af7fd19dcdf46f22c747 diff --git a/metadata/md5-cache/app-emulation/open-vm-tools-kmod-9.4.0.1280544 b/metadata/md5-cache/app-emulation/open-vm-tools-kmod-9.4.0.1280544 index f71f151c17f8..cc3040d1bdd6 100644 --- a/metadata/md5-cache/app-emulation/open-vm-tools-kmod-9.4.0.1280544 +++ b/metadata/md5-cache/app-emulation/open-vm-tools-kmod-9.4.0.1280544 @@ -10,4 +10,4 @@ RDEPEND=kernel_linux? ( virtual/modutils ) SLOT=0 SRC_URI=mirror://sourceforge/open-vm-tools/open-vm-tools-9.4.0-1280544.tar.gz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c linux-mod 708d6a92c561743e612fca9d8fde5309 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=d736426b08bed05900423a398878b342 +_md5_=4a2e333e6c2c62fe918af6bdbb5bd142 diff --git a/metadata/md5-cache/app-emulation/vboxgtk-0.8.2-r1 b/metadata/md5-cache/app-emulation/vboxgtk-0.8.2-r1 index a10b92af675d..e9e0594fe0a5 100644 --- a/metadata/md5-cache/app-emulation/vboxgtk-0.8.2-r1 +++ b/metadata/md5-cache/app-emulation/vboxgtk-0.8.2-r1 @@ -10,5 +10,5 @@ RDEPEND=|| ( >=app-emulation/virtualbox-4.2.0[-headless,python,sdk] >=app-emulat REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://vboxgtk.googlecode.com/files/vboxgtk-0.8.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=365cd23b59bd1490bc6234d756b9f9f2 diff --git a/metadata/md5-cache/app-emulation/virt-manager-0.10.0 b/metadata/md5-cache/app-emulation/virt-manager-0.10.0 index c1b9acea19d9..5798ca1b8266 100644 --- a/metadata/md5-cache/app-emulation/virt-manager-0.10.0 +++ b/metadata/md5-cache/app-emulation/virt-manager-0.10.0 @@ -10,5 +10,5 @@ RDEPEND=!app-emulation/virtinst x11-libs/gtk+:3[introspection] >=app-emulation/l REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=http://virt-manager.org/download/sources/virt-manager/virt-manager-0.10.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=504a7d17d51b3f3d1441e3c9b8bfbf09 diff --git a/metadata/md5-cache/app-emulation/virt-manager-0.10.0-r1 b/metadata/md5-cache/app-emulation/virt-manager-0.10.0-r1 index 212e7a1cee88..c30fff624e08 100644 --- a/metadata/md5-cache/app-emulation/virt-manager-0.10.0-r1 +++ b/metadata/md5-cache/app-emulation/virt-manager-0.10.0-r1 @@ -10,5 +10,5 @@ RDEPEND=!app-emulation/virtinst x11-libs/gtk+:3[introspection] >=app-emulation/l REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=http://virt-manager.org/download/sources/virt-manager/virt-manager-0.10.0.tar.gz http://dev.gentoo.org/~cardoe/distfiles/virt-manager-0.10.0-1cd29748.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=023ab2943c3f4396968bdcfa90725f93 diff --git a/metadata/md5-cache/app-emulation/virt-manager-9999 b/metadata/md5-cache/app-emulation/virt-manager-9999 index 1033471da780..fe3b96c0619e 100644 --- a/metadata/md5-cache/app-emulation/virt-manager-9999 +++ b/metadata/md5-cache/app-emulation/virt-manager-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=!app-emulation/virtinst x11-libs/gtk+:3[introspection] >=app-emulation/libvirt-0.7.0[python] >=app-emulation/libvirt-glib-0.0.9 python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-libs/libxml2[python,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/ipaddr[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/pygobject:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/urlgrabber[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] x11-libs/vte:2.90[introspection] gnome-keyring? ( dev-python/gnome-keyring-python ) policykit? ( sys-auth/polkit ) spice? ( net-misc/spice-gtk[gtk3,introspection,python,sasl?] ) vnc? ( >=net-libs/gtk-vnc-0.3.8[gtk3,introspection,python,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=188adcfb7a9f2189613a5c9222be9403 diff --git a/metadata/md5-cache/app-emulation/vmware-modules-238.6 b/metadata/md5-cache/app-emulation/vmware-modules-238.6 deleted file mode 100644 index 24a98521caef..000000000000 --- a/metadata/md5-cache/app-emulation/vmware-modules-238.6 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile install postinst postrm preinst prepare setup unpack -DEPEND=|| ( =app-emulation/vmware-player-3.1.6* =app-emulation/vmware-workstation-7.1.6* ) kernel_linux? ( virtual/modutils ) sys-apps/sed kernel_linux? ( virtual/linux-sources ) virtual/pkgconfig -DESCRIPTION=VMware kernel modules -EAPI=4 -HOMEPAGE=http://www.vmware.com/ -IUSE=kernel_linux -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=kernel_linux? ( virtual/modutils ) -SLOT=0 -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 linux-info a9cbd6bbe2b28166e403321882f3c73c linux-mod 708d6a92c561743e612fca9d8fde5309 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=9320bd8a52e373dacc8cf4f93f46766a diff --git a/metadata/md5-cache/app-emulation/vmware-workstation-7.1.6.744570 b/metadata/md5-cache/app-emulation/vmware-workstation-7.1.6.744570 deleted file mode 100644 index 08b923f316be..000000000000 --- a/metadata/md5-cache/app-emulation/vmware-workstation-7.1.6.744570 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=config install nofetch postinst postrm preinst prepare prerm unpack -DEPEND=>=sys-apps/sed-4 dev-libs/libxslt -DESCRIPTION=Emulate a complete PC on your PC without the usual performance overhead of most emulators -EAPI=2 -HOMEPAGE=http://www.vmware.com/products/workstation/ -IUSE=doc vix +vmware-tools -KEYWORDS=-* ~amd64 ~x86 -LICENSE=vmware GPL-2 -PDEPEND=~app-emulation/vmware-modules-238.6 vmware-tools? ( app-emulation/vmware-tools ) -RDEPEND=dev-cpp/cairomm dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-cpp/libgnomecanvasmm dev-cpp/libsexymm dev-cpp/pangomm dev-libs/atk dev-libs/glib:2 dev-libs/libaio dev-libs/libsigc++ dev-libs/libxml2 =dev-libs/openssl-0.9.8* dev-libs/xmlrpc-c gnome-base/libgnomecanvas gnome-base/libgtop:2 gnome-base/librsvg:2 gnome-base/orbit media-libs/fontconfig media-libs/freetype media-libs/libart_lgpl =media-libs/libpng-1.2* net-misc/curl sys-devel/gcc sys-fs/fuse sys-libs/glibc sys-libs/zlib x11-libs/cairo x11-libs/gtk+:2 x11-libs/libgksu x11-libs/libICE x11-libs/libsexy x11-libs/libSM >=x11-libs/libview-0.6.6 x11-libs/libX11 x11-libs/libXau x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXi x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango x11-libs/startup-notification x11-themes/hicolor-icon-theme !app-emulation/vmware-server !app-emulation/vmware-player -RESTRICT=fetch mirror strip -SLOT=0 -SRC_URI=x86? ( VMware-Workstation-7.1.6-744570.i386.bundle ) amd64? ( VMware-Workstation-7.1.6-744570.x86_64.bundle ) -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vmware-bundle 23c070352c2722510704dae8063293e0 -_md5_=79668f2aeaff50910700d8884b81193c diff --git a/metadata/md5-cache/app-emulation/vmware-workstation-9.0.2.1031769 b/metadata/md5-cache/app-emulation/vmware-workstation-9.0.2.1031769 deleted file mode 100644 index 3aa7752b5ccb..000000000000 --- a/metadata/md5-cache/app-emulation/vmware-workstation-9.0.2.1031769 +++ /dev/null @@ -1,15 +0,0 @@ -DEFINED_PHASES=config install postinst postrm preinst prepare prerm unpack -DEPEND=>=sys-apps/sed-4 dev-libs/libxslt -DESCRIPTION=Emulate a complete PC on your PC without the usual performance overhead of most emulators -EAPI=4 -HOMEPAGE=http://www.vmware.com/products/workstation/ -IUSE=cups doc ovftool server vix vmware-tools -KEYWORDS=-* ~amd64 ~x86 -LICENSE=vmware GPL-2 -PDEPEND=~app-emulation/vmware-modules-271.2 vmware-tools? ( app-emulation/vmware-tools ) -RDEPEND=dev-cpp/cairomm dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-cpp/libgnomecanvasmm dev-cpp/pangomm dev-libs/atk dev-libs/glib:2 dev-libs/icu dev-libs/expat dev-libs/libaio dev-libs/libsigc++ dev-libs/libxml2 =dev-libs/openssl-0.9.8* dev-libs/xmlrpc-c gnome-base/libgnomecanvas gnome-base/libgtop:2 gnome-base/librsvg:2 gnome-base/orbit media-libs/fontconfig media-libs/freetype media-libs/libart_lgpl =media-libs/libpng-1.2* media-libs/libpng net-misc/curl cups? ( net-print/cups ) sys-devel/gcc sys-fs/fuse sys-libs/glibc sys-libs/zlib x11-libs/cairo x11-libs/gtk+:2 x11-libs/libgksu x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXdmcp x11-libs/libXext x11-libs/libXfixes x11-libs/libXft x11-libs/libXi x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender x11-libs/libXtst x11-libs/pango x11-libs/startup-notification x11-themes/hicolor-icon-theme !app-emulation/vmware-player -RESTRICT=mirror strip -SLOT=0 -SRC_URI=x86? ( https://softwareupdate.vmware.com/cds/vmw-desktop/ws/9.0.2/1031769/linux/core/VMware-Workstation-9.0.2-1031769.i386.bundle.tar ) amd64? ( https://softwareupdate.vmware.com/cds/vmw-desktop/ws/9.0.2/1031769/linux/core/VMware-Workstation-9.0.2-1031769.x86_64.bundle.tar ) -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vmware-bundle 23c070352c2722510704dae8063293e0 -_md5_=069b05e2fd99c45cc3ef0b5f62fe7213 diff --git a/metadata/md5-cache/app-i18n/multiskkserv-20020201 b/metadata/md5-cache/app-i18n/multiskkserv-20020201 deleted file mode 100644 index a23880fc7ae1..000000000000 --- a/metadata/md5-cache/app-i18n/multiskkserv-20020201 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=|| ( >=app-i18n/skk-jisyo-200705[cdb] app-i18n/skk-jisyo-cdb ) >=sys-apps/sed-4 -DESCRIPTION=SKK server that handles multiple dictionaries -EAPI=2 -HOMEPAGE=http://www3.big.or.jp/~sian/linux/products/ -KEYWORDS=ppc x86 -LICENSE=GPL-2 -RDEPEND=|| ( >=app-i18n/skk-jisyo-200705[cdb] app-i18n/skk-jisyo-cdb ) -SLOT=0 -SRC_URI=http://www3.big.or.jp/~sian/linux/products/multiskkserv-20020201.tar.bz2 http://cr.yp.to/cdb/cdb-0.75.tar.gz -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fixheadtails f96922acc9287f1e889a1e50a6c8986e multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9866947fc858399e6a58c15f16b20eac diff --git a/metadata/md5-cache/app-i18n/multiskkserv-20051220 b/metadata/md5-cache/app-i18n/multiskkserv-20051220 deleted file mode 100644 index 19706aba8581..000000000000 --- a/metadata/md5-cache/app-i18n/multiskkserv-20051220 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare -DEPEND=dev-db/cdb >=sys-apps/sed-4 -DESCRIPTION=SKK server that handles multiple dictionaries -EAPI=2 -HOMEPAGE=http://www3.big.or.jp/~sian/linux/products/ -KEYWORDS=~amd64 ~ppc ~x86 -LICENSE=GPL-2 -RDEPEND=|| ( >=app-i18n/skk-jisyo-200705[cdb] app-i18n/skk-jisyo-cdb ) -SLOT=0 -SRC_URI=http://www3.big.or.jp/~sian/linux/products/multiskkserv-20051220.tar.bz2 -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fixheadtails f96922acc9287f1e889a1e50a6c8986e multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=f4d101376d4f2b28d2d908ebc1652516 diff --git a/metadata/md5-cache/app-i18n/multiskkserv-20100128 b/metadata/md5-cache/app-i18n/multiskkserv-20100128 index 231147f8404b..27e6a8ea2c0c 100644 --- a/metadata/md5-cache/app-i18n/multiskkserv-20100128 +++ b/metadata/md5-cache/app-i18n/multiskkserv-20100128 @@ -1,7 +1,7 @@ DEFINED_PHASES=configure install postinst prepare -DEPEND=app-arch/xz-utils dev-db/cdb test? ( app-i18n/nkf ) >=sys-apps/sed-4 || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=app-arch/xz-utils dev-db/cdb test? ( app-i18n/nkf ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=SKK server that handles multiple dictionaries -EAPI=3 +EAPI=5 HOMEPAGE=http://www3.big.or.jp/~sian/linux/products/ IUSE=test KEYWORDS=amd64 ppc x86 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=|| ( >=app-i18n/skk-jisyo-200705[cdb] app-i18n/skk-jisyo-cdb ) SLOT=0 SRC_URI=http://www3.big.or.jp/~sian/linux/products/multiskkserv-20100128.tar.xz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 fixheadtails f96922acc9287f1e889a1e50a6c8986e libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=4b19c5bb39c4d6a5bcb33086e764420d +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=8f6dc12bb3cef6e7cf114b847ec716a0 diff --git a/metadata/md5-cache/app-i18n/nkf-2.1.2-r2 b/metadata/md5-cache/app-i18n/nkf-2.1.2-r2 index 949ef68e62ed..d91938dcbaff 100644 --- a/metadata/md5-cache/app-i18n/nkf-2.1.2-r2 +++ b/metadata/md5-cache/app-i18n/nkf-2.1.2-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge.jp/nkf/53171/nkf-2.1.2.tar.gz python? ( http://dev.gentoo.org/~naota/files/NKF_python20090602.tgz ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=33f732f30547902f399603fff183ee46 diff --git a/metadata/md5-cache/app-i18n/transifex-client-0.9.2 b/metadata/md5-cache/app-i18n/transifex-client-0.9.2 index 96af370a70cd..e4d84c415902 100644 --- a/metadata/md5-cache/app-i18n/transifex-client-0.9.2 +++ b/metadata/md5-cache/app-i18n/transifex-client-0.9.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/transifex/transifex-client/archive/0.9.2.tar.gz -> transifex-client-0.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bdd536c8e8a7e79f8b9972e367eaf3ae diff --git a/metadata/md5-cache/app-misc/anki-2.0.15 b/metadata/md5-cache/app-misc/anki-2.0.15 new file mode 100644 index 000000000000..6def1f0a67f2 --- /dev/null +++ b/metadata/md5-cache/app-misc/anki-2.0.15 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install preinst prepare setup +DESCRIPTION=A spaced-repetition memory training program (flash cards) +EAPI=5 +HOMEPAGE=http://ichi2.net/anki/ +IUSE=latex +recording +sound python_targets_python2_6 python_targets_python2_7 python_single_target_python2_6 python_single_target_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[sqlite] ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/PyQt4[X,svg,webkit] >=dev-python/httplib2-0.7.4 dev-python/beautifulsoup:python-2 dev-python/send2trash recording? ( media-sound/lame >=dev-python/pyaudio-0.2.4 ) sound? ( media-video/mplayer ) latex? ( app-text/texlive app-text/dvipng ) +SLOT=0 +SRC_URI=http://ankisrs.net/download/mirror/anki-2.0.15.tgz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=28a92a6f641d52ec2c38f98f0c91df03 diff --git a/metadata/md5-cache/app-misc/binwalk-1.2.1 b/metadata/md5-cache/app-misc/binwalk-1.2.1 index 8cebd85d1074..cac9be225a0a 100644 --- a/metadata/md5-cache/app-misc/binwalk-1.2.1 +++ b/metadata/md5-cache/app-misc/binwalk-1.2.1 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/file[python] graph? ( dev-python/matplotlib[python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://binwalk.googlecode.com/files/binwalk-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=371db3e2626544e16732ed15eb7d9d57 diff --git a/metadata/md5-cache/app-misc/datovka-3.0.3-r1 b/metadata/md5-cache/app-misc/datovka-3.0.3-r1 index a8721fae5427..411cf68a5fb5 100644 --- a/metadata/md5-cache/app-misc/datovka-3.0.3-r1 +++ b/metadata/md5-cache/app-misc/datovka-3.0.3-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygtk:2[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.nic.cz/public_media/datove_schranky/releases/src/datovka-3.0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=25080b3d793cac093a29b3c66a2ddefc diff --git a/metadata/md5-cache/app-misc/goobook-1.4-r1 b/metadata/md5-cache/app-misc/goobook-1.4-r1 index 8836ae972487..49762257ed6e 100644 --- a/metadata/md5-cache/app-misc/goobook-1.4-r1 +++ b/metadata/md5-cache/app-misc/goobook-1.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/g/goobook/goobook-1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c9f5897659f8f64e2a79c36606616391 diff --git a/metadata/md5-cache/app-misc/gourmet-0.16.1 b/metadata/md5-cache/app-misc/gourmet-0.16.1 index a6ff31332b26..74b471fdf5ba 100644 --- a/metadata/md5-cache/app-misc/gourmet-0.16.1 +++ b/metadata/md5-cache/app-misc/gourmet-0.16.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pygtk-2.3.93:2 dev-python/pygobject:2 >=dev-python/libgnome REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/thinkle/gourmet/archive/0.16.1.tar.gz -> gourmet-0.16.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=02285034ea9750a8295ee39eac52e21e diff --git a/metadata/md5-cache/app-misc/ranger-1.5.5-r1 b/metadata/md5-cache/app-misc/ranger-1.5.5-r1 index 8b5a5b000221..0b63360af776 100644 --- a/metadata/md5-cache/app-misc/ranger-1.5.5-r1 +++ b/metadata/md5-cache/app-misc/ranger-1.5.5-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/pager python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://nongnu.org/ranger/ranger-1.5.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1f9d8ca350e76242725c4e005a7a682a diff --git a/metadata/md5-cache/app-misc/ranger-1.6.0 b/metadata/md5-cache/app-misc/ranger-1.6.0 index 0097e30cc804..250b81a7ccba 100644 --- a/metadata/md5-cache/app-misc/ranger-1.6.0 +++ b/metadata/md5-cache/app-misc/ranger-1.6.0 @@ -10,5 +10,5 @@ RDEPEND=virtual/pager python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://nongnu.org/ranger/ranger-1.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f80c467ea2fc008450a7fe186be18123 diff --git a/metadata/md5-cache/app-misc/ranger-1.6.1 b/metadata/md5-cache/app-misc/ranger-1.6.1 index f4aeb9a0aaa8..d100861a1350 100644 --- a/metadata/md5-cache/app-misc/ranger-1.6.1 +++ b/metadata/md5-cache/app-misc/ranger-1.6.1 @@ -10,5 +10,5 @@ RDEPEND=virtual/pager python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://nongnu.org/ranger/ranger-1.6.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e9e21f0a3f485e8c2ebcb8a3b81a840d diff --git a/metadata/md5-cache/app-misc/ranger-9999 b/metadata/md5-cache/app-misc/ranger-9999 index 88566274bf59..d85b4c08da17 100644 --- a/metadata/md5-cache/app-misc/ranger-9999 +++ b/metadata/md5-cache/app-misc/ranger-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=virtual/pager python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[ncurses] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses] ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2[ncurses] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[ncurses] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=054f3d1e3f6d0a81a6d4a9ad8e74e805 diff --git a/metadata/md5-cache/app-misc/solaar-0.8.7 b/metadata/md5-cache/app-misc/solaar-0.8.7 index 44e4cf9f0a7b..5d3940f19963 100644 --- a/metadata/md5-cache/app-misc/solaar-0.8.7 +++ b/metadata/md5-cache/app-misc/solaar-0.8.7 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyudev-0.13 dev-python/pygobject[python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=https://github.com/pwr/Solaar/archive/0.8.7.tar.gz -> solaar-0.8.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=de6bc226fc82c80b3d86a26e2f2af4b9 diff --git a/metadata/md5-cache/app-misc/solaar-0.9.2 b/metadata/md5-cache/app-misc/solaar-0.9.2 index 97b99e791f60..0946d9209695 100644 --- a/metadata/md5-cache/app-misc/solaar-0.9.2 +++ b/metadata/md5-cache/app-misc/solaar-0.9.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyudev-0.13[python_targets_python2_7(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/pwr/Solaar/archive/0.9.2.tar.gz -> solaar-0.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=89865b2ddef4de2f9c0eb869aad84865 diff --git a/metadata/md5-cache/app-misc/trash-cli-0.12.9.14-r2 b/metadata/md5-cache/app-misc/trash-cli-0.12.9.14-r2 index 99c4fdcee8d3..835cfc1d837d 100644 --- a/metadata/md5-cache/app-misc/trash-cli-0.12.9.14-r2 +++ b/metadata/md5-cache/app-misc/trash-cli-0.12.9.14-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://github.com/andreafrancia/trash-cli/tarball/0.12.9.14 -> trash-cli-0.12.9.14.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=7e4529d17192500668c5f27bf9d3c13e diff --git a/metadata/md5-cache/app-misc/yworklog-0.0.7 b/metadata/md5-cache/app-misc/yworklog-0.0.7 index 1b12f4ec6992..b3d938e61ea8 100644 --- a/metadata/md5-cache/app-misc/yworklog-0.0.7 +++ b/metadata/md5-cache/app-misc/yworklog-0.0.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/sqlalchemy dev-python/cement[python_targets_python2_7(-)?,-py REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/y/yworklog/yworklog-0.0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a5eed9d247942229976b9041206ec335 diff --git a/metadata/md5-cache/app-mobilephone/obexftp-0.23-r1 b/metadata/md5-cache/app-mobilephone/obexftp-0.23-r1 index bbfdf62e2d94..36bcf2022d16 100644 --- a/metadata/md5-cache/app-mobilephone/obexftp-0.23-r1 +++ b/metadata/md5-cache/app-mobilephone/obexftp-0.23-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/openobex bluetooth? ( net-wireless/bluez ) perl? ( dev-lang/per REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/openobex/obexftp-0.23.tar.bz2 -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4f16c8eade2a631a2fd16988f187a355 diff --git a/metadata/md5-cache/app-office/gtg-0.3 b/metadata/md5-cache/app-office/gtg-0.3 index 9c4753a4ca2b..633735520d29 100644 --- a/metadata/md5-cache/app-office/gtg-0.3 +++ b/metadata/md5-cache/app-office/gtg-0.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/liblarch[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/gtg/0.3/0.3/+download/gtg-0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=020703ae0eebccdd28603bffefc62335 diff --git a/metadata/md5-cache/app-office/taskcoach-1.3.32-r1 b/metadata/md5-cache/app-office/taskcoach-1.3.32-r1 index 128ee6964db6..66fe699d6f64 100644 --- a/metadata/md5-cache/app-office/taskcoach-1.3.32-r1 +++ b/metadata/md5-cache/app-office/taskcoach-1.3.32-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/wxpython-2.8.9.2:2.8[python_targets_python2_6(-)?,python_ta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/taskcoach/TaskCoach-1.3.32.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=51539ac3c01a618b57861875996f716f diff --git a/metadata/md5-cache/app-pda/pilot-link-0.12.5-r1 b/metadata/md5-cache/app-pda/pilot-link-0.12.5-r1 index 5eff4475804a..fb492fe77283 100644 --- a/metadata/md5-cache/app-pda/pilot-link-0.12.5-r1 +++ b/metadata/md5-cache/app-pda/pilot-link-0.12.5-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/popt >=sys-libs/ncurses-5.7-r7 virtual/libiconv bluetooth? ( ne REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://pilot-link.org/source/pilot-link-0.12.5.tar.bz2 -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=715a2f350c2cdada1a714db5852f6579 diff --git a/metadata/md5-cache/app-portage/diffmask-0.3.3-r2 b/metadata/md5-cache/app-portage/diffmask-0.3.3-r2 index d8a803a98538..580011e94b4a 100644 --- a/metadata/md5-cache/app-portage/diffmask-0.3.3-r2 +++ b/metadata/md5-cache/app-portage/diffmask-0.3.3-r2 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/diffmask/downloads/diffmask-0.3.3.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=32c9a351f3527cd9c918f19be89b5ea5 diff --git a/metadata/md5-cache/app-portage/diffmask-9999 b/metadata/md5-cache/app-portage/diffmask-9999 index 9b1ba53157d4..cdebcc264acf 100644 --- a/metadata/md5-cache/app-portage/diffmask-9999 +++ b/metadata/md5-cache/app-portage/diffmask-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5d7ea547b1645bc8a85fe8b6fee4ce22 diff --git a/metadata/md5-cache/app-portage/elogv-0.7.6.1-r1 b/metadata/md5-cache/app-portage/elogv-0.7.6.1-r1 index 17a7e25f6a70..9a965a9710c3 100644 --- a/metadata/md5-cache/app-portage/elogv-0.7.6.1-r1 +++ b/metadata/md5-cache/app-portage/elogv-0.7.6.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[ncurses] ) py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/gentoo/elogv/archive/0.7.6.1.tar.gz -> elogv-0.7.6.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1a07ef1580b7f531e786cab386f213d0 diff --git a/metadata/md5-cache/app-portage/euscan-0.1.1-r1 b/metadata/md5-cache/app-portage/euscan-0.1.1-r1 index 92e7567ba105..7d9779b9513f 100644 --- a/metadata/md5-cache/app-portage/euscan-0.1.1-r1 +++ b/metadata/md5-cache/app-portage/euscan-0.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~hwoarang/distfiles/euscan-0.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ea14a84dc202a3bcdf5df33ad6cdde0e diff --git a/metadata/md5-cache/app-portage/euscan-9999 b/metadata/md5-cache/app-portage/euscan-9999 index 1ab1322ec875..75fc900e7f3c 100644 --- a/metadata/md5-cache/app-portage/euscan-9999 +++ b/metadata/md5-cache/app-portage/euscan-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=app-portage/gentoolkit-0.2.8[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/beautifulsoup[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3cd298665e031b51a090a248911241e6 diff --git a/metadata/md5-cache/app-portage/flaggie-0.2.1 b/metadata/md5-cache/app-portage/flaggie-0.2.1 index 723f6da46d77..b8b573b68edc 100644 --- a/metadata/md5-cache/app-portage/flaggie-0.2.1 +++ b/metadata/md5-cache/app-portage/flaggie-0.2.1 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/flaggie/downloads/flaggie-0.2.1.tar.bz2 -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=09ff92e44e0d9410ce608c0e86153a57 diff --git a/metadata/md5-cache/app-portage/flaggie-9999 b/metadata/md5-cache/app-portage/flaggie-9999 index c50d62791f5b..c1e80ccb6e44 100644 --- a/metadata/md5-cache/app-portage/flaggie-9999 +++ b/metadata/md5-cache/app-portage/flaggie-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=sys-apps/portage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3a723e50bde2fd9a4c6a7904cae86817 diff --git a/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8 b/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8 index b46eb37343f4..380d2df62781 100644 --- a/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8 +++ b/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/portage !<=app-portage/gentoolkit-dev-0.2.7 || ( >=sys-apps/cor REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://gentoo/gentoolkit-0.3.0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ed303fff44516fc4585b837a3edf64d2 diff --git a/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8-r1 b/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8-r1 index 1284aed5db99..ebb18140b500 100644 --- a/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8-r1 +++ b/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/portage !<=app-portage/gentoolkit-dev-0.2.7 || ( >=sys-apps/cor REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://gentoo/gentoolkit-0.3.0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=90041bad03c79145437e9ad5a5c9b8e9 diff --git a/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8-r2 b/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8-r2 index 298f1346d1c0..99b5713c0bde 100644 --- a/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8-r2 +++ b/metadata/md5-cache/app-portage/gentoolkit-0.3.0.8-r2 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/portage !<=app-portage/gentoolkit-dev-0.2.7 || ( >=sys-apps/cor REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://gentoo/gentoolkit-0.3.0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c5a4938d832b21fee83a2f24bcd781c9 diff --git a/metadata/md5-cache/app-portage/gentoolkit-9999 b/metadata/md5-cache/app-portage/gentoolkit-9999 index 2c25ebf2c257..817c9929e501 100644 --- a/metadata/md5-cache/app-portage/gentoolkit-9999 +++ b/metadata/md5-cache/app-portage/gentoolkit-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=sys-apps/portage !<=app-portage/gentoolkit-dev-0.2.7 || ( >=sys-apps/coreutils-8.15 app-misc/realpath sys-freebsd/freebsd-bin ) sys-apps/gawk sys-apps/grep virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2[xml(+)] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[xml(+)] ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0[xml(+)] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a5f267b8d0626de149f1fcc552ead337 diff --git a/metadata/md5-cache/app-portage/gentoopm-0.2.6 b/metadata/md5-cache/app-portage/gentoopm-0.2.6 index b5e99fb32841..f529d81e5164 100644 --- a/metadata/md5-cache/app-portage/gentoopm-0.2.6 +++ b/metadata/md5-cache/app-portage/gentoopm-0.2.6 @@ -11,5 +11,5 @@ RDEPEND=|| ( sys-apps/pkgcore >=sys-apps/portage-2.1.10.3 >=sys-apps/paludis-0.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/gentoopm/downloads/gentoopm-0.2.6.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ed6a784bec7fcf712413f22d3ac0681b diff --git a/metadata/md5-cache/app-portage/gentoopm-0.2.8 b/metadata/md5-cache/app-portage/gentoopm-0.2.8 index 47283fc3851e..b8b3f791fc12 100644 --- a/metadata/md5-cache/app-portage/gentoopm-0.2.8 +++ b/metadata/md5-cache/app-portage/gentoopm-0.2.8 @@ -11,5 +11,5 @@ RDEPEND=|| ( sys-apps/pkgcore >=sys-apps/portage-2.1.10.3[python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/gentoopm/downloads/gentoopm-0.2.8.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0a4260ce1cc9478223e94f72b34160e9 diff --git a/metadata/md5-cache/app-portage/gentoopm-0.2.9 b/metadata/md5-cache/app-portage/gentoopm-0.2.9 index 953075331103..a38511c3c9a9 100644 --- a/metadata/md5-cache/app-portage/gentoopm-0.2.9 +++ b/metadata/md5-cache/app-portage/gentoopm-0.2.9 @@ -11,5 +11,5 @@ RDEPEND=|| ( sys-apps/pkgcore >=sys-apps/portage-2.1.10.3[python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/gentoopm/downloads/gentoopm-0.2.9.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1a1bb16b0b535ff6c65a2ab28af1ffdf diff --git a/metadata/md5-cache/app-portage/gentoopm-9999 b/metadata/md5-cache/app-portage/gentoopm-9999 index a21f29688225..fa54727b139f 100644 --- a/metadata/md5-cache/app-portage/gentoopm-9999 +++ b/metadata/md5-cache/app-portage/gentoopm-9999 @@ -9,5 +9,5 @@ PDEPEND=app-admin/eselect-package-manager RDEPEND=|| ( sys-apps/pkgcore >=sys-apps/portage-2.1.10.3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] >=sys-apps/paludis-0.64.2[python-bindings] ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0274d63ec3e3f1c72d0c69637fab072c diff --git a/metadata/md5-cache/app-portage/gpyutils-0.1 b/metadata/md5-cache/app-portage/gpyutils-0.1 index ae8c2c42cad6..37efe09ca0cb 100644 --- a/metadata/md5-cache/app-portage/gpyutils-0.1 +++ b/metadata/md5-cache/app-portage/gpyutils-0.1 @@ -10,5 +10,5 @@ RDEPEND=>=app-portage/gentoopm-0.2.9[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/gpyutils/downloads/gpyutils-0.1.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ca091f821b35bb2f89caaf8db60d0a10 diff --git a/metadata/md5-cache/app-portage/gpyutils-9999 b/metadata/md5-cache/app-portage/gpyutils-9999 index 081af0036678..4c89feba84c9 100644 --- a/metadata/md5-cache/app-portage/gpyutils-9999 +++ b/metadata/md5-cache/app-portage/gpyutils-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=app-portage/gentoopm-0.2.9[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6e2ac2d3963a26b8946222a3a41fa3c3 diff --git a/metadata/md5-cache/app-portage/install-mask-0.0.2-r3 b/metadata/md5-cache/app-portage/install-mask-0.0.2-r3 index a5da2fa002f1..3db1924a0ab8 100644 --- a/metadata/md5-cache/app-portage/install-mask-0.0.2-r3 +++ b/metadata/md5-cache/app-portage/install-mask-0.0.2-r3 @@ -10,5 +10,5 @@ RDEPEND=app-portage/flaggie[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/install-mask/downloads/install-mask-0.0.2.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=02790e7f5c09c411b9e3cc0c104e83f4 diff --git a/metadata/md5-cache/app-portage/install-mask-0.1.1 b/metadata/md5-cache/app-portage/install-mask-0.1.1 index a76c36434f04..a04389e11bcc 100644 --- a/metadata/md5-cache/app-portage/install-mask-0.1.1 +++ b/metadata/md5-cache/app-portage/install-mask-0.1.1 @@ -10,5 +10,5 @@ RDEPEND=app-portage/flaggie[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/install-mask/downloads/install-mask-0.1.1.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4a14e5d90a814663310598c9e9f8d68e diff --git a/metadata/md5-cache/app-portage/install-mask-9999 b/metadata/md5-cache/app-portage/install-mask-9999 index 4fd0feab9146..88c4be9207f7 100644 --- a/metadata/md5-cache/app-portage/install-mask-9999 +++ b/metadata/md5-cache/app-portage/install-mask-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=app-portage/flaggie[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2afd9c846af967b07cc403746d29acb1 diff --git a/metadata/md5-cache/app-portage/layman-2.0.0 b/metadata/md5-cache/app-portage/layman-2.0.0 index 8e0a81802af9..241cbab0c344 100644 --- a/metadata/md5-cache/app-portage/layman-2.0.0 +++ b/metadata/md5-cache/app-portage/layman-2.0.0 @@ -10,5 +10,5 @@ RDEPEND=bazaar? ( dev-vcs/bzr ) cvs? ( dev-vcs/cvs ) darcs? ( dev-vcs/darcs ) gi REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/layman/layman-2.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1a70f7f10bb37a5dac092f75b03663a3 diff --git a/metadata/md5-cache/app-portage/layman-9999 b/metadata/md5-cache/app-portage/layman-9999 index e7bb7d96fbed..44df1ce7b306 100644 --- a/metadata/md5-cache/app-portage/layman-9999 +++ b/metadata/md5-cache/app-portage/layman-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=bazaar? ( dev-vcs/bzr ) cvs? ( dev-vcs/cvs ) darcs? ( dev-vcs/darcs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( || ( >=dev-vcs/subversion-1.5.4[webdav-neon] >=dev-vcs/subversion-1.5.4[webdav-serf] ) ) gpg? ( =dev-python/pyGPG-9999 ) virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] >=dev-python/requests-1.2.1 dev-python/ndg-httpsclient dev-python/pyasn1 >=dev-python/pyopenssl-0.13 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml(+)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml(+)] ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0[xml(+)] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a5616b96072596d8c14046a6d1d0f6e8 diff --git a/metadata/md5-cache/app-portage/mirrorselect-2.2.0.1 b/metadata/md5-cache/app-portage/mirrorselect-2.2.0.1 index 79a84d2217eb..e78e0554ff04 100644 --- a/metadata/md5-cache/app-portage/mirrorselect-2.2.0.1 +++ b/metadata/md5-cache/app-portage/mirrorselect-2.2.0.1 @@ -10,5 +10,5 @@ RDEPEND=dev-util/dialog net-analyzer/netselect python_targets_python2_6? ( >=dev REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~dolsen/distfiles/mirrorselect-2.2.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e730a0adf054c63f6a4866b3ccc9978c diff --git a/metadata/md5-cache/app-portage/mirrorselect-9999 b/metadata/md5-cache/app-portage/mirrorselect-9999 index f4e9573698a5..d7788e8a564f 100644 --- a/metadata/md5-cache/app-portage/mirrorselect-9999 +++ b/metadata/md5-cache/app-portage/mirrorselect-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=dev-util/dialog net-analyzer/netselect python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[xml] ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2[xml] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[xml] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c367026264e0aff2dd7a31973bc43c30 diff --git a/metadata/md5-cache/app-portage/overlint-0.5.2 b/metadata/md5-cache/app-portage/overlint-0.5.2 index d24ca5427c98..c08306475a73 100644 --- a/metadata/md5-cache/app-portage/overlint-0.5.2 +++ b/metadata/md5-cache/app-portage/overlint-0.5.2 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://www.hartwork.org/public/overlint-0.5.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=14ee4278e13b722db9bf3ba7ee6f9a0c diff --git a/metadata/md5-cache/app-portage/pfl-2.4-r1 b/metadata/md5-cache/app-portage/pfl-2.4-r1 index 27abd4986d4b..390c3d3a23ee 100644 --- a/metadata/md5-cache/app-portage/pfl-2.4-r1 +++ b/metadata/md5-cache/app-portage/pfl-2.4-r1 @@ -10,5 +10,5 @@ RDEPEND=net-misc/curl sys-apps/portage python_targets_python2_6? ( >=dev-lang/py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://files.portagefilelist.de/pfl-2.4.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ff106d56af842de05ed81f1d414ff4f6 diff --git a/metadata/md5-cache/app-portage/smart-live-rebuild-1.3 b/metadata/md5-cache/app-portage/smart-live-rebuild-1.3 index 3f5b69413826..1bfba7716da1 100644 --- a/metadata/md5-cache/app-portage/smart-live-rebuild-1.3 +++ b/metadata/md5-cache/app-portage/smart-live-rebuild-1.3 @@ -10,5 +10,5 @@ RDEPEND=>=app-portage/gentoopm-0.2.1[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/smart-live-rebuild/downloads/smart-live-rebuild-1.3.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e5f6046cf8ce0476252a1074850acb52 diff --git a/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.2 b/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.2 index 2ff5d1e1328f..46fd3abfa2f2 100644 --- a/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.2 +++ b/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.2 @@ -10,5 +10,5 @@ RDEPEND=>=app-portage/gentoopm-0.2.1[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/smart-live-rebuild/downloads/smart-live-rebuild-1.3.2.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d11709246c438773e1abbd8640b8d2a0 diff --git a/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.3 b/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.3 index 83be744337a7..efb0f3171701 100644 --- a/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.3 +++ b/metadata/md5-cache/app-portage/smart-live-rebuild-1.3.3 @@ -10,5 +10,5 @@ RDEPEND=>=app-portage/gentoopm-0.2.1[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/smart-live-rebuild/downloads/smart-live-rebuild-1.3.3.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b76d3638795285d88c912db5c345f486 diff --git a/metadata/md5-cache/app-portage/smart-live-rebuild-9999 b/metadata/md5-cache/app-portage/smart-live-rebuild-9999 index 72c7c08821b8..c506f40300a4 100644 --- a/metadata/md5-cache/app-portage/smart-live-rebuild-9999 +++ b/metadata/md5-cache/app-portage/smart-live-rebuild-9999 @@ -8,5 +8,5 @@ LICENSE=BSD-2 RDEPEND=>=app-portage/gentoopm-0.2.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f27fb7266024b950ec8fb674427616fc diff --git a/metadata/md5-cache/app-portage/tatt-0.1 b/metadata/md5-cache/app-portage/tatt-0.1 index 88c3f4cd2c1d..7f221a40ba7f 100644 --- a/metadata/md5-cache/app-portage/tatt-0.1 +++ b/metadata/md5-cache/app-portage/tatt-0.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/tom111/tatt/archive/v0.1.tar.gz -> tatt-0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2f653e3727ee3ed9aadfd87bbb15702 diff --git a/metadata/md5-cache/app-portage/tatt-9999 b/metadata/md5-cache/app-portage/tatt-9999 index 48843b18aeb3..05f257f9b1f5 100644 --- a/metadata/md5-cache/app-portage/tatt-9999 +++ b/metadata/md5-cache/app-portage/tatt-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] app-portage/eix app-portage/gentoolkit www-client/pybugz dev-python/configobj python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a726f4726096a0f0d04c2d4a68e11500 diff --git a/metadata/md5-cache/app-text/active-dvi-1.10.2-r1 b/metadata/md5-cache/app-text/active-dvi-1.10.2-r1 index 1f30c16f4506..7588db6e2243 100644 --- a/metadata/md5-cache/app-text/active-dvi-1.10.2-r1 +++ b/metadata/md5-cache/app-text/active-dvi-1.10.2-r1 @@ -10,4 +10,4 @@ RDEPEND=>=dev-lang/ocaml-3.11.2:=[ocamlopt?] >=dev-ml/camlimages-4.0.1:=[truetyp SLOT=0 SRC_URI=http://gallium.inria.fr/advi/advi-1.10.2.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e texlive-common 04b9b0d6ae9d9855e9221a0dbf4acd9e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=65819cf25b067cf90e1d787e1b3fd708 +_md5_=83bad9747baef31a791b27e206760e4a diff --git a/metadata/md5-cache/app-text/djvusmooth-0.2.14 b/metadata/md5-cache/app-text/djvusmooth-0.2.14 index 41232ddc261e..3a313333bcaf 100644 --- a/metadata/md5-cache/app-text/djvusmooth-0.2.14 +++ b/metadata/md5-cache/app-text/djvusmooth-0.2.14 @@ -10,5 +10,5 @@ RDEPEND=dev-python/python-djvulibre[python_targets_python2_7(-)?,-python_single_ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/djvusmooth/djvusmooth-0.2.14.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2bb729b46eca1fb46a0f83cd101cda6 diff --git a/metadata/md5-cache/app-text/fbless-0.2.2-r1 b/metadata/md5-cache/app-text/fbless-0.2.2-r1 index 18f31b1ae61e..10abc4151c36 100644 --- a/metadata/md5-cache/app-text/fbless-0.2.2-r1 +++ b/metadata/md5-cache/app-text/fbless-0.2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses,xml] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://github/matimatik/fbless/fbless-0.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6ed363cf6435032d495bb4e88cb0927b diff --git a/metadata/md5-cache/app-text/fbless-9999 b/metadata/md5-cache/app-text/fbless-9999 index ae22648a1dce..cae4f1281897 100644 --- a/metadata/md5-cache/app-text/fbless-9999 +++ b/metadata/md5-cache/app-text/fbless-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[ncurses,xml] ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=53fdf39e210e965cc5883079996f9fd4 diff --git a/metadata/md5-cache/app-text/keepnote-0.7.8-r1 b/metadata/md5-cache/app-text/keepnote-0.7.8-r1 index 59c6a76ca13c..eb02d3de19f2 100644 --- a/metadata/md5-cache/app-text/keepnote-0.7.8-r1 +++ b/metadata/md5-cache/app-text/keepnote-0.7.8-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygobject:2 dev-python/pygtk:2 x11-misc/xdg-utils python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://keepnote.org/download-test/keepnote-0.7.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c0e2de83ac99e4e0bbb077306ccc1f1d diff --git a/metadata/md5-cache/app-text/keepnote-0.7.9-r2 b/metadata/md5-cache/app-text/keepnote-0.7.9-r2 index 5334e8008deb..85ff096176da 100644 --- a/metadata/md5-cache/app-text/keepnote-0.7.9-r2 +++ b/metadata/md5-cache/app-text/keepnote-0.7.9-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygobject:2 dev-python/pygtk:2 x11-misc/xdg-utils python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://keepnote.org/download-test/keepnote-0.7.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7978ee7490f6943fe19fd5f6f4124be6 diff --git a/metadata/md5-cache/app-text/pelican-3.1.1-r1 b/metadata/md5-cache/app-text/pelican-3.1.1-r1 index 86bfa0812540..1ecba1d6e3db 100644 --- a/metadata/md5-cache/app-text/pelican-3.1.1-r1 +++ b/metadata/md5-cache/app-text/pelican-3.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pelican/pelican-3.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f258a06c39e3083c0194135842f59d62 diff --git a/metadata/md5-cache/app-text/pelican-3.2 b/metadata/md5-cache/app-text/pelican-3.2 index 0d5a36f9ed0f..79c1abc6e873 100644 --- a/metadata/md5-cache/app-text/pelican-3.2 +++ b/metadata/md5-cache/app-text/pelican-3.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pelican/pelican-3.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=64cc0ae4704f7495abc3dd6c04883e36 diff --git a/metadata/md5-cache/app-text/pelican-3.2.1 b/metadata/md5-cache/app-text/pelican-3.2.1 index ca228c7bd07a..3239f6003f63 100644 --- a/metadata/md5-cache/app-text/pelican-3.2.1 +++ b/metadata/md5-cache/app-text/pelican-3.2.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pelican/pelican-3.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=70241c8910d76f2c407e772b35bb0f30 diff --git a/metadata/md5-cache/app-text/pelican-3.2.2 b/metadata/md5-cache/app-text/pelican-3.2.2 index fc8b87c4a1d1..fbe4581e3b8e 100644 --- a/metadata/md5-cache/app-text/pelican-3.2.2 +++ b/metadata/md5-cache/app-text/pelican-3.2.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pelican/pelican-3.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4f0bdf46cf582b6c3196230e5e3f2406 diff --git a/metadata/md5-cache/app-text/pylize-1.3b-r1 b/metadata/md5-cache/app-text/pylize-1.3b-r1 index d6a3e7753d13..36623207bf06 100644 --- a/metadata/md5-cache/app-text/pylize-1.3b-r1 +++ b/metadata/md5-cache/app-text/pylize-1.3b-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/empy[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=http://www.chrisarndt.de/en/software/pylize/download/pylize-1.3b.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=956def401f022b3e285419178c50dd58 diff --git a/metadata/md5-cache/dev-db/barman-1.2.1 b/metadata/md5-cache/dev-db/barman-1.2.1 index dbe6e0329711..f90392438939 100644 --- a/metadata/md5-cache/dev-db/barman-1.2.1 +++ b/metadata/md5-cache/dev-db/barman-1.2.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/argh[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://downloads.sourceforge.net/project/pgbarman/1.2.1/barman-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4fab1a9464ffd86d808426c401f9f386 diff --git a/metadata/md5-cache/dev-db/barman-1.2.2 b/metadata/md5-cache/dev-db/barman-1.2.2 index 64f5e6332ee9..2e2ec93ffaf9 100644 --- a/metadata/md5-cache/dev-db/barman-1.2.2 +++ b/metadata/md5-cache/dev-db/barman-1.2.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/argh[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://downloads.sourceforge.net/project/pgbarman/1.2.2/barman-1.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=529ca316746890ce99c9335dbd986ee3 diff --git a/metadata/md5-cache/dev-embedded/bitbake-1.17.0 b/metadata/md5-cache/dev-embedded/bitbake-1.17.0 index dbb8a8e7678a..4695b6a3a4d3 100644 --- a/metadata/md5-cache/dev-embedded/bitbake-1.17.0 +++ b/metadata/md5-cache/dev-embedded/bitbake-1.17.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/ply dev-python/progressbar python_targets_python2_6? ( >=dev- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/openembedded/bitbake/archive/1.17.0.tar.gz -> bitbake-1.17.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=6b4d2848a63df5fe72542cb91848788e diff --git a/metadata/md5-cache/dev-embedded/bitbake-9999 b/metadata/md5-cache/dev-embedded/bitbake-9999 index 24f7212b618d..f8248ab9586d 100644 --- a/metadata/md5-cache/dev-embedded/bitbake-9999 +++ b/metadata/md5-cache/dev-embedded/bitbake-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/ply dev-python/progressbar python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[sqlite] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=534320d8f5cbbfbcfb2ff58850320833 diff --git a/metadata/md5-cache/dev-haskell/case-insensitive-1.1.0.1 b/metadata/md5-cache/dev-haskell/case-insensitive-1.1.0.1 new file mode 100644 index 000000000000..8f8535de13de --- /dev/null +++ b/metadata/md5-cache/dev-haskell/case-insensitive-1.1.0.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prepare prerm setup test +DEPEND=>=dev-haskell/deepseq-1.1:=[profile?] =dev-haskell/hashable-1.0:=[profile?] =dev-haskell/text-0.3:=[profile?] =dev-lang/ghc-6.10.4:= >=dev-haskell/cabal-1.8 test? ( >=dev-haskell/hunit-1.2.2 =dev-haskell/test-framework-0.2.4 =dev-haskell/test-framework-hunit-0.2.4 =dev-haskell/cabal-1.1.4 +DESCRIPTION=Case insensitive string comparison +EAPI=5 +HOMEPAGE=https://github.com/basvandijk/case-insensitive +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/deepseq-1.1:=[profile?] =dev-haskell/hashable-1.0:=[profile?] =dev-haskell/text-0.3:=[profile?] =dev-lang/ghc-6.10.4:= +SLOT=0/1.1.0.1 +SRC_URI=mirror://hackage/packages/archive/case-insensitive/1.1.0.1/case-insensitive-1.1.0.1.tar.gz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 ghc-package 2d57c65a8826a1c4234d2de7f1b9f486 haskell-cabal 48f0813cd6c66200944782b078f0a188 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=70a6f8da91d86190243094fc303665dc diff --git a/metadata/md5-cache/dev-haskell/monad-control-0.3.2.2 b/metadata/md5-cache/dev-haskell/monad-control-0.3.2.2 new file mode 100644 index 000000000000..cb71a0ef5fa8 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/monad-control-0.3.2.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prerm setup test +DEPEND=>=dev-haskell/base-unicode-symbols-0.1.1:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-haskell/transformers-base-0.4.1:=[profile?] =dev-lang/ghc-6.10.4:= >=dev-haskell/cabal-1.6.0.3 doc? ( dev-haskell/haddock ) hscolour? ( dev-haskell/hscolour ) >=dev-haskell/cabal-1.1.4 +DESCRIPTION=Lift control operations, like exception catching, through monad transformers +EAPI=5 +HOMEPAGE=https://github.com/basvandijk/monad-control +IUSE=+instancest doc hscolour profile +KEYWORDS=~amd64 ~x86 ~amd64-linux +LICENSE=BSD +RDEPEND=>=dev-haskell/base-unicode-symbols-0.1.1:=[profile?] =dev-haskell/transformers-0.2:=[profile?] =dev-haskell/transformers-base-0.4.1:=[profile?] =dev-lang/ghc-6.10.4:= +SLOT=0/0.3.2.2 +SRC_URI=mirror://hackage/packages/archive/monad-control/0.3.2.2/monad-control-0.3.2.2.tar.gz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 ghc-package 2d57c65a8826a1c4234d2de7f1b9f486 haskell-cabal 48f0813cd6c66200944782b078f0a188 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=4da65dcb19af2f50b34bebb05d943377 diff --git a/metadata/md5-cache/dev-haskell/path-pieces-0.1.3 b/metadata/md5-cache/dev-haskell/path-pieces-0.1.3 new file mode 100644 index 000000000000..65450e9ee389 --- /dev/null +++ b/metadata/md5-cache/dev-haskell/path-pieces-0.1.3 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst prerm setup test +DEPEND=>=dev-haskell/text-0.5:=[profile?] =dev-lang/ghc-6.12.1:= >=dev-haskell/cabal-1.8.0.2 test? ( >=dev-haskell/hspec-1.3 dev-haskell/hunit dev-haskell/quickcheck ) doc? ( dev-haskell/haddock ) hscolour? ( dev-haskell/hscolour ) >=dev-haskell/cabal-1.1.4 +DESCRIPTION=Components of paths. +EAPI=5 +HOMEPAGE=http://hackage.haskell.org/package/path-pieces +IUSE=doc hscolour profile test +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-haskell/text-0.5:=[profile?] =dev-lang/ghc-6.12.1:= +SLOT=0/0.1.3 +SRC_URI=mirror://hackage/packages/archive/path-pieces/0.1.3/path-pieces-0.1.3.tar.gz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 ghc-package 2d57c65a8826a1c4234d2de7f1b9f486 haskell-cabal 48f0813cd6c66200944782b078f0a188 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=c03ad1c1cca1e3207049c8297167ef56 diff --git a/metadata/md5-cache/dev-java/antlr-2.7.7-r1 b/metadata/md5-cache/dev-java/antlr-2.7.7-r1 index d89c8b9d5db2..72fcd1f35a20 100644 --- a/metadata/md5-cache/dev-java/antlr-2.7.7-r1 +++ b/metadata/md5-cache/dev-java/antlr-2.7.7-r1 @@ -10,5 +10,5 @@ RDEPEND=python? ( python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2 REQUIRED_USE=python? ( python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) ) SLOT=0 SRC_URI=http://www.antlr2.org/download/antlr-2.7.7.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=467c31e8b2e4082a9c0de54fedf3c244 diff --git a/metadata/md5-cache/dev-java/antlr-2.7.7-r3 b/metadata/md5-cache/dev-java/antlr-2.7.7-r3 index 3d8b98638837..f73929930063 100644 --- a/metadata/md5-cache/dev-java/antlr-2.7.7-r3 +++ b/metadata/md5-cache/dev-java/antlr-2.7.7-r3 @@ -10,5 +10,5 @@ RDEPEND=python? ( python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2 REQUIRED_USE=python? ( python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) ) SLOT=0 SRC_URI=http://www.antlr2.org/download/antlr-2.7.7.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a1b0263e3e79038bd0e73faa3a5b4474 diff --git a/metadata/md5-cache/dev-java/antlr-2.7.7-r4 b/metadata/md5-cache/dev-java/antlr-2.7.7-r4 index 791bd368bc24..c0a4f924651f 100644 --- a/metadata/md5-cache/dev-java/antlr-2.7.7-r4 +++ b/metadata/md5-cache/dev-java/antlr-2.7.7-r4 @@ -10,5 +10,5 @@ RDEPEND=python? ( python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2 REQUIRED_USE=python? ( python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) ) SLOT=0 SRC_URI=http://www.antlr2.org/download/antlr-2.7.7.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d86d6685759a65fe58b9fd6734f5c178 diff --git a/metadata/md5-cache/dev-java/antlr-2.7.7-r5 b/metadata/md5-cache/dev-java/antlr-2.7.7-r5 index 9d985ae818a3..e103f47c40d8 100644 --- a/metadata/md5-cache/dev-java/antlr-2.7.7-r5 +++ b/metadata/md5-cache/dev-java/antlr-2.7.7-r5 @@ -10,5 +10,5 @@ RDEPEND=python? ( python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2 REQUIRED_USE=python? ( python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) ) SLOT=0 SRC_URI=http://www.antlr2.org/download/antlr-2.7.7.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 mono 203a4295c06155d318bdff9c6b2d5e1c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=473ac2620bc051126db1e8cdb5785a0d diff --git a/metadata/md5-cache/dev-java/glassfish-ejb-api-3.2 b/metadata/md5-cache/dev-java/glassfish-ejb-api-3.2 new file mode 100644 index 000000000000..6e8a72cd52a5 --- /dev/null +++ b/metadata/md5-cache/dev-java/glassfish-ejb-api-3.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup +DEPEND=>=virtual/jdk-1.7 java-virtuals/xmlrpc-api:0 java-virtuals/transaction-api:0 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 >=dev-lang/python-2.4 +DESCRIPTION=Project GlassFish Enterprise JavaBean API +EAPI=5 +HOMEPAGE=https://glassfish.java.net/ +IUSE=elibc_FreeBSD doc source elibc_FreeBSD +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.7 java-virtuals/xmlrpc-api:0 java-virtuals/transaction-api:0 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) +SLOT=0 +SRC_URI=http://dev.gentoo.org/~tomwij/files/dist/glassfish-ejb-api-3.2.tar.xz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-ant-2 8f79fa38524086d2b7d4e9cd442ca6cc java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=176be255911428c46455ad385a827334 diff --git a/metadata/md5-cache/dev-java/glassfish-interceptor-api-3.1 b/metadata/md5-cache/dev-java/glassfish-interceptor-api-3.1 new file mode 100644 index 000000000000..aae8cd18d3c4 --- /dev/null +++ b/metadata/md5-cache/dev-java/glassfish-interceptor-api-3.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup +DEPEND=>=virtual/jdk-1.7 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 >=dev-lang/python-2.4 +DESCRIPTION=Project GlassFish Interceptor API +EAPI=5 +HOMEPAGE=https://glassfish.java.net/ +IUSE=elibc_FreeBSD doc source elibc_FreeBSD +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.7 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) +SLOT=0 +SRC_URI=http://dev.gentoo.org/~tomwij/files/dist/glassfish-interceptor-api-3.1.tar.xz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-ant-2 8f79fa38524086d2b7d4e9cd442ca6cc java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=8d32ced08c3a01233dba495e46f942d2 diff --git a/metadata/md5-cache/dev-java/glassfish-xmlrpc-api-1.1.1 b/metadata/md5-cache/dev-java/glassfish-xmlrpc-api-1.1.1 new file mode 100644 index 000000000000..142e5097c9c5 --- /dev/null +++ b/metadata/md5-cache/dev-java/glassfish-xmlrpc-api-1.1.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup +DEPEND=>=virtual/jdk-1.7 java-virtuals/servlet-api:3.0 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 >=dev-lang/python-2.4 +DESCRIPTION=Project GlassFish XML RPC API +EAPI=5 +HOMEPAGE=https://glassfish.java.net/ +IUSE=elibc_FreeBSD doc source elibc_FreeBSD +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.7 java-virtuals/servlet-api:3.0 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) +SLOT=0 +SRC_URI=http://dev.gentoo.org/~tomwij/files/dist/glassfish-xmlrpc-api-1.1.1.tar.xz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-ant-2 8f79fa38524086d2b7d4e9cd442ca6cc java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=c8d28fe6f1a7e13dc9e770119903debc diff --git a/metadata/md5-cache/dev-java/groovy-1.8.5-r1 b/metadata/md5-cache/dev-java/groovy-1.8.5-r1 new file mode 100644 index 000000000000..7f11dc95cc65 --- /dev/null +++ b/metadata/md5-cache/dev-java/groovy-1.8.5-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test unpack +DEPEND=>=virtual/jdk-1.5 dev-java/ant-ivy:2 doc? ( dev-java/qdox:1.12 dev-java/commons-logging:0 ) test? ( dev-java/jmock:1.0 dev-java/xmlunit:1 dev-db/hsqldb:0 dev-java/commons-logging:0 dev-java/ant-junit:0 dev-java/ant-trax:0 ) >=dev-java/asm-3.2:3 >=dev-java/ant-core-1.8.0:0 >=dev-java/junit-4.6:4 dev-java/antlr:0 dev-java/xstream:0 dev-java/jline:0 dev-java/commons-cli:1 dev-java/jansi:0 java-virtuals/servlet-api:2.4 >=dev-java/bsf-2.4:2.3 java-virtuals/jmx:0 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 dev-java/ant-antlr >=dev-java/javatoolkit-0.3.0-r2 >=dev-lang/python-2.4 +DESCRIPTION=Groovy is a high-level dynamic language for the JVM +EAPI=3 +HOMEPAGE=http://groovy.codehaus.org/ +IUSE=test elibc_FreeBSD doc source elibc_FreeBSD +KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=codehaus-groovy +RDEPEND=>=virtual/jre-1.5 >=dev-java/asm-3.2:3 >=dev-java/ant-core-1.8.0:0 >=dev-java/junit-4.6:4 dev-java/antlr:0 dev-java/xstream:0 dev-java/jline:0 dev-java/commons-cli:1 dev-java/jansi:0 java-virtuals/servlet-api:2.4 >=dev-java/bsf-2.4:2.3 java-virtuals/jmx:0 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) +RESTRICT=test +SLOT=0 +SRC_URI=http://dist.groovy.codehaus.org/distributions/groovy-src-1.8.5.zip +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-ant-2 8f79fa38524086d2b7d4e9cd442ca6cc java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=ed50e0f6f09e5c5b7ed3135a017e6ec3 diff --git a/metadata/md5-cache/dev-java/java-config-2.1.12-r1 b/metadata/md5-cache/dev-java/java-config-2.1.12-r1 index 26ec7c3530d7..b20a7c81cca6 100644 --- a/metadata/md5-cache/dev-java/java-config-2.1.12-r1 +++ b/metadata/md5-cache/dev-java/java-config-2.1.12-r1 @@ -12,5 +12,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=2 SRC_URI=mirror://gentoo/java-config-2.1.12.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=60442ce919d491576df41d1bca5554a3 diff --git a/metadata/md5-cache/dev-java/java-config-2.2.0 b/metadata/md5-cache/dev-java/java-config-2.2.0 index 5932c63397ce..e62e6ec14351 100644 --- a/metadata/md5-cache/dev-java/java-config-2.2.0 +++ b/metadata/md5-cache/dev-java/java-config-2.2.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-java/java-config-wrapper-0.15 sys-apps/baselayout-java sys-apps/po REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=2 SRC_URI=http://dev.gentoo.org/~sera/distfiles/java-config-2.2.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=13791aaf480deacf3723196cd0b8cc36 diff --git a/metadata/md5-cache/dev-java/javatoolkit-0.3.0-r9 b/metadata/md5-cache/dev-java/javatoolkit-0.3.0-r9 index 9de8d7267904..e2876cac26c0 100644 --- a/metadata/md5-cache/dev-java/javatoolkit-0.3.0-r9 +++ b/metadata/md5-cache/dev-java/javatoolkit-0.3.0-r9 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml(+)] ) pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/javatoolkit-0.3.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eda02f9f3403517baaf4003705c84fdc diff --git a/metadata/md5-cache/dev-java/jnr-enxio-0.4 b/metadata/md5-cache/dev-java/jnr-enxio-0.4 index af85bc7855f7..4f9d4a9368ed 100644 --- a/metadata/md5-cache/dev-java/jnr-enxio-0.4 +++ b/metadata/md5-cache/dev-java/jnr-enxio-0.4 @@ -10,4 +10,4 @@ RDEPEND=dev-java/jnr-constants:0 dev-java/jnr-ffi:0.7 >=virtual/jre-1.5 >=dev-ja SLOT=0 SRC_URI=http://github.com/jnr/jnr-enxio/archive/0.4.tar.gz -> jnr-enxio-0.4.tar.gz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-ant-2 8f79fa38524086d2b7d4e9cd442ca6cc java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=c71bca9ef2b5d9b382a8808989c411fb +_md5_=400cc6d13969ffce97529aa92abc7e0c diff --git a/metadata/md5-cache/dev-java/jnr-unixsocket-0.3 b/metadata/md5-cache/dev-java/jnr-unixsocket-0.3 index c8d5e0281965..e9993395a179 100644 --- a/metadata/md5-cache/dev-java/jnr-unixsocket-0.3 +++ b/metadata/md5-cache/dev-java/jnr-unixsocket-0.3 @@ -10,4 +10,4 @@ RDEPEND=dev-java/jnr-constants:0 dev-java/jnr-enxio:0 dev-java/jnr-ffi:0.7 >=vir SLOT=0 SRC_URI=http://github.com/jnr/jnr-unixsocket/archive/0.3.tar.gz -> jnr-unixsocket-0.3.tar.gz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-ant-2 8f79fa38524086d2b7d4e9cd442ca6cc java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=73e92a6eeba957c842f12e929c7604f1 +_md5_=32ba59bc71d30cb3e62c6bd9c96368de diff --git a/metadata/md5-cache/dev-java/spring-instrument-3.2.4 b/metadata/md5-cache/dev-java/spring-instrument-3.2.4 new file mode 100644 index 000000000000..0d224e36c7e5 --- /dev/null +++ b/metadata/md5-cache/dev-java/spring-instrument-3.2.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=>=virtual/jdk-1.7 test? ( dev-java/ant-junit4:0 dev-java/hamcrest-core:1.3 dev-java/hamcrest-library:1.3 dev-java/junit:4 dev-java/mockito:0 dev-java/spring-core:3.2 dev-java/xmlunit:1 ) >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) >=dev-java/ant-core-1.8.2 >=dev-java/javatoolkit-0.3.0-r2 >=dev-lang/python-2.4 +DESCRIPTION=A comprehensive programming and configuration model for modern Java-based enterprise applications +EAPI=5 +HOMEPAGE=http://www.springsource.org/spring-framework +IUSE=elibc_FreeBSD doc source test elibc_FreeBSD +KEYWORDS=~amd64 +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.7 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) +SLOT=3.2 +SRC_URI=https://github.com/SpringSource/spring-framework/archive/v3.2.4.RELEASE.tar.gz -> spring-framework-3.2.4.tar.gz http://dev.gentoo.org/~ercpe/distfiles/dev-java/spring-framework/spring-framework-3.2.4-buildscripts.tar.bz2 +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-ant-2 8f79fa38524086d2b7d4e9cd442ca6cc java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=dd03691a87553139e07758123e0b5fd0 diff --git a/metadata/md5-cache/dev-lang/go-1.1.2 b/metadata/md5-cache/dev-lang/go-1.1.2 index ea97da26a406..fa2704ce0084 100644 --- a/metadata/md5-cache/dev-lang/go-1.1.2 +++ b/metadata/md5-cache/dev-lang/go-1.1.2 @@ -4,10 +4,10 @@ DESCRIPTION=A concurrent garbage collected and typesafe programming language EAPI=5 HOMEPAGE=http://www.golang.org IUSE=bash-completion emacs vim-syntax zsh-completion -KEYWORDS=-* ~amd64 arm ~x86 +KEYWORDS=-* amd64 arm x86 LICENSE=BSD RDEPEND=bash-completion? ( app-shells/bash-completion ) emacs? ( virtual/emacs ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) zsh-completion? ( app-shells/zsh-completion ) SLOT=0 SRC_URI=http://go.googlecode.com/files/go1.1.2.src.tar.gz _eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9525e093606f07e8b2fa8325a585b71d +_md5_=7adf638171d53b50d5ced45fc238cf1e diff --git a/metadata/md5-cache/dev-libs/cryptlib-3.4.0-r1 b/metadata/md5-cache/dev-libs/cryptlib-3.4.0-r1 index ea943e3c27bc..9f28d8f58c05 100644 --- a/metadata/md5-cache/dev-libs/cryptlib-3.4.0-r1 +++ b/metadata/md5-cache/dev-libs/cryptlib-3.4.0-r1 @@ -9,5 +9,5 @@ LICENSE=Sleepycat RDEPEND=sys-libs/zlib ldap? ( net-nds/openldap ) odbc? ( dev-db/unixODBC ) python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] ) SLOT=0 SRC_URI=ftp://ftp.franken.de/pub/crypt/cryptlib/cl340.zip doc? ( mirror://gentoo/cryptlib-3.4.0-manual.pdf.bz2 ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8228fd5858d6f6659a0422649e81087b diff --git a/metadata/md5-cache/dev-libs/glib-2.36.4-r1 b/metadata/md5-cache/dev-libs/glib-2.36.4-r1 index 5cdb35e73cd1..2bcb554b3c8e 100644 --- a/metadata/md5-cache/dev-libs/glib-2.36.4-r1 +++ b/metadata/md5-cache/dev-libs/glib-2.36.4-r1 @@ -11,4 +11,4 @@ RDEPEND=virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_ SLOT=2 SRC_URI=mirror://gnome/sources/glib/2.36/glib-2.36.4.tar.xz http://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 bash-completion-r1 d339dd40b2014cf1edba8592580eef42 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 0bf1bbb0a7a26fc4daf3e660ef004ee5 multilib-minimal 6d23cf688d036d6971741fb66703f6f7 multiprocessing 89580da5ec17ad687fcde876c542b91e pax-utils 2424f959506320f5196de8f79fa05297 python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=aeed187e21fa5f41bf55965f5f395275 +_md5_=26fd1c791b03844382a01d919255b36b diff --git a/metadata/md5-cache/dev-libs/gmp-5.1.2 b/metadata/md5-cache/dev-libs/gmp-5.1.2 index 35eedcdffe38..95daa6e800f8 100644 --- a/metadata/md5-cache/dev-libs/gmp-5.1.2 +++ b/metadata/md5-cache/dev-libs/gmp-5.1.2 @@ -3,9 +3,9 @@ DEPEND=sys-devel/m4 app-arch/xz-utils DESCRIPTION=Library for arithmetic on arbitrary precision integers, rational numbers, and floating-point numbers HOMEPAGE=http://gmplib.org/ IUSE=doc cxx pgo static-libs -KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +KEYWORDS=~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=LGPL-3 SLOT=0 SRC_URI=mirror://gnu/gmp/gmp-5.1.2.tar.xz ftp://ftp.gmplib.org/pub/gmp-5.1.2/gmp-5.1.2.tar.xz doc? ( http://gmplib.org/gmp-man-5.1.2.pdf ) _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a315d73d562e56a082e6d3481568bb5d +_md5_=5280e88c2305ff12f4c7984579b4f833 diff --git a/metadata/md5-cache/dev-libs/gobject-introspection-common-1.36.0 b/metadata/md5-cache/dev-libs/gobject-introspection-common-1.36.0 index cedc639274fc..a179501a0fe7 100644 --- a/metadata/md5-cache/dev-libs/gobject-introspection-common-1.36.0 +++ b/metadata/md5-cache/dev-libs/gobject-introspection-common-1.36.0 @@ -9,4 +9,4 @@ RDEPEND=!=media-libs/libcddb-1.0.1 ) !minimal? ( >=sys-libs/ncurses-5.7-r7 ) virtual/libintl !dev-libs/libcdio-paranoia SLOT=0 SRC_URI=mirror://gnu/libcdio/libcdio-0.83.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=23a7d1619872836658f0e476fcb3de5b +_md5_=a0a846362f2d0298b2d9ee8fae10336b diff --git a/metadata/md5-cache/dev-libs/libcdio-0.90 b/metadata/md5-cache/dev-libs/libcdio-0.90 index 9094b5b20984..703d2ed39dd6 100644 --- a/metadata/md5-cache/dev-libs/libcdio-0.90 +++ b/metadata/md5-cache/dev-libs/libcdio-0.90 @@ -4,10 +4,10 @@ DESCRIPTION=A library to encapsulate CD-ROM reading and control EAPI=5 HOMEPAGE=http://www.gnu.org/software/libcdio/ IUSE=cddb +cxx minimal static-libs test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-3 RDEPEND=cddb? ( >=media-libs/libcddb-1.3.2 ) !minimal? ( >=sys-libs/ncurses-5.7-r7 ) virtual/libintl SLOT=0 SRC_URI=mirror://gnu/libcdio/libcdio-0.90.tar.gz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d1fca5aadb7d5b37538765ebc869d135 +_md5_=c1042b7e171679ca1c15d87d5c0d7db4 diff --git a/metadata/md5-cache/dev-libs/libcdio-0.90-r1 b/metadata/md5-cache/dev-libs/libcdio-0.90-r1 index 43a3d532254a..449a3ebdfc37 100644 --- a/metadata/md5-cache/dev-libs/libcdio-0.90-r1 +++ b/metadata/md5-cache/dev-libs/libcdio-0.90-r1 @@ -4,10 +4,10 @@ DESCRIPTION=A library to encapsulate CD-ROM reading and control EAPI=5 HOMEPAGE=http://www.gnu.org/software/libcdio/ IUSE=cddb +cxx minimal static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-3 RDEPEND=!minimal? ( >=sys-libs/ncurses-5.7-r7 cddb? ( >=media-libs/libcddb-1.3.2 ) ) virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r10 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] ) SLOT=0 SRC_URI=mirror://gnu/libcdio/libcdio-0.90.tar.gz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 0bf1bbb0a7a26fc4daf3e660ef004ee5 multilib-minimal 6d23cf688d036d6971741fb66703f6f7 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ab1adfa8573cee9f7d58737d10bfe399 +_md5_=1031da0b865c03ba06e8e51e68ff23e3 diff --git a/metadata/md5-cache/dev-libs/libcdio-paranoia-0.90_p1 b/metadata/md5-cache/dev-libs/libcdio-paranoia-0.90_p1 index 9826071863be..cbefdd089df9 100644 --- a/metadata/md5-cache/dev-libs/libcdio-paranoia-0.90_p1 +++ b/metadata/md5-cache/dev-libs/libcdio-paranoia-0.90_p1 @@ -4,10 +4,10 @@ DESCRIPTION=an advanced CDDA reader with error correction EAPI=5 HOMEPAGE=http://www.gnu.org/software/libcdio/ IUSE=+cxx static-libs test -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-3+ GPL-2+ LGPL-2.1 RDEPEND=app-admin/eselect-cdparanoia >=dev-libs/libcdio-0.90 virtual/libintl SLOT=0 SRC_URI=mirror://gnu/libcdio/libcdio-paranoia-10.2+0.90+1.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=f9daa0a7e34f237dbd0e787a8e808272 +_md5_=3c0eae9c8de81eb278dc6396e76d1cc3 diff --git a/metadata/md5-cache/dev-libs/libcdio-paranoia-0.90_p1-r1 b/metadata/md5-cache/dev-libs/libcdio-paranoia-0.90_p1-r1 index 1dc668e1ab8a..d1d7578a0268 100644 --- a/metadata/md5-cache/dev-libs/libcdio-paranoia-0.90_p1-r1 +++ b/metadata/md5-cache/dev-libs/libcdio-paranoia-0.90_p1-r1 @@ -4,10 +4,10 @@ DESCRIPTION=an advanced CDDA reader with error correction EAPI=5 HOMEPAGE=http://www.gnu.org/software/libcdio/ IUSE=+cxx static-libs test abi_x86_32 abi_x86_64 abi_x86_x32 abi_mips_n32 abi_mips_n64 abi_mips_o32 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-3+ GPL-2+ LGPL-2.1 RDEPEND=app-admin/eselect-cdparanoia >=dev-libs/libcdio-0.90[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] virtual/libiconv[abi_x86_32(-)?,abi_x86_64(-)?,abi_x86_x32(-)?,abi_mips_n32(-)?,abi_mips_n64(-)?,abi_mips_o32(-)?] abi_x86_32? ( !<=app-emulation/emul-linux-x86-medialibs-20130224-r10 !app-emulation/emul-linux-x86-medialibs[-abi_x86_32(-)] ) SLOT=0 SRC_URI=mirror://gnu/libcdio/libcdio-paranoia-10.2+0.90+1.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-multilib c576ed7a3d3613a39130380c3d008357 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multilib-build 0bf1bbb0a7a26fc4daf3e660ef004ee5 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d1dc9a7c0172bf26e35e166c64c824bd +_md5_=78993cf7ed394458a18e5cdd3c7598e7 diff --git a/metadata/md5-cache/dev-libs/libdnet-1.12 b/metadata/md5-cache/dev-libs/libdnet-1.12 index 569ca72e0b4d..87797c6a03dc 100644 --- a/metadata/md5-cache/dev-libs/libdnet-1.12 +++ b/metadata/md5-cache/dev-libs/libdnet-1.12 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://libdnet.googlecode.com/files/libdnet-1.12.tgz ipv6? ( http://fragroute-ipv6.googlecode.com/files/libdnet-1.12.ipv6-1.patch.gz ) -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9babc8d2427972e7ab7db236c59737ee diff --git a/metadata/md5-cache/dev-libs/libkpass-3 b/metadata/md5-cache/dev-libs/libkpass-6 similarity index 58% rename from metadata/md5-cache/dev-libs/libkpass-3 rename to metadata/md5-cache/dev-libs/libkpass-6 index ff23593519e1..91715473613d 100644 --- a/metadata/md5-cache/dev-libs/libkpass-3 +++ b/metadata/md5-cache/dev-libs/libkpass-6 @@ -1,12 +1,12 @@ DEFINED_PHASES=configure install -DEPEND=>=dev-libs/openssl-1 +DEPEND=>=dev-libs/nettle-2.7.1 DESCRIPTION=Libkpass is a from-scratch C implementation of accessing KeePass 1.x format password databases -EAPI=4 +EAPI=5 HOMEPAGE=http://libkpass.sourceforge.net/ IUSE=static-libs KEYWORDS=~amd64 LICENSE=GPL-2 -RDEPEND=>=dev-libs/openssl-1 +RDEPEND=>=dev-libs/nettle-2.7.1 SLOT=0 -SRC_URI=mirror://sourceforge/libkpass/libkpass-3.tar.gz -_md5_=ae0cd202c8aad40b980ea716276b0c06 +SRC_URI=mirror://sourceforge/libkpass/libkpass-6.tar.gz +_md5_=efe208050d4a5abd8c4349b6efb8fb5a diff --git a/metadata/md5-cache/dev-libs/liblouis-2.5.3 b/metadata/md5-cache/dev-libs/liblouis-2.5.3 index 4a83638c82a3..598d07c2319f 100644 --- a/metadata/md5-cache/dev-libs/liblouis-2.5.3 +++ b/metadata/md5-cache/dev-libs/liblouis-2.5.3 @@ -10,5 +10,5 @@ RDEPEND=python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[wid REQUIRED_USE=python? ( || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) ) SLOT=0 SRC_URI=http://liblouis.googlecode.com/files/liblouis-2.5.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=44028631b67251671e239cc1cdce7fdf diff --git a/metadata/md5-cache/dev-libs/libnl-3.2.22-r2 b/metadata/md5-cache/dev-libs/libnl-3.2.22-r2 index eb59a5fdbba7..dbca9cc61ae5 100644 --- a/metadata/md5-cache/dev-libs/libnl-3.2.22-r2 +++ b/metadata/md5-cache/dev-libs/libnl-3.2.22-r2 @@ -10,5 +10,5 @@ RDEPEND=python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) p REQUIRED_USE=python? ( || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) ) SLOT=3 SRC_URI=http://www.infradead.org/~tgr/libnl/files/libnl-3.2.22.tar.gz doc? ( http://www.infradead.org/~tgr/libnl/files/libnl-doc-3.2.22.tar.gz ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9f01370a511079234fb984dc25d20506 diff --git a/metadata/md5-cache/dev-libs/libnl-3.2.9999 b/metadata/md5-cache/dev-libs/libnl-3.2.9999 new file mode 100644 index 000000000000..57ece0534474 --- /dev/null +++ b/metadata/md5-cache/dev-libs/libnl-3.2.9999 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare unpack +DEPEND=python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) python? ( dev-lang/swig ) sys-devel/flex sys-devel/bison || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool userland_GNU? ( >=sys-apps/coreutils-8.5 ) >=dev-vcs/git-1.8.2.1 +DESCRIPTION=A collection of libraries providing APIs to netlink protocol based Linux kernel interfaces +EAPI=5 +HOMEPAGE=http://www.infradead.org/~tgr/libnl/ +IUSE=doc static-libs python utils python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 +LICENSE=LGPL-2.1 doc? ( GPL-3 ) utils? ( GPL-2 ) +RDEPEND=python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) +REQUIRED_USE=python? ( || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) ) +SLOT=3 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=2d118252fab2a4058ff0eee067cb0c56 diff --git a/metadata/md5-cache/dev-libs/libtar-1.2.20-r2 b/metadata/md5-cache/dev-libs/libtar-1.2.20-r2 index bb3af8955e4e..13778efc2879 100644 --- a/metadata/md5-cache/dev-libs/libtar-1.2.20-r2 +++ b/metadata/md5-cache/dev-libs/libtar-1.2.20-r2 @@ -4,10 +4,10 @@ DESCRIPTION=C library for manipulating tar archives EAPI=5 HOMEPAGE=http://www.feep.net/libtar/ http://repo.or.cz/w/libtar.git/ IUSE=static-libs zlib -KEYWORDS=amd64 ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=amd64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-2 RDEPEND=zlib? ( sys-libs/zlib ) !zlib? ( app-arch/gzip ) SLOT=0 SRC_URI=http://dev.gentoo.org/~pinkbyte/distfiles/snapshots/libtar-1.2.20.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=765d76f0ed0027959f66256677d9ec48 +_md5_=e0325121b4483b389f8d55d7193ecc98 diff --git a/metadata/md5-cache/dev-libs/mpfr-3.1.2-r1 b/metadata/md5-cache/dev-libs/mpfr-3.1.2-r1 index dacb4250d0d5..ea78b27e3a4d 100644 --- a/metadata/md5-cache/dev-libs/mpfr-3.1.2-r1 +++ b/metadata/md5-cache/dev-libs/mpfr-3.1.2-r1 @@ -4,10 +4,10 @@ DESCRIPTION=library for multiple-precision floating-point computations with exac EAPI=3 HOMEPAGE=http://www.mpfr.org/ IUSE=static-libs -KEYWORDS=~alpha ~amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha ~amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/gmp-4.1.4-r2[static-libs?] SLOT=0 SRC_URI=http://www.mpfr.org/mpfr-3.1.2/mpfr-3.1.2.tar.xz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b405f6f73cda4095a69251dc37719be4 +_md5_=2e8eba9732381d810191e9646ce56435 diff --git a/metadata/md5-cache/dev-libs/openssl-1.0.1e-r2 b/metadata/md5-cache/dev-libs/openssl-1.0.1e-r2 new file mode 100644 index 000000000000..fed45de501de --- /dev/null +++ b/metadata/md5-cache/dev-libs/openssl-1.0.1e-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare test unpack +DEPEND=static-libs? ( gmp? ( dev-libs/gmp[static-libs(+)] ) zlib? ( sys-libs/zlib[static-libs(+)] ) kerberos? ( app-crypt/mit-krb5 ) ) !static-libs? ( gmp? ( dev-libs/gmp ) zlib? ( sys-libs/zlib ) kerberos? ( app-crypt/mit-krb5 ) ) !=dev-lang/perl-5 test? ( sys-devel/bc ) +DESCRIPTION=full-strength general purpose cryptography library (including SSL and TLS) +EAPI=4 +HOMEPAGE=http://www.openssl.org/ +IUSE=bindist gmp kerberos rfc3779 sse2 static-libs test +tls-heartbeat vanilla zlib +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux +LICENSE=openssl +PDEPEND=app-misc/ca-certificates +RDEPEND=static-libs? ( gmp? ( dev-libs/gmp[static-libs(+)] ) zlib? ( sys-libs/zlib[static-libs(+)] ) kerberos? ( app-crypt/mit-krb5 ) ) !static-libs? ( gmp? ( dev-libs/gmp ) zlib? ( sys-libs/zlib ) kerberos? ( app-crypt/mit-krb5 ) ) ! openssl-c_rehash.sh.1.7 +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=40ec8dc715b0fffba2cb637ad39a9c0f diff --git a/metadata/md5-cache/dev-libs/protobuf-2.5.0 b/metadata/md5-cache/dev-libs/protobuf-2.5.0 index a70a02e103a8..68f2737afe4e 100644 --- a/metadata/md5-cache/dev-libs/protobuf-2.5.0 +++ b/metadata/md5-cache/dev-libs/protobuf-2.5.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=emacs? ( virtual/emacs ) python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) java? ( >=virtual/jre-1.5 ) java? ( >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) ) SLOT=0/8 SRC_URI=http://protobuf.googlecode.com/files/protobuf-2.5.0.tar.bz2 -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=3a6df03a2d04fda6c10e0a664543ac90 diff --git a/metadata/md5-cache/dev-lua/luadbi-0.5-r3 b/metadata/md5-cache/dev-lua/luadbi-0.5-r3 index deb8bccb50e5..f0953e0d3ded 100644 --- a/metadata/md5-cache/dev-lua/luadbi-0.5-r3 +++ b/metadata/md5-cache/dev-lua/luadbi-0.5-r3 @@ -4,11 +4,11 @@ DESCRIPTION=DBI module for Lua EAPI=5 HOMEPAGE=http://code.google.com/p/luadbi/ IUSE=mysql postgres sqlite -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~x86 LICENSE=MIT RDEPEND=>=dev-lang/lua-5.1 mysql? ( virtual/mysql ) postgres? ( dev-db/postgresql-base ) sqlite? ( >=dev-db/sqlite-3 ) REQUIRED_USE=|| ( mysql postgres sqlite ) SLOT=0 SRC_URI=http://luadbi.googlecode.com/files/luadbi.0.5.tar.gz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=0a2e1f7f2815181bc4395210dfe09ecd +_md5_=27682bb09907846304243981c68468e2 diff --git a/metadata/md5-cache/dev-ml/camlimages-4.1.1 b/metadata/md5-cache/dev-ml/camlimages-4.1.1 new file mode 100644 index 000000000000..a3c215f181f4 --- /dev/null +++ b/metadata/md5-cache/dev-ml/camlimages-4.1.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install unpack +DEPEND=doc? ( dev-python/sphinx[latex] ) dev-util/omake virtual/pkgconfig dev-ml/findlib >=dev-ml/findlib-1.0.4-r1 +DESCRIPTION=An image manipulation library for ocaml +EAPI=5 +HOMEPAGE=http://gallium.inria.fr/camlimages/ +IUSE=doc exif gif gtk jpeg png postscript tiff truetype X xpm +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=LGPL-2.1 +RDEPEND=>=dev-lang/ocaml-3.10.2:=[X?,ocamlopt] exif? ( media-libs/libexif ) gif? ( media-libs/giflib ) gtk? ( dev-ml/lablgtk ) jpeg? ( virtual/jpeg ) tiff? ( media-libs/tiff ) png? ( >=media-libs/libpng-1.4:0 ) postscript? ( app-text/ghostscript-gpl ) truetype? ( >=media-libs/freetype-2 ) xpm? ( x11-libs/libXpm ) X? ( x11-apps/rgb ) sys-libs/zlib +SLOT=0/4.1.1 +SRC_URI=http://bitbucket.org/camlspotter/camlimages/get/4.1.1.tar.bz2 -> camlimages-4.1.1.tar.bz2 +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 findlib 9cf6020ee5481f39f1aa566a323f9868 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_md5_=e48886d5a67475f11f13ab5bfc5a5847 diff --git a/metadata/md5-cache/dev-python/3to2-1.0 b/metadata/md5-cache/dev-python/3to2-1.0 index 1f0967253e43..dd66c6faf0ea 100644 --- a/metadata/md5-cache/dev-python/3to2-1.0 +++ b/metadata/md5-cache/dev-python/3to2-1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/3/3to2/3to2-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8575dc94157ba0332f6038affe24cef3 diff --git a/metadata/md5-cache/dev-python/Babel-0.9.6-r1 b/metadata/md5-cache/dev-python/Babel-0.9.6-r1 index 5d53eee4085a..41d26ea0ac20 100644 --- a/metadata/md5-cache/dev-python/Babel-0.9.6-r1 +++ b/metadata/md5-cache/dev-python/Babel-0.9.6-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pytz[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://ftp.edgewall.com/pub/babel/Babel-0.9.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=66531d8af1fd5675c3b5605514ffe879 diff --git a/metadata/md5-cache/dev-python/Babel-1.2 b/metadata/md5-cache/dev-python/Babel-1.2 index 4541a673a450..321b302087e6 100644 --- a/metadata/md5-cache/dev-python/Babel-1.2 +++ b/metadata/md5-cache/dev-python/Babel-1.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pytz[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/B/Babel/Babel-1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b20854ab7d89e7c541e55257c7d3cc5b diff --git a/metadata/md5-cache/dev-python/Babel-1.3 b/metadata/md5-cache/dev-python/Babel-1.3 index 1d782c9c9f1c..326ba0c53236 100644 --- a/metadata/md5-cache/dev-python/Babel-1.3 +++ b/metadata/md5-cache/dev-python/Babel-1.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pytz[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/B/Babel/Babel-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eaec6007e902250a7031df23236a724d diff --git a/metadata/md5-cache/dev-python/CoverageTestRunner-1.9-r1 b/metadata/md5-cache/dev-python/CoverageTestRunner-1.9-r1 index 233ffbdb952d..84a12e6793ce 100644 --- a/metadata/md5-cache/dev-python/CoverageTestRunner-1.9-r1 +++ b/metadata/md5-cache/dev-python/CoverageTestRunner-1.9-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/p/python-coverage-test-runner/python-coverage-test-runner_1.9.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dab9a00ee42f58d41765218a3e5219b1 diff --git a/metadata/md5-cache/dev-python/Djblets-0.7.15 b/metadata/md5-cache/dev-python/Djblets-0.7.15 index 931c781bf2d6..a6287ca822ff 100644 --- a/metadata/md5-cache/dev-python/Djblets-0.7.15 +++ b/metadata/md5-cache/dev-python/Djblets-0.7.15 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.4.5[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://downloads.reviewboard.org/releases/Djblets/0.7/Djblets-0.7.15.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5fafe29d799b12eeece68dc8c1f50109 diff --git a/metadata/md5-cache/dev-python/GridDataFormats-0.2.2 b/metadata/md5-cache/dev-python/GridDataFormats-0.2.2 index 232ed3117234..36a662ce712f 100644 --- a/metadata/md5-cache/dev-python/GridDataFormats-0.2.2 +++ b/metadata/md5-cache/dev-python/GridDataFormats-0.2.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/G/GridDataFormats/GridDataFormats-0.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5941f713b646ee92ac9966787d4c2303 diff --git a/metadata/md5-cache/dev-python/PyGithub-1.17.0 b/metadata/md5-cache/dev-python/PyGithub-1.17.0 index 807c4e8c0edf..eeb5f02a990f 100644 --- a/metadata/md5-cache/dev-python/PyGithub-1.17.0 +++ b/metadata/md5-cache/dev-python/PyGithub-1.17.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/jacquev6/PyGithub/archive/v1.17.0.tar.gz -> PyGithub-1.17.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2d9bea4f3c26420e53101d133f6b400 diff --git a/metadata/md5-cache/dev-python/PyGithub-1.18.0 b/metadata/md5-cache/dev-python/PyGithub-1.18.0 index fddd376e5c1c..3f96311c47db 100644 --- a/metadata/md5-cache/dev-python/PyGithub-1.18.0 +++ b/metadata/md5-cache/dev-python/PyGithub-1.18.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/jacquev6/PyGithub/archive/v1.18.0.tar.gz -> PyGithub-1.18.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=74ada62053fe8a4c378a5610f1fde61a diff --git a/metadata/md5-cache/dev-python/PyGithub-1.19.0 b/metadata/md5-cache/dev-python/PyGithub-1.19.0 index a22804220d7b..a391d76189e6 100644 --- a/metadata/md5-cache/dev-python/PyGithub-1.19.0 +++ b/metadata/md5-cache/dev-python/PyGithub-1.19.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/jacquev6/PyGithub/archive/v1.19.0.tar.gz -> PyGithub-1.19.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b3ecb6633497c1d1f14ea1347a4edda2 diff --git a/metadata/md5-cache/dev-python/PyGithub-1.20.0 b/metadata/md5-cache/dev-python/PyGithub-1.20.0 index ed365ad52251..b7f768157afb 100644 --- a/metadata/md5-cache/dev-python/PyGithub-1.20.0 +++ b/metadata/md5-cache/dev-python/PyGithub-1.20.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/jacquev6/PyGithub/archive/v1.20.0.tar.gz -> PyGithub-1.20.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8aa1046ab97d8d21b0434fffe6d340e4 diff --git a/metadata/md5-cache/dev-python/PyQt4-4.10.1 b/metadata/md5-cache/dev-python/PyQt4-4.10.3-r1 similarity index 58% rename from metadata/md5-cache/dev-python/PyQt4-4.10.1 rename to metadata/md5-cache/dev-python/PyQt4-4.10.3-r1 index fb45878ec492..cd45c5c28aff 100644 --- a/metadata/md5-cache/dev-python/PyQt4-4.10.1 +++ b/metadata/md5-cache/dev-python/PyQt4-4.10.3-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare unpack -DEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/python-exec:0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/sip-4.14.3:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-qt/qtcore-4.8.0:4 X? ( >=dev-qt/qtgui-4.8.0:4[dbus(+)?] || ( dev-qt/designer:4 =dev-qt/qttest-4.8.0:4 ) dbus? ( >=dev-python/dbus-python-0.80[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-qt/qtdbus-4.8.0:4 ) declarative? ( >=dev-qt/qtdeclarative-4.8.0:4 ) help? ( >=dev-qt/qthelp-4.8.0:4 ) multimedia? ( >=dev-qt/qtmultimedia-4.8.0:4 ) opengl? ( >=dev-qt/qtopengl-4.8.0:4 ) phonon? ( kde? ( media-libs/phonon ) !kde? ( || ( >=dev-qt/qtphonon-4.8.0:4 media-libs/phonon ) ) ) script? ( >=dev-qt/qtscript-4.8.0:4 ) sql? ( >=dev-qt/qtsql-4.8.0:4 ) svg? ( >=dev-qt/qtsvg-4.8.0:4 ) webkit? ( >=dev-qt/qtwebkit-4.8.0:4 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-4.8.0:4 ) dbus? ( virtual/pkgconfig ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) +DEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/sip-4.15.0:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-qt/qtcore-4.8.0:4 X? ( >=dev-qt/qtgui-4.8.0:4 || ( dev-qt/designer:4 =dev-qt/qttest-4.8.0:4 ) dbus? ( >=dev-python/dbus-python-0.80[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-qt/qtdbus-4.8.0:4 ) declarative? ( >=dev-qt/qtdeclarative-4.8.0:4 ) help? ( >=dev-qt/qthelp-4.8.0:4 ) multimedia? ( >=dev-qt/qtmultimedia-4.8.0:4 ) opengl? ( >=dev-qt/qtopengl-4.8.0:4 ) phonon? ( kde? ( media-libs/phonon ) !kde? ( || ( >=dev-qt/qtphonon-4.8.0:4 media-libs/phonon ) ) ) script? ( >=dev-qt/qtscript-4.8.0:4 ) sql? ( >=dev-qt/qtsql-4.8.0:4 ) svg? ( >=dev-qt/qtsvg-4.8.0:4 ) webkit? ( >=dev-qt/qtwebkit-4.8.0:4 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-4.8.0:4 ) dbus? ( virtual/pkgconfig ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) DESCRIPTION=Python bindings for the Qt toolkit EAPI=5 HOMEPAGE=http://www.riverbankcomputing.co.uk/software/pyqt/intro/ http://pypi.python.org/pypi/PyQt IUSE=X dbus debug declarative doc examples help kde multimedia opengl phonon script scripttools sql svg webkit xmlpatterns python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux LICENSE=|| ( GPL-2 GPL-3 ) -RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/python-exec:0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/sip-4.14.3:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-qt/qtcore-4.8.0:4 X? ( >=dev-qt/qtgui-4.8.0:4[dbus(+)?] || ( dev-qt/designer:4 =dev-qt/qttest-4.8.0:4 ) dbus? ( >=dev-python/dbus-python-0.80[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-qt/qtdbus-4.8.0:4 ) declarative? ( >=dev-qt/qtdeclarative-4.8.0:4 ) help? ( >=dev-qt/qthelp-4.8.0:4 ) multimedia? ( >=dev-qt/qtmultimedia-4.8.0:4 ) opengl? ( >=dev-qt/qtopengl-4.8.0:4 ) phonon? ( kde? ( media-libs/phonon ) !kde? ( || ( >=dev-qt/qtphonon-4.8.0:4 media-libs/phonon ) ) ) script? ( >=dev-qt/qtscript-4.8.0:4 ) sql? ( >=dev-qt/qtsql-4.8.0:4 ) svg? ( >=dev-qt/qtsvg-4.8.0:4 ) webkit? ( >=dev-qt/qtwebkit-4.8.0:4 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-4.8.0:4 ) +RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/sip-4.15.0:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-qt/qtcore-4.8.0:4 X? ( >=dev-qt/qtgui-4.8.0:4 || ( dev-qt/designer:4 =dev-qt/qttest-4.8.0:4 ) dbus? ( >=dev-python/dbus-python-0.80[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-qt/qtdbus-4.8.0:4 ) declarative? ( >=dev-qt/qtdeclarative-4.8.0:4 ) help? ( >=dev-qt/qthelp-4.8.0:4 ) multimedia? ( >=dev-qt/qtmultimedia-4.8.0:4 ) opengl? ( >=dev-qt/qtopengl-4.8.0:4 ) phonon? ( kde? ( media-libs/phonon ) !kde? ( || ( >=dev-qt/qtphonon-4.8.0:4 media-libs/phonon ) ) ) script? ( >=dev-qt/qtscript-4.8.0:4 ) sql? ( >=dev-qt/qtsql-4.8.0:4 ) svg? ( >=dev-qt/qtsvg-4.8.0:4 ) webkit? ( >=dev-qt/qtwebkit-4.8.0:4 ) xmlpatterns? ( >=dev-qt/qtxmlpatterns-4.8.0:4 ) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) declarative? ( X ) help? ( X ) multimedia? ( X ) opengl? ( X ) phonon? ( X ) scripttools? ( X script ) sql? ( X ) svg? ( X ) webkit? ( X ) SLOT=0 -SRC_URI=mirror://sourceforge/pyqt/PyQt-x11-gpl-4.10.1.tar.gz +SRC_URI=mirror://sourceforge/pyqt/PyQt-x11-gpl-4.10.3.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a84c3c88402ff2edafa31f6fda3a3b87 +_md5_=8aa79b972716dfb1b2556fc5f343555b diff --git a/metadata/md5-cache/dev-python/PyRSS2Gen-1.0.0-r1 b/metadata/md5-cache/dev-python/PyRSS2Gen-1.0.0-r1 index c5c8a9380aba..6a42abe48018 100644 --- a/metadata/md5-cache/dev-python/PyRSS2Gen-1.0.0-r1 +++ b/metadata/md5-cache/dev-python/PyRSS2Gen-1.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://www.dalkescientific.com/Python/PyRSS2Gen-1.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=689d25943f7c0f62c5b35066b99cb7bd diff --git a/metadata/md5-cache/dev-python/RecSQL-0.7.8 b/metadata/md5-cache/dev-python/RecSQL-0.7.8 index c01686c86cbc..a7a1adb76a3e 100644 --- a/metadata/md5-cache/dev-python/RecSQL-0.7.8 +++ b/metadata/md5-cache/dev-python/RecSQL-0.7.8 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/orbeckst/RecSQL/archive/release-0.7.8.tar.gz -> RecSQL-0.7.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=27dbc4a79a75878ba4f4504b6dec89d1 diff --git a/metadata/md5-cache/dev-python/addons-0.7 b/metadata/md5-cache/dev-python/addons-0.7 index dfa00bfebe6b..e0f98c25a0b5 100644 --- a/metadata/md5-cache/dev-python/addons-0.7 +++ b/metadata/md5-cache/dev-python/addons-0.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/A/AddOns/AddOns-0.7.zip -> addons-0.7.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f00138045ec4653ca60a1ecf5b34575f diff --git a/metadata/md5-cache/dev-python/adns-python-1.2.1-r1 b/metadata/md5-cache/dev-python/adns-python-1.2.1-r1 index 43a55a187e98..598619a059cc 100644 --- a/metadata/md5-cache/dev-python/adns-python-1.2.1-r1 +++ b/metadata/md5-cache/dev-python/adns-python-1.2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=net-libs/adns-1.3 python_targets_python2_6? ( >=dev-lang/python-2.6.8- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://adns-python.googlecode.com/files/adns-python-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ae7f58e936eced15334b7e36b7464ced diff --git a/metadata/md5-cache/dev-python/adodb-py-2.20-r1 b/metadata/md5-cache/dev-python/adodb-py-2.20-r1 index 582e328ba88f..efb0cdb35c57 100644 --- a/metadata/md5-cache/dev-python/adodb-py-2.20-r1 +++ b/metadata/md5-cache/dev-python/adodb-py-2.20-r1 @@ -10,5 +10,5 @@ RDEPEND=postgres? ( dev-python/psycopg:0[python_targets_python2_6(-)?,python_tar REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/adodb/adodb-220.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ba6f77572494a0414a152179eb5d42a diff --git a/metadata/md5-cache/dev-python/alembic-0.4.2 b/metadata/md5-cache/dev-python/alembic-0.4.2 index 7b37bf9052fe..d62a8fed891b 100644 --- a/metadata/md5-cache/dev-python/alembic-0.4.2 +++ b/metadata/md5-cache/dev-python/alembic-0.4.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/sqlalchemy-0.7.9 dev-python/mako virtual/python-argparse[py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/a/alembic/alembic-0.4.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4b435216572d320b058f276facd3d9a5 diff --git a/metadata/md5-cache/dev-python/alembic-0.5.0 b/metadata/md5-cache/dev-python/alembic-0.5.0 index 232b0892e1ec..182614daeb26 100644 --- a/metadata/md5-cache/dev-python/alembic-0.5.0 +++ b/metadata/md5-cache/dev-python/alembic-0.5.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/sqlalchemy-0.7.9 dev-python/mako virtual/python-argparse[py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/a/alembic/alembic-0.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=107e36cab61fa7ef7a2185dfa748757f diff --git a/metadata/md5-cache/dev-python/alembic-0.6.0 b/metadata/md5-cache/dev-python/alembic-0.6.0 index d0b0d412d401..a6055fc2d806 100644 --- a/metadata/md5-cache/dev-python/alembic-0.6.0 +++ b/metadata/md5-cache/dev-python/alembic-0.6.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/sqlalchemy-0.7.9 dev-python/mako virtual/python-argparse[py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/a/alembic/alembic-0.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d3299a7cc1abdf5f53e200210218e488 diff --git a/metadata/md5-cache/dev-python/amara-2.0.0_alpha6-r1 b/metadata/md5-cache/dev-python/amara-2.0.0_alpha6-r1 index aee8eab7e934..363052ccc5f9 100644 --- a/metadata/md5-cache/dev-python/amara-2.0.0_alpha6-r1 +++ b/metadata/md5-cache/dev-python/amara-2.0.0_alpha6-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/expat-2.1.0-r2[unicode] dev-python/html5lib[python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/A/Amara/Amara-2.0.0a6.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=96e878424ed72b5fefff5a3c7044a562 diff --git a/metadata/md5-cache/dev-python/amqplib-0.6.1-r1 b/metadata/md5-cache/dev-python/amqplib-0.6.1-r1 index 9215d1464db9..2619f52d2bb1 100644 --- a/metadata/md5-cache/dev-python/amqplib-0.6.1-r1 +++ b/metadata/md5-cache/dev-python/amqplib-0.6.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://py-amqplib.googlecode.com/files/amqplib-0.6.1.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6a806d4b35fc377e5001fe055bfaca43 diff --git a/metadata/md5-cache/dev-python/amqplib-1.0.2-r1 b/metadata/md5-cache/dev-python/amqplib-1.0.2-r1 index 7dcd66ec0122..7be1db816f44 100644 --- a/metadata/md5-cache/dev-python/amqplib-1.0.2-r1 +++ b/metadata/md5-cache/dev-python/amqplib-1.0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://py-amqplib.googlecode.com/files/amqplib-1.0.2.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ef745215ef50fc134fc45dbab212ec6b diff --git a/metadata/md5-cache/dev-python/ansi2html-0.10.0 b/metadata/md5-cache/dev-python/ansi2html-0.10.0 index 2213176fccdc..5523e513c17a 100644 --- a/metadata/md5-cache/dev-python/ansi2html-0.10.0 +++ b/metadata/md5-cache/dev-python/ansi2html-0.10.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_2(-)? REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/ansi2html/ansi2html-0.10.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3635d305c12cff72dafa626d64b8a3ab diff --git a/metadata/md5-cache/dev-python/ansi2html-0.9.3-r1 b/metadata/md5-cache/dev-python/ansi2html-0.9.3-r1 index a1d6b31ff73a..85b196d94ee0 100644 --- a/metadata/md5-cache/dev-python/ansi2html-0.9.3-r1 +++ b/metadata/md5-cache/dev-python/ansi2html-0.9.3-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_2(-)? REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/ansi2html/ansi2html-0.9.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b41d352026937a5b0b85a840fdfb620b diff --git a/metadata/md5-cache/dev-python/ansi2html-0.9.4 b/metadata/md5-cache/dev-python/ansi2html-0.9.4 index 79f8191a68c4..8865f7dc2270 100644 --- a/metadata/md5-cache/dev-python/ansi2html-0.9.4 +++ b/metadata/md5-cache/dev-python/ansi2html-0.9.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_2(-)? REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/ansi2html/ansi2html-0.9.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=03df273069838a03a3acad36de353cfe diff --git a/metadata/md5-cache/dev-python/ansi2html-1.0.2 b/metadata/md5-cache/dev-python/ansi2html-1.0.2 index 622442380a55..99bd823ba09e 100644 --- a/metadata/md5-cache/dev-python/ansi2html-1.0.2 +++ b/metadata/md5-cache/dev-python/ansi2html-1.0.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_2(-)? REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/ansi2html/ansi2html-1.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e365479b8ce8c28a876984fc57794b07 diff --git a/metadata/md5-cache/dev-python/anyjson-0.2.4 b/metadata/md5-cache/dev-python/anyjson-0.2.4 index 364c217a78ef..9e39b5b9b455 100644 --- a/metadata/md5-cache/dev-python/anyjson-0.2.4 +++ b/metadata/md5-cache/dev-python/anyjson-0.2.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/anyjson/anyjson-0.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=82a2a0c1a39393505cf06bc1a978a4a1 diff --git a/metadata/md5-cache/dev-python/anyjson-0.3.3-r1 b/metadata/md5-cache/dev-python/anyjson-0.3.3-r1 index db7438e2f6f9..12f762793dc7 100644 --- a/metadata/md5-cache/dev-python/anyjson-0.3.3-r1 +++ b/metadata/md5-cache/dev-python/anyjson-0.3.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/anyjson/anyjson-0.3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8add6fb4818415ef794aaf0f4f632549 diff --git a/metadata/md5-cache/dev-python/apipkg-1.2-r1 b/metadata/md5-cache/dev-python/apipkg-1.2-r1 index 90b63636f8f9..0ad92974cc08 100644 --- a/metadata/md5-cache/dev-python/apipkg-1.2-r1 +++ b/metadata/md5-cache/dev-python/apipkg-1.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/apipkg/apipkg-1.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=870e6a733935e8b5fbf876b4caad942b diff --git a/metadata/md5-cache/dev-python/aplpy-0.9.9 b/metadata/md5-cache/dev-python/aplpy-0.9.9 index 049d21dc7832..fb712e8104b8 100644 --- a/metadata/md5-cache/dev-python/aplpy-0.9.9 +++ b/metadata/md5-cache/dev-python/aplpy-0.9.9 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/astropy-0.2[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/A/APLpy/APLpy-0.9.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=588ce7eb1cbe33f2e89c31e0d0b79116 diff --git a/metadata/md5-cache/dev-python/appdirs-1.2.0-r1 b/metadata/md5-cache/dev-python/appdirs-1.2.0-r1 index abb03d303609..02627cdc4b3e 100644 --- a/metadata/md5-cache/dev-python/appdirs-1.2.0-r1 +++ b/metadata/md5-cache/dev-python/appdirs-1.2.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/a/appdirs/appdirs-1.2.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9bd187c3a0f10ee4ebf35124f0a8d696 diff --git a/metadata/md5-cache/dev-python/apptools-4.2.0-r1 b/metadata/md5-cache/dev-python/apptools-4.2.0-r1 index 19955c3b1ade..d1cb181cb61c 100644 --- a/metadata/md5-cache/dev-python/apptools-4.2.0-r1 +++ b/metadata/md5-cache/dev-python/apptools-4.2.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/configobj[python_targets_python2_7(-)?,-python_single_target_ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/apptools-4.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=3e4a71ab09dad73fc255de254c98e1c9 diff --git a/metadata/md5-cache/dev-python/apse-0.2-r2 b/metadata/md5-cache/dev-python/apse-0.2-r2 index c644a56b2566..9c056bab4cf6 100644 --- a/metadata/md5-cache/dev-python/apse-0.2-r2 +++ b/metadata/md5-cache/dev-python/apse-0.2-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://www.personal.psu.edu/staff/i/u/iua1/python/apse/dist/Apse-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=58d5ef3eeb831de996e2a353462509a6 diff --git a/metadata/md5-cache/dev-python/apse-0.2-r3 b/metadata/md5-cache/dev-python/apse-0.2-r3 index e72b5b073c06..e4dc7da2b90a 100644 --- a/metadata/md5-cache/dev-python/apse-0.2-r3 +++ b/metadata/md5-cache/dev-python/apse-0.2-r3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://www.personal.psu.edu/staff/i/u/iua1/python/apse/dist/Apse-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aa2969ff612fd35a99142af18bd0c2e1 diff --git a/metadata/md5-cache/dev-python/apsw-3.7.17_p1 b/metadata/md5-cache/dev-python/apsw-3.7.17_p1 index e10ea28bb33d..1d8d1d703969 100644 --- a/metadata/md5-cache/dev-python/apsw-3.7.17_p1 +++ b/metadata/md5-cache/dev-python/apsw-3.7.17_p1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-db/sqlite-3.7.17 python_targets_python2_6? ( >=dev-lang/python-2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://apsw.googlecode.com/files/apsw-3.7.17-r1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=abe8a2d4074fc5c7a93f609a92873fcb diff --git a/metadata/md5-cache/dev-python/apsw-3.8.0.2_p1 b/metadata/md5-cache/dev-python/apsw-3.8.0.2_p1 index 99b277276ee0..36c55911510c 100644 --- a/metadata/md5-cache/dev-python/apsw-3.8.0.2_p1 +++ b/metadata/md5-cache/dev-python/apsw-3.8.0.2_p1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-db/sqlite-3.8.0.2 python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://apsw.googlecode.com/files/apsw-3.8.0.2-r1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0e858a250a2352b365cff96015b5fcd0 diff --git a/metadata/md5-cache/dev-python/apsw-3.8.0_p2 b/metadata/md5-cache/dev-python/apsw-3.8.0_p2 index edc76a3995a5..bb4e5b476ac5 100644 --- a/metadata/md5-cache/dev-python/apsw-3.8.0_p2 +++ b/metadata/md5-cache/dev-python/apsw-3.8.0_p2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-db/sqlite-3.8.0 python_targets_python2_6? ( >=dev-lang/python-2.6. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://apsw.googlecode.com/files/apsw-3.8.0-r2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f1e73dca3c183cad08cdde791084bb5e diff --git a/metadata/md5-cache/dev-python/argh-0.23.0-r1 b/metadata/md5-cache/dev-python/argh-0.23.0-r1 index 9ce66dea96d3..33bfe37170e7 100644 --- a/metadata/md5-cache/dev-python/argh-0.23.0-r1 +++ b/metadata/md5-cache/dev-python/argh-0.23.0-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/argh/argh-0.23.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5cf5c7b59410f4852610e6c7996c399c diff --git a/metadata/md5-cache/dev-python/argh-0.23.1 b/metadata/md5-cache/dev-python/argh-0.23.1 index 81916fcc1811..d3e0ea173816 100644 --- a/metadata/md5-cache/dev-python/argh-0.23.1 +++ b/metadata/md5-cache/dev-python/argh-0.23.1 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/argh/argh-0.23.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7166f74e3cfec187be8f3aaa0327656c diff --git a/metadata/md5-cache/dev-python/argh-0.23.2 b/metadata/md5-cache/dev-python/argh-0.23.2 index e2612e495f41..392d3372a8f3 100644 --- a/metadata/md5-cache/dev-python/argh-0.23.2 +++ b/metadata/md5-cache/dev-python/argh-0.23.2 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/argh/argh-0.23.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0030704eaf47d8e8a6215723a71f885e diff --git a/metadata/md5-cache/dev-python/argh-0.23.3 b/metadata/md5-cache/dev-python/argh-0.23.3 index 826211d7b6f0..495c56e3e300 100644 --- a/metadata/md5-cache/dev-python/argh-0.23.3 +++ b/metadata/md5-cache/dev-python/argh-0.23.3 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/argh/argh-0.23.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8c52b80aeee50fc6ffc0f720b5be9177 diff --git a/metadata/md5-cache/dev-python/argparse-1.2.1-r1 b/metadata/md5-cache/dev-python/argparse-1.2.1-r1 index fec1986b3307..33879ff91a3f 100644 --- a/metadata/md5-cache/dev-python/argparse-1.2.1-r1 +++ b/metadata/md5-cache/dev-python/argparse-1.2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=http://argparse.googlecode.com/files/argparse-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e8329203e77cd31719efe08b2c7ebb87 diff --git a/metadata/md5-cache/dev-python/argparse-1.2.1-r2 b/metadata/md5-cache/dev-python/argparse-1.2.1-r2 index 7af8ec5c139b..84d1ef97ece6 100644 --- a/metadata/md5-cache/dev-python/argparse-1.2.1-r2 +++ b/metadata/md5-cache/dev-python/argparse-1.2.1-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_6 ) SLOT=0 SRC_URI=http://argparse.googlecode.com/files/argparse-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4d0196f3692efe11fadeb25e246bdec9 diff --git a/metadata/md5-cache/dev-python/arrayterator-1.0.1-r1 b/metadata/md5-cache/dev-python/arrayterator-1.0.1-r1 index cd6e3c57013c..c404249df2ed 100644 --- a/metadata/md5-cache/dev-python/arrayterator-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/arrayterator-1.0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/numpy-1.0_rc1[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/a/arrayterator/arrayterator-1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f3fe0abd77fd4824ff8d2886f27cfa59 diff --git a/metadata/md5-cache/dev-python/asciitable-0.8.0-r1 b/metadata/md5-cache/dev-python/asciitable-0.8.0-r1 index 0ddad2ccb6d1..9890ec02c6c1 100644 --- a/metadata/md5-cache/dev-python/asciitable-0.8.0-r1 +++ b/metadata/md5-cache/dev-python/asciitable-0.8.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/a/asciitable/asciitable-0.8.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=843c5884835926e71d8607531ef194c6 diff --git a/metadata/md5-cache/dev-python/assets-0.1.1-r1 b/metadata/md5-cache/dev-python/assets-0.1.1-r1 index 9ba0fa378981..2d5307081494 100644 --- a/metadata/md5-cache/dev-python/assets-0.1.1-r1 +++ b/metadata/md5-cache/dev-python/assets-0.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://launchpad.net/web-assets/trunk/0.1.1/+download/assets-0.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38d7127bd18e538c98f7c2e404019840 diff --git a/metadata/md5-cache/dev-python/astng-0.24.3 b/metadata/md5-cache/dev-python/astng-0.24.3 index b86230918b20..d0d6f8bf52ac 100644 --- a/metadata/md5-cache/dev-python/astng-0.24.3 +++ b/metadata/md5-cache/dev-python/astng-0.24.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/logilab-common-0.59.0[python_targets_python2_6(-)?,python_t REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/astng/logilab-astng-0.24.3.tar.gz mirror://pypi/l/logilab-astng/logilab-astng-0.24.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=37656c0f18e912d258a563c8847a52d7 diff --git a/metadata/md5-cache/dev-python/astropy-0.2.1 b/metadata/md5-cache/dev-python/astropy-0.2.1 index 8884674bf3a7..543758a773f2 100644 --- a/metadata/md5-cache/dev-python/astropy-0.2.1 +++ b/metadata/md5-cache/dev-python/astropy-0.2.1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/expat dev-python/numpy[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/a/astropy/astropy-0.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3c7ff4b7aa3f10f2453f0b69c5a7e94b diff --git a/metadata/md5-cache/dev-python/astropy-0.2.3 b/metadata/md5-cache/dev-python/astropy-0.2.3 index 942153ca78d6..f60fc3e6c1f3 100644 --- a/metadata/md5-cache/dev-python/astropy-0.2.3 +++ b/metadata/md5-cache/dev-python/astropy-0.2.3 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/expat dev-python/numpy[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/a/astropy/astropy-0.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=54bec797c416f81deff3648d19c62f7e diff --git a/metadata/md5-cache/dev-python/astropy-0.2.4 b/metadata/md5-cache/dev-python/astropy-0.2.4 index ff9ef1f24934..d153d51c7954 100644 --- a/metadata/md5-cache/dev-python/astropy-0.2.4 +++ b/metadata/md5-cache/dev-python/astropy-0.2.4 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/expat dev-python/numpy[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/a/astropy/astropy-0.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=901f8787d064d1dbfe6fba21a915bd71 diff --git a/metadata/md5-cache/dev-python/async-0.6.1-r1 b/metadata/md5-cache/dev-python/async-0.6.1-r1 index ca58c3c10fe7..3619f1087a55 100644 --- a/metadata/md5-cache/dev-python/async-0.6.1-r1 +++ b/metadata/md5-cache/dev-python/async-0.6.1-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/a/async/async-0.6.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7e9ca9ab146f717a3412f6fb5db85531 diff --git a/metadata/md5-cache/dev-python/atpy-0.9.6-r1 b/metadata/md5-cache/dev-python/atpy-0.9.6-r1 index 9f1807e05ffe..36927ae5a3e3 100644 --- a/metadata/md5-cache/dev-python/atpy-0.9.6-r1 +++ b/metadata/md5-cache/dev-python/atpy-0.9.6-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://github/atpy/atpy/ATpy-0.9.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dbc3941cd94637026700d0689b9ede33 diff --git a/metadata/md5-cache/dev-python/atpy-0.9.7 b/metadata/md5-cache/dev-python/atpy-0.9.7 index e69fa04281ed..c4a06e132058 100644 --- a/metadata/md5-cache/dev-python/atpy-0.9.7 +++ b/metadata/md5-cache/dev-python/atpy-0.9.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/A/ATpy/ATpy-0.9.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=86c9648e051808fbb55591685f5d6a89 diff --git a/metadata/md5-cache/dev-python/audioread-1.0.1 b/metadata/md5-cache/dev-python/audioread-1.0.1 index fcf2d17e12f9..d79f81d57f05 100644 --- a/metadata/md5-cache/dev-python/audioread-1.0.1 +++ b/metadata/md5-cache/dev-python/audioread-1.0.1 @@ -10,5 +10,5 @@ RDEPEND=|| ( dev-python/gst-python[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/a/audioread/audioread-1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=51038a32d94f839a9d81a0893d0fd2c3 diff --git a/metadata/md5-cache/dev-python/authres-0.501 b/metadata/md5-cache/dev-python/authres-0.501 index 95a00f0c5783..2e0b06c58dfb 100644 --- a/metadata/md5-cache/dev-python/authres-0.501 +++ b/metadata/md5-cache/dev-python/authres-0.501 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/authres/authres-0.501.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bf95687f433f89ddbfb13e337df78a06 diff --git a/metadata/md5-cache/dev-python/authres-0.600 b/metadata/md5-cache/dev-python/authres-0.600 index e0a098ab4fac..2e4c2632ef75 100644 --- a/metadata/md5-cache/dev-python/authres-0.600 +++ b/metadata/md5-cache/dev-python/authres-0.600 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/authres/authres-0.600.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fad9fe996319c4910d5d585764bf4523 diff --git a/metadata/md5-cache/dev-python/authres-0.601 b/metadata/md5-cache/dev-python/authres-0.601 index cb3059a21b32..541dcacd10d7 100644 --- a/metadata/md5-cache/dev-python/authres-0.601 +++ b/metadata/md5-cache/dev-python/authres-0.601 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/authres/authres-0.601.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c7fed75134b0b412b0bf327c0288dcc9 diff --git a/metadata/md5-cache/dev-python/authres-0.602 b/metadata/md5-cache/dev-python/authres-0.602 index 0246e5d9a3fa..6a764eada898 100644 --- a/metadata/md5-cache/dev-python/authres-0.602 +++ b/metadata/md5-cache/dev-python/authres-0.602 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/authres/authres-0.602.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5046bf0bad991dbea046bde4f3b7d178 diff --git a/metadata/md5-cache/dev-python/autopep8-0.9.4 b/metadata/md5-cache/dev-python/autopep8-0.9.4 index e4a03dcaf950..7eae5c6d694c 100644 --- a/metadata/md5-cache/dev-python/autopep8-0.9.4 +++ b/metadata/md5-cache/dev-python/autopep8-0.9.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pep8-1.4.6[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/hhatto/autopep8/tarball/ver0.9.4 -> autopep8-0.9.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=ab6d6dd5794c6c5105ef171334659b5f diff --git a/metadata/md5-cache/dev-python/autopep8-0.9.3 b/metadata/md5-cache/dev-python/autopep8-0.9.5 similarity index 94% rename from metadata/md5-cache/dev-python/autopep8-0.9.3 rename to metadata/md5-cache/dev-python/autopep8-0.9.5 index 0414b7727e2e..35108cbcccc0 100644 --- a/metadata/md5-cache/dev-python/autopep8-0.9.3 +++ b/metadata/md5-cache/dev-python/autopep8-0.9.5 @@ -9,6 +9,6 @@ LICENSE=MIT RDEPEND=>=dev-python/pep8-1.4.6[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -SRC_URI=https://github.com/hhatto/autopep8/tarball/ver0.9.3 -> autopep8-0.9.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 -_md5_=057e4d7a8fe0635f1f55c4cddfbed9f5 +SRC_URI=https://github.com/hhatto/autopep8/tarball/ver0.9.5 -> autopep8-0.9.5.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_md5_=13c65c0674474c9f4311c432178542f1 diff --git a/metadata/md5-cache/dev-python/autopep8-9999 b/metadata/md5-cache/dev-python/autopep8-9999 index f68262427ee7..2443325bdc22 100644 --- a/metadata/md5-cache/dev-python/autopep8-9999 +++ b/metadata/md5-cache/dev-python/autopep8-9999 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=>=dev-python/pep8-1.4.6[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=54f20ebb5b7583d01dfa6a85793e2274 diff --git a/metadata/md5-cache/dev-python/axiom-0.6.0-r1 b/metadata/md5-cache/dev-python/axiom-0.6.0-r1 index d6f8d81c649f..444a9a0c5cd2 100644 --- a/metadata/md5-cache/dev-python/axiom-0.6.0-r1 +++ b/metadata/md5-cache/dev-python/axiom-0.6.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/epsilon-0.6.0-r2[python_targets_python2_6(-)?,python_target REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/A/Axiom/Axiom-0.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=71a7bbe7179dd10101d146d455167444 diff --git a/metadata/md5-cache/dev-python/backports-lzma-0.0.1 b/metadata/md5-cache/dev-python/backports-lzma-0.0.1 index 228e44b08e82..e3a363b4006d 100644 --- a/metadata/md5-cache/dev-python/backports-lzma-0.0.1 +++ b/metadata/md5-cache/dev-python/backports-lzma-0.0.1 @@ -10,5 +10,5 @@ RDEPEND=app-arch/xz-utils python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/b/backports.lzma/backports.lzma-0.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=445869e7e85ff0f135c77449a726c5be diff --git a/metadata/md5-cache/dev-python/backports-lzma-0.0.2 b/metadata/md5-cache/dev-python/backports-lzma-0.0.2 index 2654f8d866b0..6dc08b9546cf 100644 --- a/metadata/md5-cache/dev-python/backports-lzma-0.0.2 +++ b/metadata/md5-cache/dev-python/backports-lzma-0.0.2 @@ -10,5 +10,5 @@ RDEPEND=app-arch/xz-utils python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2 REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/b/backports.lzma/backports.lzma-0.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ae78fb6d7f59340090727f1f476846d5 diff --git a/metadata/md5-cache/dev-python/beaker-1.6.4-r1 b/metadata/md5-cache/dev-python/beaker-1.6.4-r1 index cea79e1ab569..94682714cfc9 100644 --- a/metadata/md5-cache/dev-python/beaker-1.6.4-r1 +++ b/metadata/md5-cache/dev-python/beaker-1.6.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/B/Beaker/Beaker-1.6.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=42ceee6ceb81aadd80dabf1b68b8274d diff --git a/metadata/md5-cache/dev-python/beanstalkc-0.3.0-r1 b/metadata/md5-cache/dev-python/beanstalkc-0.3.0-r1 index 148a97f26162..45f035200763 100644 --- a/metadata/md5-cache/dev-python/beanstalkc-0.3.0-r1 +++ b/metadata/md5-cache/dev-python/beanstalkc-0.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/b/beanstalkc/beanstalkc-0.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0d56baffc7773d3dd78c1c5c83f60417 diff --git a/metadata/md5-cache/dev-python/beautifulsoup-3.1.0.1-r2 b/metadata/md5-cache/dev-python/beautifulsoup-3.1.0.1-r2 index 72306fe188ec..9b6cea7a7743 100644 --- a/metadata/md5-cache/dev-python/beautifulsoup-3.1.0.1-r2 +++ b/metadata/md5-cache/dev-python/beautifulsoup-3.1.0.1-r2 @@ -10,5 +10,5 @@ RDEPEND=!dev-python/beautifulsoup:0 python_targets_python3_2? ( >=dev-lang/pytho REQUIRED_USE=|| ( python_targets_python3_2 python_targets_python3_3 ) SLOT=python-3 SRC_URI=http://www.crummy.com/software/BeautifulSoup/download/BeautifulSoup-3.1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c160a5fdcda9cf5672b4b040502ba2ad diff --git a/metadata/md5-cache/dev-python/beautifulsoup-3.2.1-r1 b/metadata/md5-cache/dev-python/beautifulsoup-3.2.1-r1 index f76e22934487..d097fcb49b6e 100644 --- a/metadata/md5-cache/dev-python/beautifulsoup-3.2.1-r1 +++ b/metadata/md5-cache/dev-python/beautifulsoup-3.2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=!dev-python/beautifulsoup:0 python_targets_python2_6? ( >=dev-lang/pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=python-2 SRC_URI=http://www.crummy.com/software/BeautifulSoup/download/3.x/BeautifulSoup-3.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=32fcdd8f8ba7e4e1bbf7e97081cfb059 diff --git a/metadata/md5-cache/dev-python/beautifulsoup-4.1.3-r1 b/metadata/md5-cache/dev-python/beautifulsoup-4.1.3-r1 index 8302007284a7..49bf8cb6f300 100644 --- a/metadata/md5-cache/dev-python/beautifulsoup-4.1.3-r1 +++ b/metadata/md5-cache/dev-python/beautifulsoup-4.1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=4 SRC_URI=mirror://pypi/b/beautifulsoup4/beautifulsoup4-4.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=84f31bc60a6a80029248d6d8f5bd71b9 diff --git a/metadata/md5-cache/dev-python/beautifulsoup-4.2.0 b/metadata/md5-cache/dev-python/beautifulsoup-4.2.0 index 3d514f2f9ae0..4589f1bae22c 100644 --- a/metadata/md5-cache/dev-python/beautifulsoup-4.2.0 +++ b/metadata/md5-cache/dev-python/beautifulsoup-4.2.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=4 SRC_URI=mirror://pypi/b/beautifulsoup4/beautifulsoup4-4.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a5acab04bae495cf49c63ce8618ee3c6 diff --git a/metadata/md5-cache/dev-python/beautifulsoup-4.2.1 b/metadata/md5-cache/dev-python/beautifulsoup-4.2.1 index 095cd08de89c..532360118153 100644 --- a/metadata/md5-cache/dev-python/beautifulsoup-4.2.1 +++ b/metadata/md5-cache/dev-python/beautifulsoup-4.2.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=4 SRC_URI=mirror://pypi/b/beautifulsoup4/beautifulsoup4-4.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b908471e1d1ce608ebd80c28761605c2 diff --git a/metadata/md5-cache/dev-python/billiard-2.7.3.20-r1 b/metadata/md5-cache/dev-python/billiard-2.7.3.20-r1 index 0a55959e76db..42701fa931d8 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.20-r1 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.20-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.20.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=021f770bd4a90ad1f56d75d9a8d41911 diff --git a/metadata/md5-cache/dev-python/billiard-2.7.3.21 b/metadata/md5-cache/dev-python/billiard-2.7.3.21 index 6cecc5d7a171..27eefeca916b 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.21 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.21 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.21.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=de8cbf8e40ba68d61cf027a1c66b325d diff --git a/metadata/md5-cache/dev-python/billiard-2.7.3.22 b/metadata/md5-cache/dev-python/billiard-2.7.3.22 index a8b2b3a3e586..1fb2b87c39d5 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.22 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.22 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.22.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=428bf5a6e3fef9a0effcf7c65af71deb diff --git a/metadata/md5-cache/dev-python/billiard-2.7.3.23 b/metadata/md5-cache/dev-python/billiard-2.7.3.23 index fe786fdbe0c2..a29d0e323925 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.23 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.23 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.23.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=350889daa7a91a424f7794988aa7df72 diff --git a/metadata/md5-cache/dev-python/billiard-2.7.3.27 b/metadata/md5-cache/dev-python/billiard-2.7.3.27 index c6c75bab9052..97ab770233f2 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.27 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.27 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.27.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=89bb8fc6b477ded89fbf83f8f316bd2e diff --git a/metadata/md5-cache/dev-python/billiard-2.7.3.28 b/metadata/md5-cache/dev-python/billiard-2.7.3.28 index e37696ada058..429e0229d639 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.28 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.28 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.28.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1063aacc245c543010aac423796f855a diff --git a/metadata/md5-cache/dev-python/billiard-2.7.3.31 b/metadata/md5-cache/dev-python/billiard-2.7.3.31 index 070a0895b4d9..80d642a46131 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.31 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.31 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.31.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8e1589afa79195c807d1c5f324a06fcd diff --git a/metadata/md5-cache/dev-python/billiard-2.7.3.32 b/metadata/md5-cache/dev-python/billiard-2.7.3.32 index 4ccdc60bd188..1776ba74a8a6 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.32 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.32 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.32.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b01e1754179cd1bdba883a7813b57f69 diff --git a/metadata/md5-cache/dev-python/biplist-0.5-r1 b/metadata/md5-cache/dev-python/biplist-0.5-r1 index 5c33bb6b1029..a73af10dec7f 100644 --- a/metadata/md5-cache/dev-python/biplist-0.5-r1 +++ b/metadata/md5-cache/dev-python/biplist-0.5-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_6(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/b/biplist/biplist-0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9e59bc663e526ea444e1d0b75a599a9c diff --git a/metadata/md5-cache/dev-python/bitarray-0.8.1 b/metadata/md5-cache/dev-python/bitarray-0.8.1 index 59877b1b3ba0..49acf4a278f6 100644 --- a/metadata/md5-cache/dev-python/bitarray-0.8.1 +++ b/metadata/md5-cache/dev-python/bitarray-0.8.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/b/bitarray/bitarray-0.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bff3c9f81d36e5e9bf0f745601a45643 diff --git a/metadata/md5-cache/dev-python/bitstring-3.1.1 b/metadata/md5-cache/dev-python/bitstring-3.1.1 index 771c308e0454..6793e7fd05f8 100644 --- a/metadata/md5-cache/dev-python/bitstring-3.1.1 +++ b/metadata/md5-cache/dev-python/bitstring-3.1.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://python-bitstring.googlecode.com/files/bitstring-3.1.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d172a31e737b773fdcfc1f345dc9ae0b diff --git a/metadata/md5-cache/dev-python/bjoern-1.3.2 b/metadata/md5-cache/dev-python/bjoern-1.3.2 index dbc2dc023bd3..8631484c426a 100644 --- a/metadata/md5-cache/dev-python/bjoern-1.3.2 +++ b/metadata/md5-cache/dev-python/bjoern-1.3.2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libev net-libs/http-parser python_targets_python2_6? ( >=dev-la REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/b/bjoern/bjoern-1.3.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=74627da2496929759fa0e140f1a6c218 diff --git a/metadata/md5-cache/dev-python/blinker-1.2-r1 b/metadata/md5-cache/dev-python/blinker-1.2-r1 index d9c3125efd0d..d75022ebb0ec 100644 --- a/metadata/md5-cache/dev-python/blinker-1.2-r1 +++ b/metadata/md5-cache/dev-python/blinker-1.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/b/blinker/blinker-1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5385b5d332b59d1dbde2eaed73690c89 diff --git a/metadata/md5-cache/dev-python/blinker-1.3 b/metadata/md5-cache/dev-python/blinker-1.3 index dfa6504c53e4..4032e3f70553 100644 --- a/metadata/md5-cache/dev-python/blinker-1.3 +++ b/metadata/md5-cache/dev-python/blinker-1.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/b/blinker/blinker-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1a85718226075231252a28b4d8f9aad7 diff --git a/metadata/md5-cache/dev-python/blockcanvas-4.0.3-r1 b/metadata/md5-cache/dev-python/blockcanvas-4.0.3-r1 index 126fe93cec9f..8b4ff0502507 100644 --- a/metadata/md5-cache/dev-python/blockcanvas-4.0.3-r1 +++ b/metadata/md5-cache/dev-python/blockcanvas-4.0.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/blockcanvas-4.0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=9d232e33df0fffa50b4662b278da5e74 diff --git a/metadata/md5-cache/dev-python/bluelet-0.2.0 b/metadata/md5-cache/dev-python/bluelet-0.2.0 index 10ae407d2f9b..90cdb6bfeb0d 100644 --- a/metadata/md5-cache/dev-python/bluelet-0.2.0 +++ b/metadata/md5-cache/dev-python/bluelet-0.2.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/sampsyo/bluelet/archive/v0.2.0.tar.gz -> bluelet-0.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d45e587afdab72a0c37f923162f66b4e diff --git a/metadata/md5-cache/dev-python/boto-2.1.1 b/metadata/md5-cache/dev-python/boto-2.1.1 index df3e36e61cae..77bf7fd23042 100644 --- a/metadata/md5-cache/dev-python/boto-2.1.1 +++ b/metadata/md5-cache/dev-python/boto-2.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/boto/boto-2.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4ba7c2c8e015eacad24210ef8abbd124 diff --git a/metadata/md5-cache/dev-python/boto-2.10.0 b/metadata/md5-cache/dev-python/boto-2.10.0 index c815bfc97041..8411264c117b 100644 --- a/metadata/md5-cache/dev-python/boto-2.10.0 +++ b/metadata/md5-cache/dev-python/boto-2.10.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/boto/boto-2.10.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=67ca3bcbbf70b1410bc053feaef85b3a diff --git a/metadata/md5-cache/dev-python/boto-2.11.0 b/metadata/md5-cache/dev-python/boto-2.11.0 index a2ac428bda9d..16239209488c 100644 --- a/metadata/md5-cache/dev-python/boto-2.11.0 +++ b/metadata/md5-cache/dev-python/boto-2.11.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/boto/boto-2.11.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=88c6f2bfad05441423508a6f3712c7ba diff --git a/metadata/md5-cache/dev-python/boto-2.13.3 b/metadata/md5-cache/dev-python/boto-2.13.3 index 3675cf4792bb..b8cabf758c9c 100644 --- a/metadata/md5-cache/dev-python/boto-2.13.3 +++ b/metadata/md5-cache/dev-python/boto-2.13.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/boto/boto-2.13.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5a181f83a6febf163e734e5a26d0180f diff --git a/metadata/md5-cache/dev-python/boto-2.15.0 b/metadata/md5-cache/dev-python/boto-2.15.0 index 85f3cc42b663..ff54eee21796 100644 --- a/metadata/md5-cache/dev-python/boto-2.15.0 +++ b/metadata/md5-cache/dev-python/boto-2.15.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/boto/boto-2.15.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=89d35bb6b6784debd3bbed342b53e0f3 diff --git a/metadata/md5-cache/dev-python/boto-2.9.9 b/metadata/md5-cache/dev-python/boto-2.9.9 index 8af19325bc4b..9525952cf413 100644 --- a/metadata/md5-cache/dev-python/boto-2.9.9 +++ b/metadata/md5-cache/dev-python/boto-2.9.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/boto/boto-2.9.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cb3318f42f1e42b11976e5a0fc63fc25 diff --git a/metadata/md5-cache/dev-python/bottle-0.11.6 b/metadata/md5-cache/dev-python/bottle-0.11.6 index 2e190afcd70d..bc662497fb0e 100644 --- a/metadata/md5-cache/dev-python/bottle-0.11.6 +++ b/metadata/md5-cache/dev-python/bottle-0.11.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/b/bottle/bottle-0.11.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5c6a463f59c8e8c4073022032d71e7d5 diff --git a/metadata/md5-cache/dev-python/bottle-0.11.6-r1 b/metadata/md5-cache/dev-python/bottle-0.11.6-r1 index fe853640ddbc..0ea3d7801426 100644 --- a/metadata/md5-cache/dev-python/bottle-0.11.6-r1 +++ b/metadata/md5-cache/dev-python/bottle-0.11.6-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/b/bottle/bottle-0.11.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0c0c3237365f9b8a5eb98f7dbe930a5f diff --git a/metadata/md5-cache/dev-python/bottleneck-0.6.0 b/metadata/md5-cache/dev-python/bottleneck-0.6.0 index 485bad8ba93a..b4bd1a254f95 100644 --- a/metadata/md5-cache/dev-python/bottleneck-0.6.0 +++ b/metadata/md5-cache/dev-python/bottleneck-0.6.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/B/Bottleneck/Bottleneck-0.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1ca45ff2e1d6df943b36c9206dfa047d diff --git a/metadata/md5-cache/dev-python/bsddb3-5.3.0-r1 b/metadata/md5-cache/dev-python/bsddb3-5.3.0-r1 index 903504b149a3..c30116040e1b 100644 --- a/metadata/md5-cache/dev-python/bsddb3-5.3.0-r1 +++ b/metadata/md5-cache/dev-python/bsddb3-5.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=sys-libs/db-4.8.30 python_targets_python2_6? ( >=dev-lang/python-2.6.8 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/b/bsddb3/bsddb3-5.3.0.tar.gz -_eclasses_=db-use 1c719875d6599536f956fafea9e1f404 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=db-use 1c719875d6599536f956fafea9e1f404 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4436768b4562814cfa7171dd3581e8f0 diff --git a/metadata/md5-cache/dev-python/bsddb3-6.0.0 b/metadata/md5-cache/dev-python/bsddb3-6.0.0 index 0ed5aa95a9cd..b59620f1445e 100644 --- a/metadata/md5-cache/dev-python/bsddb3-6.0.0 +++ b/metadata/md5-cache/dev-python/bsddb3-6.0.0 @@ -10,5 +10,5 @@ RDEPEND=>=sys-libs/db-4.8.30 python_targets_python2_6? ( >=dev-lang/python-2.6.8 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/b/bsddb3/bsddb3-6.0.0.tar.gz -_eclasses_=db-use 1c719875d6599536f956fafea9e1f404 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=db-use 1c719875d6599536f956fafea9e1f404 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b5a2c3f77f03245140dbd73282ea611c diff --git a/metadata/md5-cache/dev-python/buildutils-0.3-r1 b/metadata/md5-cache/dev-python/buildutils-0.3-r1 index e4f981fc0cb8..84de4a839bb0 100644 --- a/metadata/md5-cache/dev-python/buildutils-0.3-r1 +++ b/metadata/md5-cache/dev-python/buildutils-0.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/b/buildutils/buildutils-0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=450b08ffe1c5f7ccccf38a5af1c1e21d diff --git a/metadata/md5-cache/dev-python/bytecodeassembler-0.6 b/metadata/md5-cache/dev-python/bytecodeassembler-0.6 index cb0e527aac0a..55131ff6a335 100644 --- a/metadata/md5-cache/dev-python/bytecodeassembler-0.6 +++ b/metadata/md5-cache/dev-python/bytecodeassembler-0.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/B/BytecodeAssembler/BytecodeAssembler-0.6.zip -> bytecodeassembler-0.6.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=df2a1762c7846f241f18a04fffb943a8 diff --git a/metadata/md5-cache/dev-python/cairocffi-0.5.1 b/metadata/md5-cache/dev-python/cairocffi-0.5.1 index 487633966d11..3860f7032b53 100644 --- a/metadata/md5-cache/dev-python/cairocffi-0.5.1 +++ b/metadata/md5-cache/dev-python/cairocffi-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/cffi[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/c/cairocffi/cairocffi-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f9a656b893cbfcb8c626246643369943 diff --git a/metadata/md5-cache/dev-python/carbon-0.9.10-r1 b/metadata/md5-cache/dev-python/carbon-0.9.10-r1 index 0fcde59fc743..406c1ccf2040 100644 --- a/metadata/md5-cache/dev-python/carbon-0.9.10-r1 +++ b/metadata/md5-cache/dev-python/carbon-0.9.10-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/twisted-core dev-python/whisper[python_targets_python2_6(-)?, REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/c/carbon/carbon-0.9.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7736804c01f968af8545438cf5224d0c diff --git a/metadata/md5-cache/dev-python/casuarius-1.1 b/metadata/md5-cache/dev-python/casuarius-1.1 index 9d6ce57a7773..a0abdae45bee 100644 --- a/metadata/md5-cache/dev-python/casuarius-1.1 +++ b/metadata/md5-cache/dev-python/casuarius-1.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/c/casuarius/casuarius-1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b3dd630db9aab7858f323e55db30a9b9 diff --git a/metadata/md5-cache/dev-python/celementtree-1.0.5-r2 b/metadata/md5-cache/dev-python/celementtree-1.0.5-r2 index 6b67e061e1c9..a25653a27868 100644 --- a/metadata/md5-cache/dev-python/celementtree-1.0.5-r2 +++ b/metadata/md5-cache/dev-python/celementtree-1.0.5-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/elementtree-1.2[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://effbot.org/downloads/cElementTree-1.0.5-20051216.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f6c440a923ef2bf1c1d6b21423044ba3 diff --git a/metadata/md5-cache/dev-python/celery-3.0.19 b/metadata/md5-cache/dev-python/celery-3.0.19 index 29d8738850cf..cd94679349bb 100644 --- a/metadata/md5-cache/dev-python/celery-3.0.19 +++ b/metadata/md5-cache/dev-python/celery-3.0.19 @@ -10,5 +10,5 @@ RDEPEND==dev-python/kombu-2.5.10[python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/c/celery/celery-3.0.19.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2adc79f39f8dc9d4b30e7bc6841ccccc diff --git a/metadata/md5-cache/dev-python/celery-3.0.21 b/metadata/md5-cache/dev-python/celery-3.0.21 index bb8048b92dff..7137b5aa9a67 100644 --- a/metadata/md5-cache/dev-python/celery-3.0.21 +++ b/metadata/md5-cache/dev-python/celery-3.0.21 @@ -10,5 +10,5 @@ RDEPEND==dev-python/kombu-2.5.10[python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/c/celery/celery-3.0.21.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3f6d742cc25e2c122326e9cb33887c88 diff --git a/metadata/md5-cache/dev-python/cement-2.0.2 b/metadata/md5-cache/dev-python/cement-2.0.2 index 0cb9acf83500..4bfdf8eaae3d 100644 --- a/metadata/md5-cache/dev-python/cement-2.0.2 +++ b/metadata/md5-cache/dev-python/cement-2.0.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://builtoncement.com/cement/2.0/source/cement-2.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f598fe0b60e03b312d2f300c506dd837 diff --git a/metadata/md5-cache/dev-python/cffi-0.6 b/metadata/md5-cache/dev-python/cffi-0.6 index 9e9eaa2980c8..2d0704599653 100644 --- a/metadata/md5-cache/dev-python/cffi-0.6 +++ b/metadata/md5-cache/dev-python/cffi-0.6 @@ -10,5 +10,5 @@ RDEPEND=virtual/libffi dev-python/pycparser[python_targets_python2_6(-)?,-python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/c/cffi/cffi-0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=85c6873ed5e414a0ebf209cec4b13000 diff --git a/metadata/md5-cache/dev-python/cffi-0.7 b/metadata/md5-cache/dev-python/cffi-0.7 index 2b9a7994b496..6ae021fb730a 100644 --- a/metadata/md5-cache/dev-python/cffi-0.7 +++ b/metadata/md5-cache/dev-python/cffi-0.7 @@ -10,5 +10,5 @@ RDEPEND=virtual/libffi dev-python/pycparser[python_targets_python2_6(-)?,-python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/cffi/cffi-0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=28b584b9e5b4c50068406213b38ec5f1 diff --git a/metadata/md5-cache/dev-python/cffi-0.7.2 b/metadata/md5-cache/dev-python/cffi-0.7.2 index 6aaba636c84d..13918228e8d3 100644 --- a/metadata/md5-cache/dev-python/cffi-0.7.2 +++ b/metadata/md5-cache/dev-python/cffi-0.7.2 @@ -10,5 +10,5 @@ RDEPEND=virtual/libffi dev-python/pycparser[python_targets_python2_6(-)?,-python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/cffi/cffi-0.7.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7de4557940f12fb86579a03d5e991d21 diff --git a/metadata/md5-cache/dev-python/cgkit-2.0.0 b/metadata/md5-cache/dev-python/cgkit-2.0.0 index 5a9d1c9d86d7..9a8b3f0ce106 100644 --- a/metadata/md5-cache/dev-python/cgkit-2.0.0 +++ b/metadata/md5-cache/dev-python/cgkit-2.0.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/boost-1.48[python,python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=python_targets_python2_6? ( mirror://sourceforge/cgkit/cgkit/cgkit-2.0.0/cgkit-2.0.0-py2k.tar.gz ) python_targets_python2_7? ( mirror://sourceforge/cgkit/cgkit/cgkit-2.0.0/cgkit-2.0.0-py2k.tar.gz ) python_targets_python3_2? ( mirror://sourceforge/cgkit/cgkit/cgkit-2.0.0/cgkit-2.0.0-py3k.tar.gz ) python_targets_python3_3? ( mirror://sourceforge/cgkit/cgkit/cgkit-2.0.0/cgkit-2.0.0-py3k.tar.gz ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e9be591a5ff466e563dcd2b8a58fb129 diff --git a/metadata/md5-cache/dev-python/chaco-4.3.0-r1 b/metadata/md5-cache/dev-python/chaco-4.3.0-r1 index 0dcde0c18370..c970f5b67de7 100644 --- a/metadata/md5-cache/dev-python/chaco-4.3.0-r1 +++ b/metadata/md5-cache/dev-python/chaco-4.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/enable-4 dev-python/numpy[python_targets_python2_7(-)?,-pyt REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/chaco-4.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=4f6cb730ec5f3a57d7a39eab9fa2d1ff diff --git a/metadata/md5-cache/dev-python/chameleon-2.11-r1 b/metadata/md5-cache/dev-python/chameleon-2.11-r1 index 87a3ce2381a0..76bb4c1edcf4 100644 --- a/metadata/md5-cache/dev-python/chameleon-2.11-r1 +++ b/metadata/md5-cache/dev-python/chameleon-2.11-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/C/Chameleon/Chameleon-2.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a4f291cec165d826e9bd7f816459acb7 diff --git a/metadata/md5-cache/dev-python/chameleon-2.12 b/metadata/md5-cache/dev-python/chameleon-2.12 index 8b7d4298883d..11c1d1f37dee 100644 --- a/metadata/md5-cache/dev-python/chameleon-2.12 +++ b/metadata/md5-cache/dev-python/chameleon-2.12 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/C/Chameleon/Chameleon-2.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=46c377257aa5d57d3e10125b6f7936fe diff --git a/metadata/md5-cache/dev-python/charade-1.0.3 b/metadata/md5-cache/dev-python/charade-1.0.3 index 62ac85b38e74..3b06436c9c75 100644 --- a/metadata/md5-cache/dev-python/charade-1.0.3 +++ b/metadata/md5-cache/dev-python/charade-1.0.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/charade/charade-1.0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5b31b3e37fbbe6ff7e82ef48021430f6 diff --git a/metadata/md5-cache/dev-python/chardet-2.0.1-r1 b/metadata/md5-cache/dev-python/chardet-2.0.1-r1 index 3593c1c6af84..e171bd700ed9 100644 --- a/metadata/md5-cache/dev-python/chardet-2.0.1-r1 +++ b/metadata/md5-cache/dev-python/chardet-2.0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://chardet.feedparser.org/download/python2-chardet-2.0.1.tgz http://chardet.feedparser.org/download/python3-chardet-2.0.1.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=451364d43927890de39ea1ba04024416 diff --git a/metadata/md5-cache/dev-python/cheetah-2.4.4-r1 b/metadata/md5-cache/dev-python/cheetah-2.4.4-r1 index 2fa24482ee8f..169252880a82 100644 --- a/metadata/md5-cache/dev-python/cheetah-2.4.4-r1 +++ b/metadata/md5-cache/dev-python/cheetah-2.4.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/markdown[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/C/Cheetah/Cheetah-2.4.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3ee072587838617a15a6033642134cc9 diff --git a/metadata/md5-cache/dev-python/cherrypy-3.2.2-r1 b/metadata/md5-cache/dev-python/cherrypy-3.2.2-r1 index e5bfac19fb02..64fa7ccb2fe9 100644 --- a/metadata/md5-cache/dev-python/cherrypy-3.2.2-r1 +++ b/metadata/md5-cache/dev-python/cherrypy-3.2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://download.cherrypy.org/cherrypy/3.2.2/CherryPy-3.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3b765853b15c4fc1b4b2d05cae5f986c diff --git a/metadata/md5-cache/dev-python/cliapp-1.20130313 b/metadata/md5-cache/dev-python/cliapp-1.20130313 index 0f57b498269e..1e221b55e2db 100644 --- a/metadata/md5-cache/dev-python/cliapp-1.20130313 +++ b/metadata/md5-cache/dev-python/cliapp-1.20130313 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/p/python-cliapp/python-cliapp_1.20130313.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ab707d8f776233cfc949393e66237001 diff --git a/metadata/md5-cache/dev-python/cliapp-1.20130808 b/metadata/md5-cache/dev-python/cliapp-1.20130808 index 3722a9b984ad..d09843c2387d 100644 --- a/metadata/md5-cache/dev-python/cliapp-1.20130808 +++ b/metadata/md5-cache/dev-python/cliapp-1.20130808 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/p/python-cliapp/python-cliapp_1.20130808.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dab5c29085202c69e09edae439ce510e diff --git a/metadata/md5-cache/dev-python/cliff-1.4 b/metadata/md5-cache/dev-python/cliff-1.4 index e4ce45837ff2..ebf0c715f2eb 100644 --- a/metadata/md5-cache/dev-python/cliff-1.4 +++ b/metadata/md5-cache/dev-python/cliff-1.4 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/c/cliff/cliff-1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=010d084f17807dada675d52403a3245d diff --git a/metadata/md5-cache/dev-python/cliff-1.4.5 b/metadata/md5-cache/dev-python/cliff-1.4.5 new file mode 100644 index 000000000000..25ed92a705f4 --- /dev/null +++ b/metadata/md5-cache/dev-python/cliff-1.4.5 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/pyparsing-2.0.1[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/prettytable-0.6[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] =dev-python/cmd2-0.6.7[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] virtual/python-argparse[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/mock[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/coverage[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pep8[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/cmd2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +DESCRIPTION=Command Line Interface Formulation Framework +EAPI=5 +HOMEPAGE=https://github.com/dreamhost/cliff +IUSE=test python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) +SLOT=0 +SRC_URI=mirror://pypi/c/cliff/cliff-1.4.5.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=4cd73ff47385ce2992523c4487c1e519 diff --git a/metadata/md5-cache/dev-python/cmd2-0.6.4-r1 b/metadata/md5-cache/dev-python/cmd2-0.6.4-r1 index 4d6c527eb872..845f7db07956 100644 --- a/metadata/md5-cache/dev-python/cmd2-0.6.4-r1 +++ b/metadata/md5-cache/dev-python/cmd2-0.6.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyparsing[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/cmd2/cmd2-0.6.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e310a1ed7de082883de19208ff0214c9 diff --git a/metadata/md5-cache/dev-python/cmd2-0.6.6.1 b/metadata/md5-cache/dev-python/cmd2-0.6.6.1 index 0eac67636643..02fdac800908 100644 --- a/metadata/md5-cache/dev-python/cmd2-0.6.6.1 +++ b/metadata/md5-cache/dev-python/cmd2-0.6.6.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyparsing[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/cmd2/cmd2-0.6.6.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=913f775e950b80bbd1735ee91f5cb420 diff --git a/metadata/md5-cache/dev-python/cmd2-0.6.7 b/metadata/md5-cache/dev-python/cmd2-0.6.7 new file mode 100644 index 000000000000..88f8ac22accb --- /dev/null +++ b/metadata/md5-cache/dev-python/cmd2-0.6.7 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/pyparsing-2.0.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Extra features for standard library's cmd module +EAPI=5 +HOMEPAGE=https://bitbucket.org/catherinedevlin/cmd2 +IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=>=dev-python/pyparsing-2.0.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] +REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) +SLOT=0 +SRC_URI=mirror://pypi/c/cmd2/cmd2-0.6.7.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=74c32cf0b8d8f39c3dadf88c73a1bd6c diff --git a/metadata/md5-cache/dev-python/codetools-4.1.0-r1 b/metadata/md5-cache/dev-python/codetools-4.1.0-r1 index 299ba48f4958..7154f9535b3a 100644 --- a/metadata/md5-cache/dev-python/codetools-4.1.0-r1 +++ b/metadata/md5-cache/dev-python/codetools-4.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/codetools-4.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=5eb7a3041c6ca91f2609d2631fc3b64c diff --git a/metadata/md5-cache/dev-python/colander-1.0_alpha1-r1 b/metadata/md5-cache/dev-python/colander-1.0_alpha1-r1 index 92c4900a9707..83a533bb3b53 100644 --- a/metadata/md5-cache/dev-python/colander-1.0_alpha1-r1 +++ b/metadata/md5-cache/dev-python/colander-1.0_alpha1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/translationstring-1.1[python_targets_python2_6(-)?,python_t REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/colander/colander-1.0a1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0e05fec6edb7d3e148f2830e12b0a0a7 diff --git a/metadata/md5-cache/dev-python/colorama-0.2.4-r1 b/metadata/md5-cache/dev-python/colorama-0.2.4-r1 index 79f38f8f9be7..4bebd422d587 100644 --- a/metadata/md5-cache/dev-python/colorama-0.2.4-r1 +++ b/metadata/md5-cache/dev-python/colorama-0.2.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/colorama/colorama-0.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=92b9dc134b1f14aa457a2bd47bf2e8af diff --git a/metadata/md5-cache/dev-python/colorama-0.2.7 b/metadata/md5-cache/dev-python/colorama-0.2.7 index ce4498c83667..88d1c91c06fa 100644 --- a/metadata/md5-cache/dev-python/colorama-0.2.7 +++ b/metadata/md5-cache/dev-python/colorama-0.2.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/colorama/colorama-0.2.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=77fd9a9fe7b1fb6ff667e013d0763efa diff --git a/metadata/md5-cache/dev-python/colout-0.1 b/metadata/md5-cache/dev-python/colout-0.1 index 2e9c40adb0ef..b6718affd5cc 100644 --- a/metadata/md5-cache/dev-python/colout-0.1 +++ b/metadata/md5-cache/dev-python/colout-0.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/c/colout/colout-0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f1740668894d28664f2b76ed34e3c18a diff --git a/metadata/md5-cache/dev-python/configobj-4.7.2-r1 b/metadata/md5-cache/dev-python/configobj-4.7.2-r1 index 7f7acafa96b4..bdba9d9fa441 100644 --- a/metadata/md5-cache/dev-python/configobj-4.7.2-r1 +++ b/metadata/md5-cache/dev-python/configobj-4.7.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/configobj/configobj-4.7.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=affaefe93700957c78e2aec11e1eda66 diff --git a/metadata/md5-cache/dev-python/configobj-4.7.2-r2 b/metadata/md5-cache/dev-python/configobj-4.7.2-r2 index ce86d7d47513..a21aea201d13 100644 --- a/metadata/md5-cache/dev-python/configobj-4.7.2-r2 +++ b/metadata/md5-cache/dev-python/configobj-4.7.2-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/configobj/configobj-4.7.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f722829714d1e9c8f2fcb5831824f91e diff --git a/metadata/md5-cache/dev-python/configparser-3.2.0.3 b/metadata/md5-cache/dev-python/configparser-3.2.0.3 index 208a5a369a87..9c086eac2c0f 100644 --- a/metadata/md5-cache/dev-python/configparser-3.2.0.3 +++ b/metadata/md5-cache/dev-python/configparser-3.2.0.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/c/configparser/configparser-3.2.0r3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8edfe4964a4336c7379a50894c696e15 diff --git a/metadata/md5-cache/dev-python/contextlib2-0.4.0 b/metadata/md5-cache/dev-python/contextlib2-0.4.0 index d1b5d95d4ebb..85b98042de57 100644 --- a/metadata/md5-cache/dev-python/contextlib2-0.4.0 +++ b/metadata/md5-cache/dev-python/contextlib2-0.4.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/contextlib2/contextlib2-0.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=05af58e5b61ad6acee9c2fc2bab7b7df diff --git a/metadata/md5-cache/dev-python/couchdb-python-0.8-r1 b/metadata/md5-cache/dev-python/couchdb-python-0.8-r1 index 74f075dbdc19..e95b464f9cf9 100644 --- a/metadata/md5-cache/dev-python/couchdb-python-0.8-r1 +++ b/metadata/md5-cache/dev-python/couchdb-python-0.8-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/C/CouchDB/CouchDB-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d24ff5081643bf20b71785991f48fec3 diff --git a/metadata/md5-cache/dev-python/couchdb-python-0.9 b/metadata/md5-cache/dev-python/couchdb-python-0.9 index 9994a1806802..4fe57fa5d449 100644 --- a/metadata/md5-cache/dev-python/couchdb-python-0.9 +++ b/metadata/md5-cache/dev-python/couchdb-python-0.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/C/CouchDB/CouchDB-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7fe7293be49a4016311b4087e86d3c16 diff --git a/metadata/md5-cache/dev-python/cov-core-1.7 b/metadata/md5-cache/dev-python/cov-core-1.7 index a615e9a424e1..f2f1f9bca5e0 100644 --- a/metadata/md5-cache/dev-python/cov-core-1.7 +++ b/metadata/md5-cache/dev-python/cov-core-1.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/coverage[python_targets_python2_7(-)?,python_targets_python3_ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/c/cov-core/cov-core-1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=72e00e1e82ad321f7e663231f5cf4e09 diff --git a/metadata/md5-cache/dev-python/coverage-3.5.3-r1 b/metadata/md5-cache/dev-python/coverage-3.5.3-r1 index 9ae23e541f6c..c9b6a2a4aafc 100644 --- a/metadata/md5-cache/dev-python/coverage-3.5.3-r1 +++ b/metadata/md5-cache/dev-python/coverage-3.5.3-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/coverage/coverage-3.5.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a211c810476a8cf2c842eee49436d591 diff --git a/metadata/md5-cache/dev-python/coverage-3.6 b/metadata/md5-cache/dev-python/coverage-3.6 index 95674811b976..fe4bbb510d22 100644 --- a/metadata/md5-cache/dev-python/coverage-3.6 +++ b/metadata/md5-cache/dev-python/coverage-3.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/coverage/coverage-3.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5db9a08e56d6176ba433f35341b28df4 diff --git a/metadata/md5-cache/dev-python/cssselect-0.7.1-r1 b/metadata/md5-cache/dev-python/cssselect-0.7.1-r1 index 92b647e9c7a8..5bd2a092c772 100644 --- a/metadata/md5-cache/dev-python/cssselect-0.7.1-r1 +++ b/metadata/md5-cache/dev-python/cssselect-0.7.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/c/cssselect/cssselect-0.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c2e892a4cb64954341454f2b8c6ffc76 diff --git a/metadata/md5-cache/dev-python/cssutils-0.9.10-r1 b/metadata/md5-cache/dev-python/cssutils-0.9.10-r1 index d44db090e297..bef26480b55c 100644 --- a/metadata/md5-cache/dev-python/cssutils-0.9.10-r1 +++ b/metadata/md5-cache/dev-python/cssutils-0.9.10-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://bitbucket.org/cthedot/cssutils/get/6fbc1877f6089610b733a92d21c2bbf25dc1ca28.tar.gz -> cssutils-0.9.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=4b63a7c547fc12b8dd6e9c80401252df diff --git a/metadata/md5-cache/dev-python/cssutils-0.9.10_beta1-r1 b/metadata/md5-cache/dev-python/cssutils-0.9.10_beta1-r1 index ba73a59220e1..12338b1daa4e 100644 --- a/metadata/md5-cache/dev-python/cssutils-0.9.10_beta1-r1 +++ b/metadata/md5-cache/dev-python/cssutils-0.9.10_beta1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/c/cssutils/cssutils-0.9.10b1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b54277057a4253c041e111bae054f90a diff --git a/metadata/md5-cache/dev-python/ctypesgen-0_p72-r1 b/metadata/md5-cache/dev-python/ctypesgen-0_p72-r1 index 5d70fabd0d3f..f4dbd53e89d0 100644 --- a/metadata/md5-cache/dev-python/ctypesgen-0_p72-r1 +++ b/metadata/md5-cache/dev-python/ctypesgen-0_p72-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/ctypesgen-0_p72.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7f5361d231b95f0922a2109698448215 diff --git a/metadata/md5-cache/dev-python/cvxopt-1.1.5-r2 b/metadata/md5-cache/dev-python/cvxopt-1.1.5-r2 index 5932a5610a44..9f34c2f6594e 100644 --- a/metadata/md5-cache/dev-python/cvxopt-1.1.5-r2 +++ b/metadata/md5-cache/dev-python/cvxopt-1.1.5-r2 @@ -10,5 +10,5 @@ RDEPEND=virtual/blas virtual/cblas virtual/lapack sci-libs/cholmod sci-libs/umfp REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://abel.ee.ucla.edu/cvxopt/cvxopt-1.1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c90df193db768a01f5a8f8bd74e3c02d diff --git a/metadata/md5-cache/dev-python/cvxopt-1.1.6 b/metadata/md5-cache/dev-python/cvxopt-1.1.6 index ef93ef8c957d..ec8f92ad5bf8 100644 --- a/metadata/md5-cache/dev-python/cvxopt-1.1.6 +++ b/metadata/md5-cache/dev-python/cvxopt-1.1.6 @@ -10,5 +10,5 @@ RDEPEND=virtual/blas virtual/cblas virtual/lapack sci-libs/cholmod sci-libs/umfp REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/cvxopt/cvxopt/archive/1.1.6.tar.gz -> cvxopt-1.1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ced5b3e5c23e5c96544801214a95bff5 diff --git a/metadata/md5-cache/dev-python/cx_Freeze-4.3.1-r1 b/metadata/md5-cache/dev-python/cx_Freeze-4.3.1-r1 index 431f2f913c17..f4d878c815fe 100644 --- a/metadata/md5-cache/dev-python/cx_Freeze-4.3.1-r1 +++ b/metadata/md5-cache/dev-python/cx_Freeze-4.3.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/cx-freeze/cx_Freeze-4.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bf953db8f8d8bcf1617ef149620fef6e diff --git a/metadata/md5-cache/dev-python/cython-0.18-r1 b/metadata/md5-cache/dev-python/cython-0.18-r1 index d16a4fe82a6b..dc8c87b1514d 100644 --- a/metadata/md5-cache/dev-python/cython-0.18-r1 +++ b/metadata/md5-cache/dev-python/cython-0.18-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://www.cython.org/release/Cython-0.18.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=30ec567ba3dced23e10c35a12a4c401a diff --git a/metadata/md5-cache/dev-python/cython-0.19.1 b/metadata/md5-cache/dev-python/cython-0.19.1 index 8303f3d21ca9..5807977aec86 100644 --- a/metadata/md5-cache/dev-python/cython-0.19.1 +++ b/metadata/md5-cache/dev-python/cython-0.19.1 @@ -4,11 +4,11 @@ DESCRIPTION=A Python to C compiler EAPI=5 HOMEPAGE=http://www.cython.org/ http://pypi.python.org/pypi/Cython IUSE=doc test python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=amd64 ~arm hppa ~ia64 ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=amd64 ~arm hppa ~ia64 ppc ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=Apache-2.0 RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://www.cython.org/release/Cython-0.19.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a0e62942cf366fcaed8538b41f7dfd66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=57b8dba99a971acef18c749f72c9aa9e diff --git a/metadata/md5-cache/dev-python/d2to1-0.2.10 b/metadata/md5-cache/dev-python/d2to1-0.2.10 index 2c0a29116ebe..36f9702ef4b1 100644 --- a/metadata/md5-cache/dev-python/d2to1-0.2.10 +++ b/metadata/md5-cache/dev-python/d2to1-0.2.10 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/d/d2to1/d2to1-0.2.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ad36723fca873a82ce5b2dde3a47ed9f diff --git a/metadata/md5-cache/dev-python/d2to1-0.2.11 b/metadata/md5-cache/dev-python/d2to1-0.2.11 index 211cab3e7f36..86ab18042090 100644 --- a/metadata/md5-cache/dev-python/d2to1-0.2.11 +++ b/metadata/md5-cache/dev-python/d2to1-0.2.11 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/d/d2to1/d2to1-0.2.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5f68a7d133336e0e8eb16f114a4d9a15 diff --git a/metadata/md5-cache/dev-python/decorator-3.4.0-r1 b/metadata/md5-cache/dev-python/decorator-3.4.0-r1 index 6344ef2a4938..654fa0ae4333 100644 --- a/metadata/md5-cache/dev-python/decorator-3.4.0-r1 +++ b/metadata/md5-cache/dev-python/decorator-3.4.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/d/decorator/decorator-3.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5e8db1052d2fc32ca05a0110d8a99d09 diff --git a/metadata/md5-cache/dev-python/decoratortools-1.8-r1 b/metadata/md5-cache/dev-python/decoratortools-1.8-r1 index db92278e43b7..ca25eb5fddfd 100644 --- a/metadata/md5-cache/dev-python/decoratortools-1.8-r1 +++ b/metadata/md5-cache/dev-python/decoratortools-1.8-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/D/DecoratorTools/DecoratorTools-1.8.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7816fe33dd145b2f2ff588dcc914192b diff --git a/metadata/md5-cache/dev-python/deform-0.9.8 b/metadata/md5-cache/dev-python/deform-0.9.8 index eadc5eb1ef7a..ca635e24feef 100644 --- a/metadata/md5-cache/dev-python/deform-0.9.8 +++ b/metadata/md5-cache/dev-python/deform-0.9.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/d/deform/deform-0.9.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d42afd6066158b6ab0324acf4fe27568 diff --git a/metadata/md5-cache/dev-python/deform-0.9.9 b/metadata/md5-cache/dev-python/deform-0.9.9 index 6ffbc17f75ad..666629058882 100644 --- a/metadata/md5-cache/dev-python/deform-0.9.9 +++ b/metadata/md5-cache/dev-python/deform-0.9.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/d/deform/deform-0.9.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=69f7cc167f522ac28320bd30aa3a30ec diff --git a/metadata/md5-cache/dev-python/defusedxml-0.4.1 b/metadata/md5-cache/dev-python/defusedxml-0.4.1 index 1a47274bd680..493b174b6220 100644 --- a/metadata/md5-cache/dev-python/defusedxml-0.4.1 +++ b/metadata/md5-cache/dev-python/defusedxml-0.4.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyxml[python_targets_python2_6(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/d/defusedxml/defusedxml-0.4.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=114fe7d99e89ad736236de9bb6606406 diff --git a/metadata/md5-cache/dev-python/dingus-0.3.4-r1 b/metadata/md5-cache/dev-python/dingus-0.3.4-r1 index 5873c5a4b444..efeb43c96e9f 100644 --- a/metadata/md5-cache/dev-python/dingus-0.3.4-r1 +++ b/metadata/md5-cache/dev-python/dingus-0.3.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/d/dingus/dingus-0.3.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c834781097ca457f7306e97f4066250a diff --git a/metadata/md5-cache/dev-python/discogs-client-1.1.1 b/metadata/md5-cache/dev-python/discogs-client-1.1.1 index c34a0457f496..9819aafd14ab 100644 --- a/metadata/md5-cache/dev-python/discogs-client-1.1.1 +++ b/metadata/md5-cache/dev-python/discogs-client-1.1.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/discogs/discogs_client/archive/v1.1.1.tar.gz -> discogs-client-1.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0c6bb8538c29f3d86ea6477814cf615c diff --git a/metadata/md5-cache/dev-python/disqus-python-0.4.2 b/metadata/md5-cache/dev-python/disqus-python-0.4.2 index b0db3a8c9ce7..87eb934b48dc 100644 --- a/metadata/md5-cache/dev-python/disqus-python-0.4.2 +++ b/metadata/md5-cache/dev-python/disqus-python-0.4.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/disqus-python/disqus-python-0.4.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=95c8f0fa5bac1f0c6ce290b86beb16b8 diff --git a/metadata/md5-cache/dev-python/django-1.4.5 b/metadata/md5-cache/dev-python/django-1.4.5 index 21935f7357d2..63a46c99de25 100644 --- a/metadata/md5-cache/dev-python/django-1.4.5 +++ b/metadata/md5-cache/dev-python/django-1.4.5 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-imaging[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://www.djangoproject.com/m/releases/1.4/Django-1.4.5.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=ffa4cdf52d5685a7bd8ce2b96a44575c diff --git a/metadata/md5-cache/dev-python/django-1.4.8 b/metadata/md5-cache/dev-python/django-1.4.8 index f73b073141fc..4685df84a221 100644 --- a/metadata/md5-cache/dev-python/django-1.4.8 +++ b/metadata/md5-cache/dev-python/django-1.4.8 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-imaging[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://www.djangoproject.com/m/releases/1.4/Django-1.4.8.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=76dc8269acc0f4f07027b8eeaf7d8e9f diff --git a/metadata/md5-cache/dev-python/django-1.5.1 b/metadata/md5-cache/dev-python/django-1.5.1 index 8d07918b0476..c56b6c2bc10b 100644 --- a/metadata/md5-cache/dev-python/django-1.5.1 +++ b/metadata/md5-cache/dev-python/django-1.5.1 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-imaging[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://www.djangoproject.com/m/releases/1.5/Django-1.5.1.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=ab9220aeca07079f95530ad4da5f7b3e diff --git a/metadata/md5-cache/dev-python/django-1.5.4 b/metadata/md5-cache/dev-python/django-1.5.4 index ab5f3b3ba1b9..178a56d7ae25 100644 --- a/metadata/md5-cache/dev-python/django-1.5.4 +++ b/metadata/md5-cache/dev-python/django-1.5.4 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-imaging[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://www.djangoproject.com/m/releases/1.5/Django-1.5.4.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=4becc52e508ae3a8347c9130593a4ae5 diff --git a/metadata/md5-cache/dev-python/django-9999 b/metadata/md5-cache/dev-python/django-9999 index 93adfd51510a..df6cc5550eb5 100644 --- a/metadata/md5-cache/dev-python/django-9999 +++ b/metadata/md5-cache/dev-python/django-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=virtual/python-imaging[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] postgres? ( dev-python/psycopg:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) mysql? ( >=dev-python/mysql-python-1.2.3[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[sqlite?] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite?] ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2[sqlite?] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[sqlite?] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=app-admin/webapp-config-1.50.15 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=8dcc827ac32c8baee0b81477f18d5b6a diff --git a/metadata/md5-cache/dev-python/django-annoying-0.7.6-r1 b/metadata/md5-cache/dev-python/django-annoying-0.7.6-r1 index 8df92a32de5c..f87e9b1114bf 100644 --- a/metadata/md5-cache/dev-python/django-annoying-0.7.6-r1 +++ b/metadata/md5-cache/dev-python/django-annoying-0.7.6-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-annoying/django-annoying-0.7.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce1547dce509ef22a8405a127af66aa9 diff --git a/metadata/md5-cache/dev-python/django-annoying-0.7.7 b/metadata/md5-cache/dev-python/django-annoying-0.7.7 index 3b3b0dd26059..e166a2b8f0d5 100644 --- a/metadata/md5-cache/dev-python/django-annoying-0.7.7 +++ b/metadata/md5-cache/dev-python/django-annoying-0.7.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-annoying/django-annoying-0.7.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2bb01b420a2f791b2a7881035722c5da diff --git a/metadata/md5-cache/dev-python/django-appconf-0.6 b/metadata/md5-cache/dev-python/django-appconf-0.6 index 445562e95386..c76835217d7f 100644 --- a/metadata/md5-cache/dev-python/django-appconf-0.6 +++ b/metadata/md5-cache/dev-python/django-appconf-0.6 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.4.1[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-appconf/django-appconf-0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ed2164fe91995929a709a6d45ea9eea3 diff --git a/metadata/md5-cache/dev-python/django-auth-ldap-1.1.4-r1 b/metadata/md5-cache/dev-python/django-auth-ldap-1.1.4-r1 index 12b050db218a..0b09bce0282a 100644 --- a/metadata/md5-cache/dev-python/django-auth-ldap-1.1.4-r1 +++ b/metadata/md5-cache/dev-python/django-auth-ldap-1.1.4-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.3.2[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://bitbucket.org/psagers/django-auth-ldap/get/1.1.4.tar.gz -> django-auth-ldap-1.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=8e89a6b2cee7721fd4abc6eb92bb3efb diff --git a/metadata/md5-cache/dev-python/django-celery-3.0.17-r1 b/metadata/md5-cache/dev-python/django-celery-3.0.17-r1 index 11c7c9be7708..06a915fde788 100644 --- a/metadata/md5-cache/dev-python/django-celery-3.0.17-r1 +++ b/metadata/md5-cache/dev-python/django-celery-3.0.17-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/celery-3.0.17[python_targets_python2_7(-)?,-python_single_t REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-celery/django-celery-3.0.17.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2e3748e8a376e2795404a030999f9b1a diff --git a/metadata/md5-cache/dev-python/django-celery-3.0.21 b/metadata/md5-cache/dev-python/django-celery-3.0.21 index b068741de486..c07a7be5afce 100644 --- a/metadata/md5-cache/dev-python/django-celery-3.0.21 +++ b/metadata/md5-cache/dev-python/django-celery-3.0.21 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/celery-3.0.17[python_targets_python2_7(-)?,-python_single_t REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-celery/django-celery-3.0.21.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=30302987ff2115da223a88d1333a62af diff --git a/metadata/md5-cache/dev-python/django-compressor-1.3 b/metadata/md5-cache/dev-python/django-compressor-1.3 index 83479036823b..7b65b8258d2b 100644 --- a/metadata/md5-cache/dev-python/django-compressor-1.3 +++ b/metadata/md5-cache/dev-python/django-compressor-1.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.1.4[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/jezdez/django_compressor/archive/1.3.tar.gz -> django-compressor-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d3b5cdca7acebb68414790b89d89cc96 diff --git a/metadata/md5-cache/dev-python/django-debug-toolbar-0.9.4-r1 b/metadata/md5-cache/dev-python/django-debug-toolbar-0.9.4-r1 index c2f0cf5bc151..61e2005207c5 100644 --- a/metadata/md5-cache/dev-python/django-debug-toolbar-0.9.4-r1 +++ b/metadata/md5-cache/dev-python/django-debug-toolbar-0.9.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/django-debug-toolbar/django-debug-toolbar/archive/0.9.4.tar.gz -> django-debug-toolbar-0.9.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7b1545b04fad4a8a247521d69f2c24cf diff --git a/metadata/md5-cache/dev-python/django-discover-runner-0.4 b/metadata/md5-cache/dev-python/django-discover-runner-0.4 index a43e99011e33..dc2f9a9d7385 100644 --- a/metadata/md5-cache/dev-python/django-discover-runner-0.4 +++ b/metadata/md5-cache/dev-python/django-discover-runner-0.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/d/django-discover-runner/django-discover-runner-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=57367b620f0e3220ae3f072a352050d5 diff --git a/metadata/md5-cache/dev-python/django-discover-runner-1.0 b/metadata/md5-cache/dev-python/django-discover-runner-1.0 index 08adcffad7ee..e58747c70771 100644 --- a/metadata/md5-cache/dev-python/django-discover-runner-1.0 +++ b/metadata/md5-cache/dev-python/django-discover-runner-1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/d/django-discover-runner/django-discover-runner-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6ccdebc32762c40a2541caac4f25de5a diff --git a/metadata/md5-cache/dev-python/django-endless-pagination-2.0 b/metadata/md5-cache/dev-python/django-endless-pagination-2.0 index 9b40e40d5d6c..79ed118e0126 100644 --- a/metadata/md5-cache/dev-python/django-endless-pagination-2.0 +++ b/metadata/md5-cache/dev-python/django-endless-pagination-2.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.3[python_targets_python2_7(-)?,-python_single_targ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/frankban/django-endless-pagination/archive/v2.0.tar.gz -> django-endless-pagination-2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d291b1b153a681aefda635d39a9b894e diff --git a/metadata/md5-cache/dev-python/django-evolution-0.6.7-r1 b/metadata/md5-cache/dev-python/django-evolution-0.6.7-r1 index f3963713489d..1ff5b2c1cc32 100644 --- a/metadata/md5-cache/dev-python/django-evolution-0.6.7-r1 +++ b/metadata/md5-cache/dev-python/django-evolution-0.6.7-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django_evolution/django_evolution-0.6.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fd3b968fa10b9b123c2c7706f8a0dc4e diff --git a/metadata/md5-cache/dev-python/django-evolution-0.6.9 b/metadata/md5-cache/dev-python/django-evolution-0.6.9 index 82173892ac02..9c05071bc866 100644 --- a/metadata/md5-cache/dev-python/django-evolution-0.6.9 +++ b/metadata/md5-cache/dev-python/django-evolution-0.6.9 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django_evolution/django_evolution-0.6.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2d7019392277b16ddd3d271558e6647c diff --git a/metadata/md5-cache/dev-python/django-extensions-1.0.2-r1 b/metadata/md5-cache/dev-python/django-extensions-1.0.2-r1 index e9abe385fae0..bb90a3670870 100644 --- a/metadata/md5-cache/dev-python/django-extensions-1.0.2-r1 +++ b/metadata/md5-cache/dev-python/django-extensions-1.0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[mysql?,postgres?,sqlite?] dev-python/pygments dev-pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://github.com/django-extensions/django-extensions/tarball/1.0.2/django-extensions-1.0.2.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ecbba0e855cd30e1d38b3c666bc751b7 diff --git a/metadata/md5-cache/dev-python/django-international-0.0.3 b/metadata/md5-cache/dev-python/django-international-0.0.3 index 2d39aeedf190..8b9cb55624eb 100644 --- a/metadata/md5-cache/dev-python/django-international-0.0.3 +++ b/metadata/md5-cache/dev-python/django-international-0.0.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-international/django-international-0.0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6a5784b580adb2da198ca5e8c3c56023 diff --git a/metadata/md5-cache/dev-python/django-international-0.0.6 b/metadata/md5-cache/dev-python/django-international-0.0.6 index 47af52145575..db62fe731487 100644 --- a/metadata/md5-cache/dev-python/django-international-0.0.6 +++ b/metadata/md5-cache/dev-python/django-international-0.0.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-international/django-international-0.0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2ad90241839fd2f5016e04f955f0374d diff --git a/metadata/md5-cache/dev-python/django-ldap-groups-0.1.3-r1 b/metadata/md5-cache/dev-python/django-ldap-groups-0.1.3-r1 index 9a95e988b22e..744c901b3bc7 100644 --- a/metadata/md5-cache/dev-python/django-ldap-groups-0.1.3-r1 +++ b/metadata/md5-cache/dev-python/django-ldap-groups-0.1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://django-ldap-groups.googlecode.com/files/django-ldap-groups-0.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d43eee5b1a1bc67b91ed606910bc0c74 diff --git a/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20120424-r1 b/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20120424-r1 index f9888667dc3f..4129390ef691 100644 --- a/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20120424-r1 +++ b/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20120424-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://dev.gentoo.org/~tampakrap/tarballs/django-ldapdb-0.1.0_p20120424.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15bd1af4fad917e462e3565b8d4cf246 diff --git a/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20130712 b/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20130712 index 3aac9619c816..e413806a1a66 100644 --- a/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20130712 +++ b/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20130712 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~idella4/tarballs/django-ldapdb-0.2.0_p20130712.tar.gz -> django-ldapdb-0.1.0_p20130712.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d327a5d35c5bf45440962b7c26965f90 diff --git a/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20130921 b/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20130921 index 80c9de2d772e..aecb727beb8a 100644 --- a/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20130921 +++ b/metadata/md5-cache/dev-python/django-ldapdb-0.1.0_p20130921 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~tampakrap/tarballs/django-ldapdb-0.1.0_p20130921.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0b71596ff4db10e55069469a59438612 diff --git a/metadata/md5-cache/dev-python/django-nose-1.1-r1 b/metadata/md5-cache/dev-python/django-nose-1.1-r1 index 73698cbc32b6..a0ca1c2cd561 100644 --- a/metadata/md5-cache/dev-python/django-nose-1.1-r1 +++ b/metadata/md5-cache/dev-python/django-nose-1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-nose/django-nose-1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=802b93317de7a49dfc8fd6d8990dbb8f diff --git a/metadata/md5-cache/dev-python/django-nose-1.2 b/metadata/md5-cache/dev-python/django-nose-1.2 index 2360f1a18624..461dfc9c6025 100644 --- a/metadata/md5-cache/dev-python/django-nose-1.2 +++ b/metadata/md5-cache/dev-python/django-nose-1.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-nose/django-nose-1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8b235562fbec2184582f5aa9ecb2deb4 diff --git a/metadata/md5-cache/dev-python/django-oauth-plus-2.1.0-r1 b/metadata/md5-cache/dev-python/django-oauth-plus-2.1.0-r1 index f1ab70c1f5f1..727124c4bd6a 100644 --- a/metadata/md5-cache/dev-python/django-oauth-plus-2.1.0-r1 +++ b/metadata/md5-cache/dev-python/django-oauth-plus-2.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.2.4[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-oauth-plus/django-oauth-plus-2.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fd3c48c4a3045b16ad4232028223ff58 diff --git a/metadata/md5-cache/dev-python/django-oauth-plus-2.1.2 b/metadata/md5-cache/dev-python/django-oauth-plus-2.1.2 index fb602419f13d..be4e50d4c7af 100644 --- a/metadata/md5-cache/dev-python/django-oauth-plus-2.1.2 +++ b/metadata/md5-cache/dev-python/django-oauth-plus-2.1.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.2.4[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-oauth-plus/django-oauth-plus-2.1.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9c28a6a6db33b791a9ad812006c13cef diff --git a/metadata/md5-cache/dev-python/django-oauth-plus-2.1.4 b/metadata/md5-cache/dev-python/django-oauth-plus-2.1.4 index 3f412f33f822..a1a3bb9ab21f 100644 --- a/metadata/md5-cache/dev-python/django-oauth-plus-2.1.4 +++ b/metadata/md5-cache/dev-python/django-oauth-plus-2.1.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.2.4[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-oauth-plus/django-oauth-plus-2.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38927195761cb9eda3ffede2e53cbb04 diff --git a/metadata/md5-cache/dev-python/django-oauth-plus-2.1.5 b/metadata/md5-cache/dev-python/django-oauth-plus-2.1.5 index 65326ef7665a..deb725668d61 100644 --- a/metadata/md5-cache/dev-python/django-oauth-plus-2.1.5 +++ b/metadata/md5-cache/dev-python/django-oauth-plus-2.1.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.2.4[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-oauth-plus/django-oauth-plus-2.1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d25911fb7e3d10dabead80fc9df55ca0 diff --git a/metadata/md5-cache/dev-python/django-openid-auth-0.5 b/metadata/md5-cache/dev-python/django-openid-auth-0.5 index ca135b74548d..00acf06bf995 100644 --- a/metadata/md5-cache/dev-python/django-openid-auth-0.5 +++ b/metadata/md5-cache/dev-python/django-openid-auth-0.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.3[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/django-openid-auth/trunk/0.5/+download/django-openid-auth-0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cd45b8795406c79ce6260019794aa537 diff --git a/metadata/md5-cache/dev-python/django-openstack-auth-1.0.10 b/metadata/md5-cache/dev-python/django-openstack-auth-1.0.10 index cdf3c1da8323..c3fa579e3122 100644 --- a/metadata/md5-cache/dev-python/django-openstack-auth-1.0.10 +++ b/metadata/md5-cache/dev-python/django-openstack-auth-1.0.10 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/python-keystoneclient-0.2[python_targets_python2_7(-)?,-pyt REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django_openstack_auth/django_openstack_auth-1.0.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5a3ce1ca92cb01c4dc644e05cc5465ef diff --git a/metadata/md5-cache/dev-python/django-openstack-auth-1.0.7 b/metadata/md5-cache/dev-python/django-openstack-auth-1.0.7 index ddcba89d92c6..0e7939357c2a 100644 --- a/metadata/md5-cache/dev-python/django-openstack-auth-1.0.7 +++ b/metadata/md5-cache/dev-python/django-openstack-auth-1.0.7 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/python-keystoneclient-0.2[python_targets_python2_7(-)?,-pyt REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django_openstack_auth/django_openstack_auth-1.0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5068378ba55bb7795f54b9bcb96a2bb0 diff --git a/metadata/md5-cache/dev-python/django-openstack-auth-1.1.3 b/metadata/md5-cache/dev-python/django-openstack-auth-1.1.3 new file mode 100644 index 000000000000..45d46324b6d5 --- /dev/null +++ b/metadata/md5-cache/dev-python/django-openstack-auth-1.1.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/hacking-0.5.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/Babel-0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/coverage-3.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mox-0.5.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/oslo-sphinx[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=A Django authentication backend for use with the OpenStack Keystone Identity backend. +EAPI=5 +HOMEPAGE=http://django_openstack_auth.readthedocs.org/ +IUSE=test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=>=dev-python/python-keystoneclient-0.3.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/django-1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/d/django_openstack_auth/django_openstack_auth-1.1.3.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=c3a92e80a0dc3690e2d9aeff4320b817 diff --git a/metadata/md5-cache/dev-python/django-picklefield-0.3.0 b/metadata/md5-cache/dev-python/django-picklefield-0.3.0 index 8187da3b1b16..3709516dc9f9 100644 --- a/metadata/md5-cache/dev-python/django-picklefield-0.3.0 +++ b/metadata/md5-cache/dev-python/django-picklefield-0.3.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.1.1[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/d/django-picklefield/django-picklefield-0.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=715fcf5b24d1fa0145a5537658cd41ea diff --git a/metadata/md5-cache/dev-python/django-pipeline-1.3.15 b/metadata/md5-cache/dev-python/django-pipeline-1.3.15 index 12e07fcb9f77..d2c9da69a7e5 100644 --- a/metadata/md5-cache/dev-python/django-pipeline-1.3.15 +++ b/metadata/md5-cache/dev-python/django-pipeline-1.3.15 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.4.1[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/cyberdelia/django-pipeline/archive/1.3.15.tar.gz -> django-pipeline-1.3.15-gh.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bbd3d7e445a7f15249bc2fb254d7017d diff --git a/metadata/md5-cache/dev-python/django-piston-0.2.3-r1 b/metadata/md5-cache/dev-python/django-piston-0.2.3-r1 index 0f6f773891de..db11b5f2110f 100644 --- a/metadata/md5-cache/dev-python/django-piston-0.2.3-r1 +++ b/metadata/md5-cache/dev-python/django-piston-0.2.3-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-piston/django-piston-0.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f35e50bb1c00235db0dfb320aad11613 diff --git a/metadata/md5-cache/dev-python/django-recaptcha-0.0.6-r2 b/metadata/md5-cache/dev-python/django-recaptcha-0.0.6-r2 index ce72b3f0d5a8..746f2115e115 100644 --- a/metadata/md5-cache/dev-python/django-recaptcha-0.0.6-r2 +++ b/metadata/md5-cache/dev-python/django-recaptcha-0.0.6-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/praekelt/django-recaptcha/archive/0.0.6.tar.gz -> django-recaptcha-0.0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2d5f4a00a44f39e1560258c39c2768d4 diff --git a/metadata/md5-cache/dev-python/django-registration-0.8-r1 b/metadata/md5-cache/dev-python/django-registration-0.8-r1 index e2dc98dc9c07..14139cc33d11 100644 --- a/metadata/md5-cache/dev-python/django-registration-0.8-r1 +++ b/metadata/md5-cache/dev-python/django-registration-0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-registration/django-registration-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1bb1cc6c7b2d4702f9548046dffad4bf diff --git a/metadata/md5-cache/dev-python/django-registration-1.0 b/metadata/md5-cache/dev-python/django-registration-1.0 index 92097e527c67..f2a9f9434034 100644 --- a/metadata/md5-cache/dev-python/django-registration-1.0 +++ b/metadata/md5-cache/dev-python/django-registration-1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-registration/django-registration-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ea9b177e2d150793dc4339410862fdaf diff --git a/metadata/md5-cache/dev-python/django-select2-3.2.1 b/metadata/md5-cache/dev-python/django-select2-3.2.1 index e96bd3baa1b6..2271d871d270 100644 --- a/metadata/md5-cache/dev-python/django-select2-3.2.1 +++ b/metadata/md5-cache/dev-python/django-select2-3.2.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_7(-)?,-python_single_target_pyt REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/D/Django-Select2/Django-Select2-3.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d045723c899c4d89ddc39657e6140b9d diff --git a/metadata/md5-cache/dev-python/django-select2-4.0.0 b/metadata/md5-cache/dev-python/django-select2-4.0.0 index f4e4424a96c8..f2b15b90b64e 100644 --- a/metadata/md5-cache/dev-python/django-select2-4.0.0 +++ b/metadata/md5-cache/dev-python/django-select2-4.0.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_7(-)?,-python_single_target_pyt REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/D/Django-Select2/Django-Select2-4.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=033e87c425658881d3a59f99d71c3423 diff --git a/metadata/md5-cache/dev-python/django-setuptest-0.1.2-r1 b/metadata/md5-cache/dev-python/django-setuptest-0.1.2-r1 index 13fbceba43b7..e9a8f7464c71 100644 --- a/metadata/md5-cache/dev-python/django-setuptest-0.1.2-r1 +++ b/metadata/md5-cache/dev-python/django-setuptest-0.1.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pep8[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/praekelt/django-setuptest/zipball/master/praekelt-django-setuptest-0.1.2-O-g86Offe9.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a016eee5d6b1b5f0a6e433a778b54553 diff --git a/metadata/md5-cache/dev-python/django-setuptest-0.1.4 b/metadata/md5-cache/dev-python/django-setuptest-0.1.4 index 4093a464890f..b94bfc1ecbee 100644 --- a/metadata/md5-cache/dev-python/django-setuptest-0.1.4 +++ b/metadata/md5-cache/dev-python/django-setuptest-0.1.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pep8[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/praekelt/django-setuptest/archive/0.1.4.tar.gz -> django-setuptest-0.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3dee37fff6c0eff109f32c4cf2a1130c diff --git a/metadata/md5-cache/dev-python/django-social-auth-0.7.23 b/metadata/md5-cache/dev-python/django-social-auth-0.7.23 index e1608d036a00..7b005fbaf5d6 100644 --- a/metadata/md5-cache/dev-python/django-social-auth-0.7.23 +++ b/metadata/md5-cache/dev-python/django-social-auth-0.7.23 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/omab/django-social-auth/archive/v0.7.23.tar.gz -> django-social-auth-0.7.23.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5fb62af917850d7071879d38c8566c25 diff --git a/metadata/md5-cache/dev-python/django-tastypie-0.9.15 b/metadata/md5-cache/dev-python/django-tastypie-0.9.15 index 2629da9ef417..c1e13a9e5ec0 100644 --- a/metadata/md5-cache/dev-python/django-tastypie-0.9.15 +++ b/metadata/md5-cache/dev-python/django-tastypie-0.9.15 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/mimeparse-0.1.3[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/toastdriven/django-tastypie/archive/v0.9.15.tar.gz -> django-tastypie-0.9.15.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1bc3c53f4c61de4a85edfea8242682e2 diff --git a/metadata/md5-cache/dev-python/django-xslt-0.4.5-r1 b/metadata/md5-cache/dev-python/django-xslt-0.4.5-r1 index 0dbc5bde3eb6..2bbb8b7565fe 100644 --- a/metadata/md5-cache/dev-python/django-xslt-0.4.5-r1 +++ b/metadata/md5-cache/dev-python/django-xslt-0.4.5-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/django-xslt/django-xslt-0.4.5.tar.gz test? ( http://dev.gentoo.org/~tampakrap/tarballs/django-xslt-demoapp-0.4.5_p20120427.tar.bz2 ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6cd89c1715e9d01eefb435d7f019da09 diff --git a/metadata/md5-cache/dev-python/dnspython-1.10.0-r1 b/metadata/md5-cache/dev-python/dnspython-1.10.0-r1 index c84931613d5e..4c9081b07350 100644 --- a/metadata/md5-cache/dev-python/dnspython-1.10.0-r1 +++ b/metadata/md5-cache/dev-python/dnspython-1.10.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.dnspython.org/kits/1.10.0/dnspython-1.10.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5b8180f0be88f3238bd735ebc3f9889a diff --git a/metadata/md5-cache/dev-python/dnspython-1.11.1 b/metadata/md5-cache/dev-python/dnspython-1.11.1 index 55998d8d1d3f..640eb1a88820 100644 --- a/metadata/md5-cache/dev-python/dnspython-1.11.1 +++ b/metadata/md5-cache/dev-python/dnspython-1.11.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.dnspython.org/kits/1.11.1/dnspython-1.11.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dfff66b036401a250b4bb1c656715214 diff --git a/metadata/md5-cache/dev-python/docutils-0.10 b/metadata/md5-cache/dev-python/docutils-0.10 index fe12518b09ca..1ad1ea7e0d10 100644 --- a/metadata/md5-cache/dev-python/docutils-0.10 +++ b/metadata/md5-cache/dev-python/docutils-0.10 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/docutils/docutils-0.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cc5564a025164f76aea1bb51dc5085d1 diff --git a/metadata/md5-cache/dev-python/docutils-0.9.1-r1 b/metadata/md5-cache/dev-python/docutils-0.9.1-r1 index 1952771fd137..7172b0405f37 100644 --- a/metadata/md5-cache/dev-python/docutils-0.9.1-r1 +++ b/metadata/md5-cache/dev-python/docutils-0.9.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://sourceforge/docutils/docutils-0.9.1.tar.gz glep? ( mirror://gentoo/glep-0.4-r1.tbz2 ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=27f2337d7d53c5844a04f7fbfac47455 diff --git a/metadata/md5-cache/dev-python/dogpile-cache-0.5.1 b/metadata/md5-cache/dev-python/dogpile-cache-0.5.1 index b4de8d7ffa88..6bdbb09c4c45 100644 --- a/metadata/md5-cache/dev-python/dogpile-cache-0.5.1 +++ b/metadata/md5-cache/dev-python/dogpile-cache-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/dogpile.cache/dogpile.cache-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6942b6c873483c29b3a803a91ff97d60 diff --git a/metadata/md5-cache/dev-python/dogpile-core-0.4.1 b/metadata/md5-cache/dev-python/dogpile-core-0.4.1 index a9a31f74e48b..e5b1527701f7 100644 --- a/metadata/md5-cache/dev-python/dogpile-core-0.4.1 +++ b/metadata/md5-cache/dev-python/dogpile-core-0.4.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/d/dogpile.core/dogpile.core-0.4.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9995da584dcc9fc6889fa2371e0d4730 diff --git a/metadata/md5-cache/dev-python/doit-0.20.0 b/metadata/md5-cache/dev-python/doit-0.20.0 index 9f33897f071b..c622797d64f7 100644 --- a/metadata/md5-cache/dev-python/doit-0.20.0 +++ b/metadata/md5-cache/dev-python/doit-0.20.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyinotify[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/d/doit/doit-0.20.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=438dc22b6ddecc16727ca2b8a114ca45 diff --git a/metadata/md5-cache/dev-python/doit-0.23.0 b/metadata/md5-cache/dev-python/doit-0.23.0 index fe2c76e03181..b85fd0773813 100644 --- a/metadata/md5-cache/dev-python/doit-0.23.0 +++ b/metadata/md5-cache/dev-python/doit-0.23.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyinotify[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/d/doit/doit-0.23.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9a7451b8588c14a838be6a87211620a0 diff --git a/metadata/md5-cache/dev-python/dreampie-1.2.1 b/metadata/md5-cache/dev-python/dreampie-1.2.1 index 68243b182533..d13461aeb227 100644 --- a/metadata/md5-cache/dev-python/dreampie-1.2.1 +++ b/metadata/md5-cache/dev-python/dreampie-1.2.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygtk[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/d/dreampie/dreampie-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a579d9a04c8985e7ef506c3cdae6a45c diff --git a/metadata/md5-cache/dev-python/dulwich-0.8.7-r1 b/metadata/md5-cache/dev-python/dulwich-0.8.7-r1 index 4ccbb3d1cb0f..68e4d23636de 100644 --- a/metadata/md5-cache/dev-python/dulwich-0.8.7-r1 +++ b/metadata/md5-cache/dev-python/dulwich-0.8.7-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://samba.org/~jelmer/dulwich/dulwich-0.8.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=74cc3c336b40484e635c236c6454036e diff --git a/metadata/md5-cache/dev-python/dulwich-0.9.0-r1 b/metadata/md5-cache/dev-python/dulwich-0.9.0-r1 index 116b66daee67..4acdac643c58 100644 --- a/metadata/md5-cache/dev-python/dulwich-0.9.0-r1 +++ b/metadata/md5-cache/dev-python/dulwich-0.9.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://samba.org/~jelmer/dulwich/dulwich-0.9.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=141c37d67f6ab7b736ef1dbb0e7dfc22 diff --git a/metadata/md5-cache/dev-python/dulwich-0.9.1 b/metadata/md5-cache/dev-python/dulwich-0.9.1 index d64ca8693d1c..40cc8ad88e7b 100644 --- a/metadata/md5-cache/dev-python/dulwich-0.9.1 +++ b/metadata/md5-cache/dev-python/dulwich-0.9.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://samba.org/~jelmer/dulwich/dulwich-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d2acd65b02e429cbce481f880182e12b diff --git a/metadata/md5-cache/dev-python/dulwich-0.9.3 b/metadata/md5-cache/dev-python/dulwich-0.9.3 index 00ebae7bf383..4fe5bc177e18 100644 --- a/metadata/md5-cache/dev-python/dulwich-0.9.3 +++ b/metadata/md5-cache/dev-python/dulwich-0.9.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/d/dulwich/dulwich-0.9.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=00a8c926ed20feb894cf2eb443f1938d diff --git a/metadata/md5-cache/dev-python/ecdsa-0.8-r1 b/metadata/md5-cache/dev-python/ecdsa-0.8-r1 index 9281fbfd662d..7ddc2796e861 100644 --- a/metadata/md5-cache/dev-python/ecdsa-0.8-r1 +++ b/metadata/md5-cache/dev-python/ecdsa-0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/warner/python-ecdsa/tarball/python-ecdsa-0.8 -> ecdsa-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=e7198fcb3bf435873ca13eb73c0f73a4 diff --git a/metadata/md5-cache/dev-python/ecdsa-0.9 b/metadata/md5-cache/dev-python/ecdsa-0.9 index b79d34b161f0..c40c0049fe18 100644 --- a/metadata/md5-cache/dev-python/ecdsa-0.9 +++ b/metadata/md5-cache/dev-python/ecdsa-0.9 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/warner/python-ecdsa/tarball/python-ecdsa-0.9 -> ecdsa-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=b96ee4363e046aa5ca2772fa23a7209f diff --git a/metadata/md5-cache/dev-python/editobj-0.5.7-r2 b/metadata/md5-cache/dev-python/editobj-0.5.7-r2 index 84d856cafa0d..9a0a34ea6351 100644 --- a/metadata/md5-cache/dev-python/editobj-0.5.7-r2 +++ b/metadata/md5-cache/dev-python/editobj-0.5.7-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[tk] ) python_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.gna.org/songwrite/EditObj-0.5.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b9312578d513ac564d9eb1a9836a2c59 diff --git a/metadata/md5-cache/dev-python/edpwd-0.0.7 b/metadata/md5-cache/dev-python/edpwd-0.0.7 index 00b213bcf504..177bed3c821d 100644 --- a/metadata/md5-cache/dev-python/edpwd-0.0.7 +++ b/metadata/md5-cache/dev-python/edpwd-0.0.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/e/edpwd/edpwd-0.0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b9e3b9bf2dbde723b3341fb9bc3ad9da diff --git a/metadata/md5-cache/dev-python/egenix-mx-base-3.2.5 b/metadata/md5-cache/dev-python/egenix-mx-base-3.2.5 index 7483c3fc4637..5c7fc308ce54 100644 --- a/metadata/md5-cache/dev-python/egenix-mx-base-3.2.5 +++ b/metadata/md5-cache/dev-python/egenix-mx-base-3.2.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://downloads.egenix.com/python/egenix-mx-base-3.2.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e196d1949c13391a39bd82db6e42189a diff --git a/metadata/md5-cache/dev-python/egenix-mx-base-3.2.6 b/metadata/md5-cache/dev-python/egenix-mx-base-3.2.6 index 1272dfc1c549..5d2414703ce1 100644 --- a/metadata/md5-cache/dev-python/egenix-mx-base-3.2.6 +++ b/metadata/md5-cache/dev-python/egenix-mx-base-3.2.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://downloads.egenix.com/python/egenix-mx-base-3.2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=156235d561b1f0a2abfd256fd0abf833 diff --git a/metadata/md5-cache/dev-python/elementtree-1.2.6-r3 b/metadata/md5-cache/dev-python/elementtree-1.2.6-r3 index 4dc51279502b..75c7eae110da 100644 --- a/metadata/md5-cache/dev-python/elementtree-1.2.6-r3 +++ b/metadata/md5-cache/dev-python/elementtree-1.2.6-r3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://effbot.org/downloads/elementtree-1.2.6-20050316.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4778085a2782749b12d9c06c68f36179 diff --git a/metadata/md5-cache/dev-python/empy-3.3-r1 b/metadata/md5-cache/dev-python/empy-3.3-r1 index 1792e5dadc32..98371662eaa7 100644 --- a/metadata/md5-cache/dev-python/empy-3.3-r1 +++ b/metadata/md5-cache/dev-python/empy-3.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://www.alcyone.com/software/empy/empy-3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b6cfe99167826e3cfbd2341e50a5ca4a diff --git a/metadata/md5-cache/dev-python/enable-4.3.0 b/metadata/md5-cache/dev-python/enable-4.3.0 index 1681f270cfec..d2e11ccfb2ad 100644 --- a/metadata/md5-cache/dev-python/enable-4.3.0 +++ b/metadata/md5-cache/dev-python/enable-4.3.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/enable-4.3.0.tar.gz http://dev.gentoo.org/~idella4/enable-4-TestsPaths.patch -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=dd4385587c1a681e3e5084f0d5480962 diff --git a/metadata/md5-cache/dev-python/enaml-0.6.8-r1 b/metadata/md5-cache/dev-python/enaml-0.6.8-r1 index e1117c169035..9dcc7367c7a5 100644 --- a/metadata/md5-cache/dev-python/enaml-0.6.8-r1 +++ b/metadata/md5-cache/dev-python/enaml-0.6.8-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/casuarius[python_targets_python2_7(-)?,-python_single_target_ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/enaml-0.6.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=546bd17387287896446943685b675598 diff --git a/metadata/md5-cache/dev-python/encore-0.3 b/metadata/md5-cache/dev-python/encore-0.3 index 44a75ac1efda..480c8d58ac01 100644 --- a/metadata/md5-cache/dev-python/encore-0.3 +++ b/metadata/md5-cache/dev-python/encore-0.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/encore-0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=927e1b2e6bad8b0d619983cc89e9bafa diff --git a/metadata/md5-cache/dev-python/encore-0.4.0 b/metadata/md5-cache/dev-python/encore-0.4.0 index e0881bc09cac..8f6566a89fd4 100644 --- a/metadata/md5-cache/dev-python/encore-0.4.0 +++ b/metadata/md5-cache/dev-python/encore-0.4.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/e/encore/encore-0.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=607f5873cd1489668464a137bffc6aa3 diff --git a/metadata/md5-cache/dev-python/envisage-4.3.0-r1 b/metadata/md5-cache/dev-python/envisage-4.3.0-r1 index 93f6657513d6..f8dccd08c733 100644 --- a/metadata/md5-cache/dev-python/envisage-4.3.0-r1 +++ b/metadata/md5-cache/dev-python/envisage-4.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/traits-4[python_targets_python2_7(-)?,-python_single_target REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/envisage-4.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=c5da7073238be4eb6beb5740b033c3c1 diff --git a/metadata/md5-cache/dev-python/envoy-0.0.2-r1 b/metadata/md5-cache/dev-python/envoy-0.0.2-r1 index 5c859cad8357..66e9298b6acb 100644 --- a/metadata/md5-cache/dev-python/envoy-0.0.2-r1 +++ b/metadata/md5-cache/dev-python/envoy-0.0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/e/envoy/envoy-0.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15167a26c1d1dcf737f73de807e1cd50 diff --git a/metadata/md5-cache/dev-python/enzyme-0.2 b/metadata/md5-cache/dev-python/enzyme-0.2 index 814ef14e1f5c..17d4e069cd20 100644 --- a/metadata/md5-cache/dev-python/enzyme-0.2 +++ b/metadata/md5-cache/dev-python/enzyme-0.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/Diaoul/enzyme/archive/0.2.tar.gz -> enzyme-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=92a1ebbb6c10f7902f5825ffa086d1e5 diff --git a/metadata/md5-cache/dev-python/enzyme-9999 b/metadata/md5-cache/dev-python/enzyme-9999 index ccf474fb2db7..58ac2d7b33f3 100644 --- a/metadata/md5-cache/dev-python/enzyme-9999 +++ b/metadata/md5-cache/dev-python/enzyme-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=48f10b5452aafd9f3188e06b845d8ba8 diff --git a/metadata/md5-cache/dev-python/epsilon-0.6.0-r2 b/metadata/md5-cache/dev-python/epsilon-0.6.0-r2 index 1576412bcccc..d8c9045ee2c3 100644 --- a/metadata/md5-cache/dev-python/epsilon-0.6.0-r2 +++ b/metadata/md5-cache/dev-python/epsilon-0.6.0-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/twisted-core[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/E/Epsilon/Epsilon-0.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=420479d97d150d398c4c1df729be5c1a diff --git a/metadata/md5-cache/dev-python/epydoc-3.0.1-r2 b/metadata/md5-cache/dev-python/epydoc-3.0.1-r2 index be2871c85545..043d1b139dbe 100644 --- a/metadata/md5-cache/dev-python/epydoc-3.0.1-r2 +++ b/metadata/md5-cache/dev-python/epydoc-3.0.1-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/docutils[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/epydoc/epydoc-3.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=af8d9de3012904b5b5c8117170b31f25 diff --git a/metadata/md5-cache/dev-python/errorhandler-1.1.1-r1 b/metadata/md5-cache/dev-python/errorhandler-1.1.1-r1 index d321edb0d555..5c12f07c85d2 100644 --- a/metadata/md5-cache/dev-python/errorhandler-1.1.1-r1 +++ b/metadata/md5-cache/dev-python/errorhandler-1.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/e/errorhandler/errorhandler-1.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5978eb339c0e15549d122341da615932 diff --git a/metadata/md5-cache/dev-python/ets-4.3.0-r1 b/metadata/md5-cache/dev-python/ets-4.3.0-r1 index 3354ae0c568b..84110c2bdced 100644 --- a/metadata/md5-cache/dev-python/ets-4.3.0-r1 +++ b/metadata/md5-cache/dev-python/ets-4.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/apptools-4.2.0[doc?,examples?,python_targets_python2_7(-)?, REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/ets-4.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4b28c773c26b76f2e3d7d532079df50c diff --git a/metadata/md5-cache/dev-python/etsdevtools-4.0.2-r1 b/metadata/md5-cache/dev-python/etsdevtools-4.0.2-r1 index 388ecae7edaf..9cbcace8216b 100644 --- a/metadata/md5-cache/dev-python/etsdevtools-4.0.2-r1 +++ b/metadata/md5-cache/dev-python/etsdevtools-4.0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/etsdevtools-4.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=479b6bf11c3989b59d3454318862bb97 diff --git a/metadata/md5-cache/dev-python/etsproxy-0.1.2-r1 b/metadata/md5-cache/dev-python/etsproxy-0.1.2-r1 index 6403fde26636..4da9277ba89e 100644 --- a/metadata/md5-cache/dev-python/etsproxy-0.1.2-r1 +++ b/metadata/md5-cache/dev-python/etsproxy-0.1.2-r1 @@ -10,5 +10,5 @@ RDEPEND=!=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://debian/pool/main/e/eunuchs/eunuchs_20050320.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a5695c719ddf4a2f9d3ad8dbaea085c9 diff --git a/metadata/md5-cache/dev-python/eventlet-0.12.1-r1 b/metadata/md5-cache/dev-python/eventlet-0.12.1-r1 index 3b43058de733..f9201eeac90c 100644 --- a/metadata/md5-cache/dev-python/eventlet-0.12.1-r1 +++ b/metadata/md5-cache/dev-python/eventlet-0.12.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/greenlet[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/e/eventlet/eventlet-0.12.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a945f04400255090a8950fc5f6f69af0 diff --git a/metadata/md5-cache/dev-python/eventlet-0.13.0 b/metadata/md5-cache/dev-python/eventlet-0.13.0 index 870b41a01ae8..6933d3fce487 100644 --- a/metadata/md5-cache/dev-python/eventlet-0.13.0 +++ b/metadata/md5-cache/dev-python/eventlet-0.13.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/greenlet-0.3[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/e/eventlet/eventlet-0.13.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7afa12950529146540d47fd99b9dc78f diff --git a/metadata/md5-cache/dev-python/execnet-1.1-r1 b/metadata/md5-cache/dev-python/execnet-1.1-r1 index 68a60659367d..f8ac0d66dfd6 100644 --- a/metadata/md5-cache/dev-python/execnet-1.1-r1 +++ b/metadata/md5-cache/dev-python/execnet-1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/e/execnet/execnet-1.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15196b0d30634e3950af973bdfc731cd diff --git a/metadata/md5-cache/dev-python/extras-0.0.3 b/metadata/md5-cache/dev-python/extras-0.0.3 index 11921e0c4b08..8ee383374f17 100644 --- a/metadata/md5-cache/dev-python/extras-0.0.3 +++ b/metadata/md5-cache/dev-python/extras-0.0.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/e/extras/extras-0.0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d0301caec661d0d3de46c330d5fdae89 diff --git a/metadata/md5-cache/dev-python/extremes-1.1.1 b/metadata/md5-cache/dev-python/extremes-1.1.1 index 9f8f847cb595..59ce2a3414ec 100644 --- a/metadata/md5-cache/dev-python/extremes-1.1.1 +++ b/metadata/md5-cache/dev-python/extremes-1.1.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/E/Extremes/Extremes-1.1.1.zip -> extremes-1.1.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6edd60f65ecb4392724d490dc31d15f7 diff --git a/metadata/md5-cache/dev-python/eyeD3-0.7.1 b/metadata/md5-cache/dev-python/eyeD3-0.7.1 index 0d5f51a4deb4..051799bc6461 100644 --- a/metadata/md5-cache/dev-python/eyeD3-0.7.1 +++ b/metadata/md5-cache/dev-python/eyeD3-0.7.1 @@ -10,5 +10,5 @@ RDEPEND=!=dev-lang/py REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0.7 SRC_URI=http://eyed3.nicfit.net/releases/eyeD3-0.7.1.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0b7ff4d69a24230e205bfa1c2c1c0bbe diff --git a/metadata/md5-cache/dev-python/fabric-1.6.1-r1 b/metadata/md5-cache/dev-python/fabric-1.6.1-r1 index 3013eb88b05b..b1172344c1be 100644 --- a/metadata/md5-cache/dev-python/fabric-1.6.1-r1 +++ b/metadata/md5-cache/dev-python/fabric-1.6.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/paramiko-1.10.0[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Fabric/Fabric-1.6.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=57a8337c9a57c0b8b70c8be024583fce diff --git a/metadata/md5-cache/dev-python/fabric-1.7.0 b/metadata/md5-cache/dev-python/fabric-1.7.0 index 9d64973696eb..73d6a158af06 100644 --- a/metadata/md5-cache/dev-python/fabric-1.7.0 +++ b/metadata/md5-cache/dev-python/fabric-1.7.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/paramiko-1.10.0[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Fabric/Fabric-1.7.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e8dd3c6056615d8c3d248758a1150fa9 diff --git a/metadata/md5-cache/dev-python/fabric-1.8.0 b/metadata/md5-cache/dev-python/fabric-1.8.0 index 8332f08c4b61..ca50747b5b00 100644 --- a/metadata/md5-cache/dev-python/fabric-1.8.0 +++ b/metadata/md5-cache/dev-python/fabric-1.8.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/paramiko-1.10.0[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Fabric/Fabric-1.8.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=76febfb5beebc32c845989a9a900c069 diff --git a/metadata/md5-cache/dev-python/falcon-0.1.6 b/metadata/md5-cache/dev-python/falcon-0.1.6 index 3e33890d730a..7aea8eda87a5 100644 --- a/metadata/md5-cache/dev-python/falcon-0.1.6 +++ b/metadata/md5-cache/dev-python/falcon-0.1.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_3(-)? REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/racker/falcon/archive/0.1.6.tar.gz -> falcon-0.1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=413cb57bbe476d972198815d2f38c399 diff --git a/metadata/md5-cache/dev-python/falcon-0.1.7 b/metadata/md5-cache/dev-python/falcon-0.1.7 index 1605f4f3ba04..1df153aabca0 100644 --- a/metadata/md5-cache/dev-python/falcon-0.1.7 +++ b/metadata/md5-cache/dev-python/falcon-0.1.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_3(-)? REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/racker/falcon/archive/0.1.7.tar.gz -> falcon-0.1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=384e48b15e044a8e2a444359a97fa127 diff --git a/metadata/md5-cache/dev-python/feedgenerator-1.5 b/metadata/md5-cache/dev-python/feedgenerator-1.5 index 977673e5b6a8..1266acb5f61e 100644 --- a/metadata/md5-cache/dev-python/feedgenerator-1.5 +++ b/metadata/md5-cache/dev-python/feedgenerator-1.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/f/feedgenerator/feedgenerator-1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=527099ccb874f1f8975a9112428b07b6 diff --git a/metadata/md5-cache/dev-python/feedgenerator-1.6 b/metadata/md5-cache/dev-python/feedgenerator-1.6 index c18440b5bae5..4405019711fa 100644 --- a/metadata/md5-cache/dev-python/feedgenerator-1.6 +++ b/metadata/md5-cache/dev-python/feedgenerator-1.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/f/feedgenerator/feedgenerator-1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2c2b2cf5313e3496f87b98be13eff377 diff --git a/metadata/md5-cache/dev-python/feedgenerator-1.7 b/metadata/md5-cache/dev-python/feedgenerator-1.7 index b6d4f9946cae..4e52bdf23212 100644 --- a/metadata/md5-cache/dev-python/feedgenerator-1.7 +++ b/metadata/md5-cache/dev-python/feedgenerator-1.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/f/feedgenerator/feedgenerator-1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5bfe25c899564a7beb4f28ad6c2674d0 diff --git a/metadata/md5-cache/dev-python/feedparser-5.1.3-r1 b/metadata/md5-cache/dev-python/feedparser-5.1.3-r1 index fcf73b21496e..78786fa368e7 100644 --- a/metadata/md5-cache/dev-python/feedparser-5.1.3-r1 +++ b/metadata/md5-cache/dev-python/feedparser-5.1.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://feedparser.googlecode.com/files/feedparser-5.1.3.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=78a7073d1608eea9de8e0ba38a7c6b67 diff --git a/metadata/md5-cache/dev-python/fixtures-0.3.12-r1 b/metadata/md5-cache/dev-python/fixtures-0.3.12-r1 index 65439eb4d97f..0096cd2e3ace 100644 --- a/metadata/md5-cache/dev-python/fixtures-0.3.12-r1 +++ b/metadata/md5-cache/dev-python/fixtures-0.3.12-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/testtools-0.9.22 python_targets_python2_6? ( >=dev-lang/pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/f/fixtures/fixtures-0.3.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=180b55761486d4f22075480a7bb7ccc9 diff --git a/metadata/md5-cache/dev-python/fixtures-0.3.14 b/metadata/md5-cache/dev-python/fixtures-0.3.14 index dbfb970101c5..27ebe0b3ff0f 100644 --- a/metadata/md5-cache/dev-python/fixtures-0.3.14 +++ b/metadata/md5-cache/dev-python/fixtures-0.3.14 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/testtools-0.9.22 python_targets_python2_6? ( >=dev-lang/pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/f/fixtures/fixtures-0.3.14.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3ab8e5730ed23806b5fa95aafc48c506 diff --git a/metadata/md5-cache/dev-python/flake8-2.0 b/metadata/md5-cache/dev-python/flake8-2.0 index ff4fa3739412..ca272bbb6610 100644 --- a/metadata/md5-cache/dev-python/flake8-2.0 +++ b/metadata/md5-cache/dev-python/flake8-2.0 @@ -11,5 +11,5 @@ RDEPEND=>=dev-python/pyflakes-0.6.1[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/f/flake8/flake8-2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7ddabee595800dfdfcb52308dcb4951f diff --git a/metadata/md5-cache/dev-python/flask-0.10.1 b/metadata/md5-cache/dev-python/flask-0.10.1 index 0949e4d86e8e..d94a8b57e8ee 100644 --- a/metadata/md5-cache/dev-python/flask-0.10.1 +++ b/metadata/md5-cache/dev-python/flask-0.10.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/F/Flask/Flask-0.10.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=843ce0629541597ce99d0c66d4f61b22 diff --git a/metadata/md5-cache/dev-python/flask-0.10.1-r1 b/metadata/md5-cache/dev-python/flask-0.10.1-r1 index 4c1d660a0c72..5e441ac63a27 100644 --- a/metadata/md5-cache/dev-python/flask-0.10.1-r1 +++ b/metadata/md5-cache/dev-python/flask-0.10.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/blinker[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask/Flask-0.10.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=25183cf5986a1e8eda411f8fd0c8dbb5 diff --git a/metadata/md5-cache/dev-python/flask-9999 b/metadata/md5-cache/dev-python/flask-9999 index a22440093b28..5663d737e7ee 100644 --- a/metadata/md5-cache/dev-python/flask-9999 +++ b/metadata/md5-cache/dev-python/flask-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-python/blinker[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-)] >=dev-python/itsdangerous-0.21[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-)] >=dev-python/jinja-2.4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-)] >=dev-python/werkzeug-0.7[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=667562f226e865af963c1460db795ca1 diff --git a/metadata/md5-cache/dev-python/flask-admin-1.0.6 b/metadata/md5-cache/dev-python/flask-admin-1.0.6 index 0b12e911d891..f1ae7a73417a 100644 --- a/metadata/md5-cache/dev-python/flask-admin-1.0.6 +++ b/metadata/md5-cache/dev-python/flask-admin-1.0.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Admin/Flask-Admin-1.0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f65c81f0356968413c4ca72e7ad421c8 diff --git a/metadata/md5-cache/dev-python/flask-babel-0.8-r1 b/metadata/md5-cache/dev-python/flask-babel-0.8-r1 index 7f92913504f5..2a07fdaa8023 100644 --- a/metadata/md5-cache/dev-python/flask-babel-0.8-r1 +++ b/metadata/md5-cache/dev-python/flask-babel-0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Babel/Flask-Babel-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3806e9aaabf71e870e1f78da249036e1 diff --git a/metadata/md5-cache/dev-python/flask-babel-0.9 b/metadata/md5-cache/dev-python/flask-babel-0.9 index 4e8a32f7f4f7..8c6112605d6d 100644 --- a/metadata/md5-cache/dev-python/flask-babel-0.9 +++ b/metadata/md5-cache/dev-python/flask-babel-0.9 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Babel/Flask-Babel-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ea3725255c607d4d372fd586e0f0bba0 diff --git a/metadata/md5-cache/dev-python/flask-dashed-0.1b_p2 b/metadata/md5-cache/dev-python/flask-dashed-0.1b_p2 index 93890bb59afc..85ea3b8881f0 100644 --- a/metadata/md5-cache/dev-python/flask-dashed-0.1b_p2 +++ b/metadata/md5-cache/dev-python/flask-dashed-0.1b_p2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Dashed/Flask-Dashed-0.1b2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5083b640d3845b70ba5ed6227e7521c2 diff --git a/metadata/md5-cache/dev-python/flask-evolution-0.5-r1 b/metadata/md5-cache/dev-python/flask-evolution-0.5-r1 index 47cf1483d3c5..592340104d99 100644 --- a/metadata/md5-cache/dev-python/flask-evolution-0.5-r1 +++ b/metadata/md5-cache/dev-python/flask-evolution-0.5-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Evolution/Flask-Evolution-0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=906d90e87186827495e0a11946b8b013 diff --git a/metadata/md5-cache/dev-python/flask-login-0.2.2 b/metadata/md5-cache/dev-python/flask-login-0.2.2 index 8df80c79ae17..3b7dcbcb7e24 100644 --- a/metadata/md5-cache/dev-python/flask-login-0.2.2 +++ b/metadata/md5-cache/dev-python/flask-login-0.2.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.10[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Login/Flask-Login-0.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e7cce57ed6a6b044224eba84e782cea9 diff --git a/metadata/md5-cache/dev-python/flask-login-0.2.3 b/metadata/md5-cache/dev-python/flask-login-0.2.3 index 7272cfc5f6e7..70fc0e788a8d 100644 --- a/metadata/md5-cache/dev-python/flask-login-0.2.3 +++ b/metadata/md5-cache/dev-python/flask-login-0.2.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.10[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Login/Flask-Login-0.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c4d7b455b48275fd11d658e5084d0f22 diff --git a/metadata/md5-cache/dev-python/flask-login-0.2.5 b/metadata/md5-cache/dev-python/flask-login-0.2.5 index 56d7af740072..e123ccd61d1c 100644 --- a/metadata/md5-cache/dev-python/flask-login-0.2.5 +++ b/metadata/md5-cache/dev-python/flask-login-0.2.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.10[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Login/Flask-Login-0.2.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2ce091cc9c8265f563e1866985283687 diff --git a/metadata/md5-cache/dev-python/flask-login-0.2.6 b/metadata/md5-cache/dev-python/flask-login-0.2.6 index 3e8ae2b9d1a0..2a1182e3dd40 100644 --- a/metadata/md5-cache/dev-python/flask-login-0.2.6 +++ b/metadata/md5-cache/dev-python/flask-login-0.2.6 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.10[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Login/Flask-Login-0.2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a61a8f649d25e8cf7a45ff838f6d9713 diff --git a/metadata/md5-cache/dev-python/flask-login-0.2.7 b/metadata/md5-cache/dev-python/flask-login-0.2.7 index 7f814f55e0bb..69177ae48da8 100644 --- a/metadata/md5-cache/dev-python/flask-login-0.2.7 +++ b/metadata/md5-cache/dev-python/flask-login-0.2.7 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.10[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Login/Flask-Login-0.2.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aab56d70a5be911ad32928847ad2bf2a diff --git a/metadata/md5-cache/dev-python/flask-mail-0.9.0 b/metadata/md5-cache/dev-python/flask-mail-0.9.0 index 47676ba73e60..35af0f611880 100644 --- a/metadata/md5-cache/dev-python/flask-mail-0.9.0 +++ b/metadata/md5-cache/dev-python/flask-mail-0.9.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Mail/Flask-Mail-0.9.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9c2cde43b1a4a692221d1acefbbc8eda diff --git a/metadata/md5-cache/dev-python/flask-mongoengine-0.7.0 b/metadata/md5-cache/dev-python/flask-mongoengine-0.7.0 index a0186fe59d8e..a97c9962e19d 100644 --- a/metadata/md5-cache/dev-python/flask-mongoengine-0.7.0 +++ b/metadata/md5-cache/dev-python/flask-mongoengine-0.7.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/f/flask-mongoengine/flask-mongoengine-0.7.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e2bea6a0c02d665d5213afe56294effc diff --git a/metadata/md5-cache/dev-python/flask-openid-1.1.1-r1 b/metadata/md5-cache/dev-python/flask-openid-1.1.1-r1 index 6756d277fc38..47d5094fd28b 100644 --- a/metadata/md5-cache/dev-python/flask-openid-1.1.1-r1 +++ b/metadata/md5-cache/dev-python/flask-openid-1.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.3[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-OpenID/Flask-OpenID-1.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=27b6a166dfb49f799f6446e20aa98398 diff --git a/metadata/md5-cache/dev-python/flask-peewee-0.6.5 b/metadata/md5-cache/dev-python/flask-peewee-0.6.5 index bdcb6cd55596..0e230c3dd116 100644 --- a/metadata/md5-cache/dev-python/flask-peewee-0.6.5 +++ b/metadata/md5-cache/dev-python/flask-peewee-0.6.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/f/flask-peewee/flask-peewee-0.6.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8c0c27fb539141328615e8c3f03a172b diff --git a/metadata/md5-cache/dev-python/flask-principal-0.4.0 b/metadata/md5-cache/dev-python/flask-principal-0.4.0 index 53c61d9c1551..1019f0f56a7c 100644 --- a/metadata/md5-cache/dev-python/flask-principal-0.4.0 +++ b/metadata/md5-cache/dev-python/flask-principal-0.4.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Principal/Flask-Principal-0.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=90f4369162aa1322fecf0f7f21bd7b6c diff --git a/metadata/md5-cache/dev-python/flask-pymongo-0.2.1-r1 b/metadata/md5-cache/dev-python/flask-pymongo-0.2.1-r1 index 6ca328f51384..9480ad1d2b22 100644 --- a/metadata/md5-cache/dev-python/flask-pymongo-0.2.1-r1 +++ b/metadata/md5-cache/dev-python/flask-pymongo-0.2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.8[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/dcrosta/flask-pymongo/archive/0.2.1.tar.gz -> flask-pymongo-0.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6cf5fe2d385e581455cf2b377f559e2f diff --git a/metadata/md5-cache/dev-python/flask-pymongo-0.3.0 b/metadata/md5-cache/dev-python/flask-pymongo-0.3.0 index 6dd1db7fdc5e..f42ad6d46036 100644 --- a/metadata/md5-cache/dev-python/flask-pymongo-0.3.0 +++ b/metadata/md5-cache/dev-python/flask-pymongo-0.3.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.8[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/dcrosta/flask-pymongo/archive/0.3.0.tar.gz -> flask-pymongo-0.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4d596c6b778b39573fc56962885eda75 diff --git a/metadata/md5-cache/dev-python/flask-restless-0.11.0-r1 b/metadata/md5-cache/dev-python/flask-restless-0.11.0-r1 index fabfee570ce6..60c7ad1a6a50 100644 --- a/metadata/md5-cache/dev-python/flask-restless-0.11.0-r1 +++ b/metadata/md5-cache/dev-python/flask-restless-0.11.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.7[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/jfinkels/flask-restless/archive/0.11.0.tar.gz -> flask-restless-0.11.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=08b99904230d6c3e0bf7398dbcfd8213 diff --git a/metadata/md5-cache/dev-python/flask-script-0.5.3 b/metadata/md5-cache/dev-python/flask-script-0.5.3 index 3af98b7475fe..77ef3c4299b8 100644 --- a/metadata/md5-cache/dev-python/flask-script-0.5.3 +++ b/metadata/md5-cache/dev-python/flask-script-0.5.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask virtual/python-argparse[python_targets_python2_6(-)?,py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Script/Flask-Script-0.5.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2f4a6757373c77605ac2f023f8bc1e22 diff --git a/metadata/md5-cache/dev-python/flask-script-0.6.2 b/metadata/md5-cache/dev-python/flask-script-0.6.2 index 95c7353e97ba..a0f2aaeebeec 100644 --- a/metadata/md5-cache/dev-python/flask-script-0.6.2 +++ b/metadata/md5-cache/dev-python/flask-script-0.6.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.10.1-r1[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Script/Flask-Script-0.6.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fba9db4c06c24cd8cbf053b9cf9151b4 diff --git a/metadata/md5-cache/dev-python/flask-security-1.6.9 b/metadata/md5-cache/dev-python/flask-security-1.6.9 index 2a37fa0b11ed..225ef5bc50f2 100644 --- a/metadata/md5-cache/dev-python/flask-security-1.6.9 +++ b/metadata/md5-cache/dev-python/flask-security-1.6.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/F/Flask-Security/Flask-Security-1.6.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1c5ab4abd60e1a4d05b94ff83fd4a6ec diff --git a/metadata/md5-cache/dev-python/flask-sqlalchemy-0.16-r1 b/metadata/md5-cache/dev-python/flask-sqlalchemy-0.16-r1 index 2d718d1f1b40..9a992bba64f8 100644 --- a/metadata/md5-cache/dev-python/flask-sqlalchemy-0.16-r1 +++ b/metadata/md5-cache/dev-python/flask-sqlalchemy-0.16-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-SQLAlchemy/Flask-SQLAlchemy-0.16.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=de499d0c094171e944497378412804a9 diff --git a/metadata/md5-cache/dev-python/flask-sqlalchemy-1.0 b/metadata/md5-cache/dev-python/flask-sqlalchemy-1.0 index fd14a7b0dc9f..99a8167e4500 100644 --- a/metadata/md5-cache/dev-python/flask-sqlalchemy-1.0 +++ b/metadata/md5-cache/dev-python/flask-sqlalchemy-1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-SQLAlchemy/Flask-SQLAlchemy-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9a9fc5fe36bdf52f56372cebd1e8c7d2 diff --git a/metadata/md5-cache/dev-python/flask-testing-0.4 b/metadata/md5-cache/dev-python/flask-testing-0.4 index a7373d46b404..dbe4c03ac207 100644 --- a/metadata/md5-cache/dev-python/flask-testing-0.4 +++ b/metadata/md5-cache/dev-python/flask-testing-0.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Testing/Flask-Testing-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3aef83c7bad38f88fdeda0eb9137da70 diff --git a/metadata/md5-cache/dev-python/flask-themes-0.1.3-r1 b/metadata/md5-cache/dev-python/flask-themes-0.1.3-r1 index 8f6f0552aa2a..2dffe0aadeb0 100644 --- a/metadata/md5-cache/dev-python/flask-themes-0.1.3-r1 +++ b/metadata/md5-cache/dev-python/flask-themes-0.1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.6[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Themes/Flask-Themes-0.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=146b2b5de09e314de50ddea70b608a0d diff --git a/metadata/md5-cache/dev-python/flask-uploads-0.1.3 b/metadata/md5-cache/dev-python/flask-uploads-0.1.3 index 575618b552bd..6a93729550a3 100644 --- a/metadata/md5-cache/dev-python/flask-uploads-0.1.3 +++ b/metadata/md5-cache/dev-python/flask-uploads-0.1.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-Uploads/Flask-Uploads-0.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=856d1d2f1fe9be89ba462382a1fe8d18 diff --git a/metadata/md5-cache/dev-python/flask-whooshalchemy-0.55a b/metadata/md5-cache/dev-python/flask-whooshalchemy-0.55a index 8bae49c0bfd3..a4c71590ea50 100644 --- a/metadata/md5-cache/dev-python/flask-whooshalchemy-0.55a +++ b/metadata/md5-cache/dev-python/flask-whooshalchemy-0.55a @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/F/Flask-WhooshAlchemy/Flask-WhooshAlchemy-0.55a.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d17b922200fd25362ca244f89ded166d diff --git a/metadata/md5-cache/dev-python/flask-wtf-0.8.3 b/metadata/md5-cache/dev-python/flask-wtf-0.8.3 index 5ad0214bfefa..68e1c1f30730 100644 --- a/metadata/md5-cache/dev-python/flask-wtf-0.8.3 +++ b/metadata/md5-cache/dev-python/flask-wtf-0.8.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-WTF/Flask-WTF-0.8.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=76c2a32adfd4521148efa5fed3a5ed9b diff --git a/metadata/md5-cache/dev-python/flask-wtf-0.8.4 b/metadata/md5-cache/dev-python/flask-wtf-0.8.4 index abb499f06d64..29843d109be2 100644 --- a/metadata/md5-cache/dev-python/flask-wtf-0.8.4 +++ b/metadata/md5-cache/dev-python/flask-wtf-0.8.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-WTF/Flask-WTF-0.8.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cd1348aea29d5c4d7c0309f5c5417d5b diff --git a/metadata/md5-cache/dev-python/flask-wtf-0.9.0 b/metadata/md5-cache/dev-python/flask-wtf-0.9.0 index 652c60824695..ec263bf8db24 100644 --- a/metadata/md5-cache/dev-python/flask-wtf-0.9.0 +++ b/metadata/md5-cache/dev-python/flask-wtf-0.9.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-WTF/Flask-WTF-0.9.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7cc56743e866fb5b624bc825304c08bc diff --git a/metadata/md5-cache/dev-python/flask-wtf-0.9.1 b/metadata/md5-cache/dev-python/flask-wtf-0.9.1 index 75a85c97f77f..9636ce14833c 100644 --- a/metadata/md5-cache/dev-python/flask-wtf-0.9.1 +++ b/metadata/md5-cache/dev-python/flask-wtf-0.9.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-WTF/Flask-WTF-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=09bc732c394f59f29926eb73064f2c70 diff --git a/metadata/md5-cache/dev-python/flask-wtf-0.9.2 b/metadata/md5-cache/dev-python/flask-wtf-0.9.2 index 95e15a6f60e3..05c39726daa8 100644 --- a/metadata/md5-cache/dev-python/flask-wtf-0.9.2 +++ b/metadata/md5-cache/dev-python/flask-wtf-0.9.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-WTF/Flask-WTF-0.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f64a92ef5b33b3a747d976c77bcb8cc7 diff --git a/metadata/md5-cache/dev-python/flask-xml-rpc-0.1.2-r1 b/metadata/md5-cache/dev-python/flask-xml-rpc-0.1.2-r1 index 73086b7212ea..dbd1ea48e764 100644 --- a/metadata/md5-cache/dev-python/flask-xml-rpc-0.1.2-r1 +++ b/metadata/md5-cache/dev-python/flask-xml-rpc-0.1.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Flask-XML-RPC/Flask-XML-RPC-0.1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=744bb103f833d4a9016eb2075f9022f0 diff --git a/metadata/md5-cache/dev-python/flup-1.0.2-r1 b/metadata/md5-cache/dev-python/flup-1.0.2-r1 index 31eb6b9a3030..e7b6ae49c8b5 100644 --- a/metadata/md5-cache/dev-python/flup-1.0.2-r1 +++ b/metadata/md5-cache/dev-python/flup-1.0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://www.saddi.com/software/flup/dist/flup-1.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=23dba8172ccf7c126326747095661d19 diff --git a/metadata/md5-cache/dev-python/fonttools-2.3-r1 b/metadata/md5-cache/dev-python/fonttools-2.3-r1 index 5ce24b097a2e..bb691d3bc99d 100644 --- a/metadata/md5-cache/dev-python/fonttools-2.3-r1 +++ b/metadata/md5-cache/dev-python/fonttools-2.3-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/numpy-1.0.2[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/fonttools/fonttools-2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0ba4e42372e33a892556bed422ffce85 diff --git a/metadata/md5-cache/dev-python/foolscap-0.6.4-r1 b/metadata/md5-cache/dev-python/foolscap-0.6.4-r1 index ce2d75a88c11..e33f0d6462d5 100644 --- a/metadata/md5-cache/dev-python/foolscap-0.6.4-r1 +++ b/metadata/md5-cache/dev-python/foolscap-0.6.4-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/twisted-core-2.4.0[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://foolscap.lothar.com/releases/foolscap-0.6.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=208b8d7ffcd8d13f95fbb5f1734d289c diff --git a/metadata/md5-cache/dev-python/formencode-1.2.6-r1 b/metadata/md5-cache/dev-python/formencode-1.2.6-r1 index 04de690358fd..309070599000 100644 --- a/metadata/md5-cache/dev-python/formencode-1.2.6-r1 +++ b/metadata/md5-cache/dev-python/formencode-1.2.6-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/F/FormEncode/FormEncode-1.2.6.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dcee22ff61a64e8e777683cdc39308b0 diff --git a/metadata/md5-cache/dev-python/fpconst-0.7.3-r1 b/metadata/md5-cache/dev-python/fpconst-0.7.3-r1 index 4e64e2b54bbe..98d41725b7a1 100644 --- a/metadata/md5-cache/dev-python/fpconst-0.7.3-r1 +++ b/metadata/md5-cache/dev-python/fpconst-0.7.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/rsoap/fpconst-0.7.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1e11f4552f3087d97332eca5e53b4979 diff --git a/metadata/md5-cache/dev-python/frozen-flask-0.9-r1 b/metadata/md5-cache/dev-python/frozen-flask-0.9-r1 index 592965115d86..77d761b23d49 100644 --- a/metadata/md5-cache/dev-python/frozen-flask-0.9-r1 +++ b/metadata/md5-cache/dev-python/frozen-flask-0.9-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/flask-0.7[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/F/Frozen-Flask/Frozen-Flask-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8a45ee00a9d0fe1c78230b9e3c510f79 diff --git a/metadata/md5-cache/dev-python/fudge-0.9.6-r1 b/metadata/md5-cache/dev-python/fudge-0.9.6-r1 index 7873ed0a5df4..0fa2c8b02435 100644 --- a/metadata/md5-cache/dev-python/fudge-0.9.6-r1 +++ b/metadata/md5-cache/dev-python/fudge-0.9.6-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/f/fudge/fudge-0.9.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6941801d2396166b6f7f3d07b3f2f26c diff --git a/metadata/md5-cache/dev-python/fudge-1.0.3-r2 b/metadata/md5-cache/dev-python/fudge-1.0.3-r2 index 04e11be9e833..1ef33210be1c 100644 --- a/metadata/md5-cache/dev-python/fudge-1.0.3-r2 +++ b/metadata/md5-cache/dev-python/fudge-1.0.3-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/f/fudge/fudge-1.0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=32e90e7d23ab1762da7acc9c317a84e8 diff --git a/metadata/md5-cache/dev-python/funcparserlib-0.3.6 b/metadata/md5-cache/dev-python/funcparserlib-0.3.6 index 2d61f5a568cd..0d0af7ba980f 100644 --- a/metadata/md5-cache/dev-python/funcparserlib-0.3.6 +++ b/metadata/md5-cache/dev-python/funcparserlib-0.3.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/f/funcparserlib/funcparserlib-0.3.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c64bd62fcc05f94b3c1a54847391a09d diff --git a/metadata/md5-cache/dev-python/futures-2.1.4 b/metadata/md5-cache/dev-python/futures-2.1.4 index 4f77eaaa902d..46632bf9de6b 100644 --- a/metadata/md5-cache/dev-python/futures-2.1.4 +++ b/metadata/md5-cache/dev-python/futures-2.1.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~idella4/tarballs/futures-2.1.4-20130706.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ca40af6b46329093a0d7b01b40c7da30 diff --git a/metadata/md5-cache/dev-python/gdata-2.0.17-r1 b/metadata/md5-cache/dev-python/gdata-2.0.17-r1 index e27f41db6140..12614b752101 100644 --- a/metadata/md5-cache/dev-python/gdata-2.0.17-r1 +++ b/metadata/md5-cache/dev-python/gdata-2.0.17-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[ssl(+),xml(+) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://gdata-python-client.googlecode.com/files/gdata-2.0.17.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f9a33f3f83e523219715cb7c7a47de3e diff --git a/metadata/md5-cache/dev-python/gdata-2.0.18 b/metadata/md5-cache/dev-python/gdata-2.0.18 index 5992832056be..3d5ce6949897 100644 --- a/metadata/md5-cache/dev-python/gdata-2.0.18 +++ b/metadata/md5-cache/dev-python/gdata-2.0.18 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[ssl(+),xml(+) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://gdata-python-client.googlecode.com/files/gdata-2.0.18.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=647b7f4e7709ca326605ae9fef1b620b diff --git a/metadata/md5-cache/dev-python/gdmodule-0.56-r2 b/metadata/md5-cache/dev-python/gdmodule-0.56-r2 index 6c7ef56beaf6..559c3d38471e 100644 --- a/metadata/md5-cache/dev-python/gdmodule-0.56-r2 +++ b/metadata/md5-cache/dev-python/gdmodule-0.56-r2 @@ -10,5 +10,5 @@ RDEPEND=media-libs/gd[jpeg?,png?,truetype?,xpm?] media-libs/giflib jpeg? ( virtu REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://newcenturycomputers.net/projects/download.cgi/gdmodule-0.56.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d65fa063874f586620c225fe7d77c791 diff --git a/metadata/md5-cache/dev-python/genshi-0.7 b/metadata/md5-cache/dev-python/genshi-0.7 index ea8a7246a13b..609a3269815b 100644 --- a/metadata/md5-cache/dev-python/genshi-0.7 +++ b/metadata/md5-cache/dev-python/genshi-0.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools python_targets_python2_6? ( >=dev-lang/python-2.6. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://ftp.edgewall.com/pub/genshi/Genshi-0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=05bc0b69ba38c40a779d553291b0be8d diff --git a/metadata/md5-cache/dev-python/geoip-python-1.2.8-r1 b/metadata/md5-cache/dev-python/geoip-python-1.2.8-r1 index 5575e0def837..a4add061a5f8 100644 --- a/metadata/md5-cache/dev-python/geoip-python-1.2.8-r1 +++ b/metadata/md5-cache/dev-python/geoip-python-1.2.8-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/geoip-1.4.8 python_targets_python2_6? ( >=dev-lang/python-2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.maxmind.com/download/geoip/api/python/GeoIP-Python-1.2.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e75baeaaacb7235ada8977b06e1ee916 diff --git a/metadata/md5-cache/dev-python/geopy-0.95.1 b/metadata/md5-cache/dev-python/geopy-0.95.1 index 3df9fce4c89b..8299816c3df7 100644 --- a/metadata/md5-cache/dev-python/geopy-0.95.1 +++ b/metadata/md5-cache/dev-python/geopy-0.95.1 @@ -10,5 +10,5 @@ RDEPEND=<=dev-python/beautifulsoup-4.0[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/g/geopy/geopy-0.95.1.tar.gz http://dev.gentoo.org/~idella4/fells_loop.gpx -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d783c2ee94ff167a148740dbffa3d962 diff --git a/metadata/md5-cache/dev-python/gevent-0.13.8 b/metadata/md5-cache/dev-python/gevent-0.13.8 index ef34e4095985..0e145437d0fc 100644 --- a/metadata/md5-cache/dev-python/gevent-0.13.8 +++ b/metadata/md5-cache/dev-python/gevent-0.13.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/g/gevent/gevent-0.13.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=63cd4b2646444a6756316600071986ff diff --git a/metadata/md5-cache/dev-python/gevent-1.0_beta2-r1 b/metadata/md5-cache/dev-python/gevent-1.0_beta2-r1 index 7430b32a0760..1e1a97d2fead 100644 --- a/metadata/md5-cache/dev-python/gevent-1.0_beta2-r1 +++ b/metadata/md5-cache/dev-python/gevent-1.0_beta2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://gevent.googlecode.com/files/gevent-1.0b2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3929fec0d65de202ae8bb560ca0468d4 diff --git a/metadata/md5-cache/dev-python/gevent-1.0_rc2 b/metadata/md5-cache/dev-python/gevent-1.0_rc2 index c6d9f510a11e..1133a257ea85 100644 --- a/metadata/md5-cache/dev-python/gevent-1.0_rc2 +++ b/metadata/md5-cache/dev-python/gevent-1.0_rc2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://github/SiteSupport/gevent/gevent-1.0rc2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0476fe90c7403d8202815cc3aadb759d diff --git a/metadata/md5-cache/dev-python/gevent-1.0_rc3 b/metadata/md5-cache/dev-python/gevent-1.0_rc3 index 74dfb82732cb..fe861742371a 100644 --- a/metadata/md5-cache/dev-python/gevent-1.0_rc3 +++ b/metadata/md5-cache/dev-python/gevent-1.0_rc3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/surfly/gevent/releases/download/1.0rc3/gevent-1.0rc3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8eabd007b1f509aca82237db01616aa2 diff --git a/metadata/md5-cache/dev-python/git-python-0.3.2_rc1-r1 b/metadata/md5-cache/dev-python/git-python-0.3.2_rc1-r1 index 828bfa9d8028..8a377286ed3f 100644 --- a/metadata/md5-cache/dev-python/git-python-0.3.2_rc1-r1 +++ b/metadata/md5-cache/dev-python/git-python-0.3.2_rc1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-vcs/git >=dev-python/gitdb-0.5.4[python_targets_python2_6(-)?,python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/G/GitPython/GitPython-0.3.2.RC1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c1baa76c46fceca892d51571d7b11a96 diff --git a/metadata/md5-cache/dev-python/gitdb-0.5.4-r1 b/metadata/md5-cache/dev-python/gitdb-0.5.4-r1 index 1cd97064dc0a..687b0ce26aa7 100644 --- a/metadata/md5-cache/dev-python/gitdb-0.5.4-r1 +++ b/metadata/md5-cache/dev-python/gitdb-0.5.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-vcs/git >=dev-python/async-0.6[python_targets_python2_6(-)?,python_t REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/g/gitdb/gitdb-0.5.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=342147c2b375462e6bfc4b62ceceea37 diff --git a/metadata/md5-cache/dev-python/gmpy-2.0.0 b/metadata/md5-cache/dev-python/gmpy-2.0.0 index beecef9204de..365de0e7d841 100644 --- a/metadata/md5-cache/dev-python/gmpy-2.0.0 +++ b/metadata/md5-cache/dev-python/gmpy-2.0.0 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/gmp dev-libs/mpc dev-libs/mpfr python_targets_python2_6? ( >=de REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=2 SRC_URI=http://gmpy.googlecode.com/files/gmpy2-2.0.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=db8ddb02bbc6f4898472bb581778f1c8 diff --git a/metadata/md5-cache/dev-python/gntp-1.0.1 b/metadata/md5-cache/dev-python/gntp-1.0.1 index 7dae8c9bd495..b3f487aeeedd 100644 --- a/metadata/md5-cache/dev-python/gntp-1.0.1 +++ b/metadata/md5-cache/dev-python/gntp-1.0.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/g/gntp/gntp-1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9faadfcd70780a5355dbbbe12365d364 diff --git a/metadata/md5-cache/dev-python/google-api-python-client-1.1 b/metadata/md5-cache/dev-python/google-api-python-client-1.1 index dbf61c816d77..f04762fb7bd8 100644 --- a/metadata/md5-cache/dev-python/google-api-python-client-1.1 +++ b/metadata/md5-cache/dev-python/google-api-python-client-1.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/python-gflags >=dev-python/httplib2-0.8 dev-python/simplejson REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://google-api-python-client.googlecode.com/files/google-api-python-client-1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=91b4b6e5dbfef9f7048fa161df74157e diff --git a/metadata/md5-cache/dev-python/graphcanvas-4.0.2-r1 b/metadata/md5-cache/dev-python/graphcanvas-4.0.2-r1 index 7da48105ca41..d8e0c103b600 100644 --- a/metadata/md5-cache/dev-python/graphcanvas-4.0.2-r1 +++ b/metadata/md5-cache/dev-python/graphcanvas-4.0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/networkx >=dev-python/enable-4[python_targets_python2_7(-)?,- REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/graphcanvas-4.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=64f4b32e60d6f0dd84df6f95b6516f30 diff --git a/metadata/md5-cache/dev-python/graphy-1.0-r1 b/metadata/md5-cache/dev-python/graphy-1.0-r1 index 29d62eacfedf..2456cef80f61 100644 --- a/metadata/md5-cache/dev-python/graphy-1.0-r1 +++ b/metadata/md5-cache/dev-python/graphy-1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://graphy.googlecode.com/files/graphy_1.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cd41edc4575bc5cb158d0e86710ce420 diff --git a/metadata/md5-cache/dev-python/greenlet-0.4.0-r1 b/metadata/md5-cache/dev-python/greenlet-0.4.0-r1 index 3ff8e38e0405..023158385de6 100644 --- a/metadata/md5-cache/dev-python/greenlet-0.4.0-r1 +++ b/metadata/md5-cache/dev-python/greenlet-0.4.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/g/greenlet/greenlet-0.4.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b1d96fe0de1b56e33f4c233cd15980c7 diff --git a/metadata/md5-cache/dev-python/greenlet-0.4.0-r2 b/metadata/md5-cache/dev-python/greenlet-0.4.0-r2 index d4840fa511a3..867988f64f1a 100644 --- a/metadata/md5-cache/dev-python/greenlet-0.4.0-r2 +++ b/metadata/md5-cache/dev-python/greenlet-0.4.0-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/g/greenlet/greenlet-0.4.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7acfcb6463d2a0db4287388871ba6f53 diff --git a/metadata/md5-cache/dev-python/greenlet-0.4.1 b/metadata/md5-cache/dev-python/greenlet-0.4.1 index c964286d2cf8..ea5b72e47c2d 100644 --- a/metadata/md5-cache/dev-python/greenlet-0.4.1 +++ b/metadata/md5-cache/dev-python/greenlet-0.4.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/g/greenlet/greenlet-0.4.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e804a09eda1d728be00550a1daeecb3c diff --git a/metadata/md5-cache/dev-python/guessit-0.5.4 b/metadata/md5-cache/dev-python/guessit-0.5.4 index 75d08d985075..2be64dc571ba 100644 --- a/metadata/md5-cache/dev-python/guessit-0.5.4 +++ b/metadata/md5-cache/dev-python/guessit-0.5.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/wackou/guessit/archive/0.5.4.tar.gz -> guessit-0.5.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=adbbe365e117227278fd6d187cb468c3 diff --git a/metadata/md5-cache/dev-python/guessit-9999 b/metadata/md5-cache/dev-python/guessit-9999 index 81713d898aa4..bbc928ee0dc6 100644 --- a/metadata/md5-cache/dev-python/guessit-9999 +++ b/metadata/md5-cache/dev-python/guessit-9999 @@ -8,5 +8,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ac7cda9fe7851948957fca91470d8601 diff --git a/metadata/md5-cache/dev-python/h5py-2.1.3 b/metadata/md5-cache/dev-python/h5py-2.1.3 index 3f4b0e9778a8..b45a01215bb9 100644 --- a/metadata/md5-cache/dev-python/h5py-2.1.3 +++ b/metadata/md5-cache/dev-python/h5py-2.1.3 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/hdf5:= dev-python/numpy[python_targets_python2_6(-)?,python_tar REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://h5py.googlecode.com/files/h5py-2.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0b3a865a28411e9e18bf7735de458dc7 diff --git a/metadata/md5-cache/dev-python/h5py-2.2.0 b/metadata/md5-cache/dev-python/h5py-2.2.0 index c992bb7adc88..6caeb41e5b33 100644 --- a/metadata/md5-cache/dev-python/h5py-2.2.0 +++ b/metadata/md5-cache/dev-python/h5py-2.2.0 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/hdf5:= dev-python/numpy[python_targets_python2_6(-)?,python_tar REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://h5py.googlecode.com/files/h5py-2.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=82d2d69f8665e72021f240fda41acb33 diff --git a/metadata/md5-cache/dev-python/hachoir-core-1.3.3-r1 b/metadata/md5-cache/dev-python/hachoir-core-1.3.3-r1 index 175ff50bc771..5d41bd2c22cf 100644 --- a/metadata/md5-cache/dev-python/hachoir-core-1.3.3-r1 +++ b/metadata/md5-cache/dev-python/hachoir-core-1.3.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/hachoir-core/hachoir-core-1.3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6e124eb6144101a1a9860f267f85a384 diff --git a/metadata/md5-cache/dev-python/hacking-0.5.6 b/metadata/md5-cache/dev-python/hacking-0.5.6 index aab772940662..179b6e48b15a 100644 --- a/metadata/md5-cache/dev-python/hacking-0.5.6 +++ b/metadata/md5-cache/dev-python/hacking-0.5.6 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pbr-0.5.21[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/h/hacking/hacking-0.5.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1eb6461a82bfafbca661cb17597e0120 diff --git a/metadata/md5-cache/dev-python/happydoc-3.1-r2 b/metadata/md5-cache/dev-python/happydoc-3.1-r2 index c1cebb96068d..5fdc42129c14 100644 --- a/metadata/md5-cache/dev-python/happydoc-3.1-r2 +++ b/metadata/md5-cache/dev-python/happydoc-3.1-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/happydoc/HappyDoc_r3_1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0ef47be0958abcc6a836f3020561b50e diff --git a/metadata/md5-cache/dev-python/hcluster-0.2.0-r1 b/metadata/md5-cache/dev-python/hcluster-0.2.0-r1 index 99f7c3dd3a6f..0f75f15bca0d 100644 --- a/metadata/md5-cache/dev-python/hcluster-0.2.0-r1 +++ b/metadata/md5-cache/dev-python/hcluster-0.2.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://scipy-cluster.googlecode.com/files/hcluster-0.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e1de5baac903d8d4ba17bca43b954557 diff --git a/metadata/md5-cache/dev-python/hcs-utils-1.3 b/metadata/md5-cache/dev-python/hcs-utils-1.3 index cebd5b6d9c7b..9d24813e6ab6 100644 --- a/metadata/md5-cache/dev-python/hcs-utils-1.3 +++ b/metadata/md5-cache/dev-python/hcs-utils-1.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/h/hcs_utils/hcs_utils-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=61f2eddc174eb1db96fd1f25146273d4 diff --git a/metadata/md5-cache/dev-python/hcs-utils-1.4_rc5 b/metadata/md5-cache/dev-python/hcs-utils-1.4_rc5 index 846279cca6c7..a6630c174bfd 100644 --- a/metadata/md5-cache/dev-python/hcs-utils-1.4_rc5 +++ b/metadata/md5-cache/dev-python/hcs-utils-1.4_rc5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/h/hcs_utils/hcs_utils-1.4rc5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5bc70e1660ada73f039610bd5d1949b6 diff --git a/metadata/md5-cache/dev-python/hgdistver-0.16-r1 b/metadata/md5-cache/dev-python/hgdistver-0.16-r1 index 9832fa3dbe54..39bc32042af8 100644 --- a/metadata/md5-cache/dev-python/hgdistver-0.16-r1 +++ b/metadata/md5-cache/dev-python/hgdistver-0.16-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/hgdistver/hgdistver-0.16.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3e6e0d1f5ddcab0eee12791b36a7521e diff --git a/metadata/md5-cache/dev-python/hglib-1.0 b/metadata/md5-cache/dev-python/hglib-1.0 index 6b10c3e87b68..993f77b8a16d 100644 --- a/metadata/md5-cache/dev-python/hglib-1.0 +++ b/metadata/md5-cache/dev-python/hglib-1.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/mercurial-2.4.2 python_targets_python2_7? ( >=dev-lang/python- REQUIRED_USE=|| ( python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/python-hglib/python-hglib-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0b734ef022935fb21b278652ba1506bf diff --git a/metadata/md5-cache/dev-python/hgtools-2.0.2 b/metadata/md5-cache/dev-python/hgtools-2.0.2 index 8bcce824ed75..823151324f02 100644 --- a/metadata/md5-cache/dev-python/hgtools-2.0.2 +++ b/metadata/md5-cache/dev-python/hgtools-2.0.2 @@ -10,5 +10,5 @@ RDEPEND=dev-vcs/mercurial python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/hgtools/hgtools-2.0.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8a97f6bb9ee7b603308a5088d52d10db diff --git a/metadata/md5-cache/dev-python/hgtools-2.0.2-r1 b/metadata/md5-cache/dev-python/hgtools-2.0.2-r1 index f270a89aa7da..078c0c79e1f3 100644 --- a/metadata/md5-cache/dev-python/hgtools-2.0.2-r1 +++ b/metadata/md5-cache/dev-python/hgtools-2.0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-vcs/mercurial python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/hgtools/hgtools-2.0.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=92bf274b53dca133900f6a1b2bff1e44 diff --git a/metadata/md5-cache/dev-python/hgtools-3.0.2 b/metadata/md5-cache/dev-python/hgtools-3.0.2 index d6b95e34faf4..f3183b94d437 100644 --- a/metadata/md5-cache/dev-python/hgtools-3.0.2 +++ b/metadata/md5-cache/dev-python/hgtools-3.0.2 @@ -10,5 +10,5 @@ RDEPEND=dev-vcs/mercurial python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/hgtools/hgtools-3.0.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=52e14586ae29c092dac6adf0f6d7e994 diff --git a/metadata/md5-cache/dev-python/hgtools-4.0 b/metadata/md5-cache/dev-python/hgtools-4.0 index bed8a91cbaa3..b3923ab47b7e 100644 --- a/metadata/md5-cache/dev-python/hgtools-4.0 +++ b/metadata/md5-cache/dev-python/hgtools-4.0 @@ -10,5 +10,5 @@ RDEPEND=dev-vcs/mercurial python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/hgtools/hgtools-4.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=df246398593db854f3217d44bb6c01e6 diff --git a/metadata/md5-cache/dev-python/hiredis-0.1.1-r1 b/metadata/md5-cache/dev-python/hiredis-0.1.1-r1 index 2975e3b3a57c..1ef05da64b88 100644 --- a/metadata/md5-cache/dev-python/hiredis-0.1.1-r1 +++ b/metadata/md5-cache/dev-python/hiredis-0.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/hiredis python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3: REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/hiredis/hiredis-0.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c159f8481a501c208a572a0740081a70 diff --git a/metadata/md5-cache/dev-python/hiredis-0.1.1-r2 b/metadata/md5-cache/dev-python/hiredis-0.1.1-r2 index 5bd1d0f4d4b7..a8c1549f528e 100644 --- a/metadata/md5-cache/dev-python/hiredis-0.1.1-r2 +++ b/metadata/md5-cache/dev-python/hiredis-0.1.1-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/hiredis python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3: REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/hiredis/hiredis-0.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc0078d61ce1dd02a1738d162e9803fb diff --git a/metadata/md5-cache/dev-python/html2text-3.200.3-r1 b/metadata/md5-cache/dev-python/html2text-3.200.3-r1 index 98350413775a..c4a5026074db 100644 --- a/metadata/md5-cache/dev-python/html2text-3.200.3-r1 +++ b/metadata/md5-cache/dev-python/html2text-3.200.3-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/chardet[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/html2text/html2text-3.200.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ef1a94a6933ecc6208514be83845ec7 diff --git a/metadata/md5-cache/dev-python/html5lib-0.95-r1 b/metadata/md5-cache/dev-python/html5lib-0.95-r1 index 96ea5626bc20..1f93706fed24 100644 --- a/metadata/md5-cache/dev-python/html5lib-0.95-r1 +++ b/metadata/md5-cache/dev-python/html5lib-0.95-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml(+)] ) pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://html5lib.googlecode.com/files/html5lib-0.95.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=33bf65c121729885f3f84dfd1a8c769e diff --git a/metadata/md5-cache/dev-python/html5lib-1.0_beta1 b/metadata/md5-cache/dev-python/html5lib-1.0_beta1 index 01f0fd3d0cde..dfdc6c8399e5 100644 --- a/metadata/md5-cache/dev-python/html5lib-1.0_beta1 +++ b/metadata/md5-cache/dev-python/html5lib-1.0_beta1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/html5lib/html5lib-1.0b1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=65c4bdb25ba4f4b4c0415da8051d980d diff --git a/metadata/md5-cache/dev-python/html5lib-1.0_beta3 b/metadata/md5-cache/dev-python/html5lib-1.0_beta3 index 98f7c7b0be1c..8fd0333ccacb 100644 --- a/metadata/md5-cache/dev-python/html5lib-1.0_beta3 +++ b/metadata/md5-cache/dev-python/html5lib-1.0_beta3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/html5lib/html5lib-1.0b3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=02d572cbd082863c953ea336c2d85700 diff --git a/metadata/md5-cache/dev-python/http-parser-0.7.12 b/metadata/md5-cache/dev-python/http-parser-0.7.12 index e075101a38f4..a189c4cb4936 100644 --- a/metadata/md5-cache/dev-python/http-parser-0.7.12 +++ b/metadata/md5-cache/dev-python/http-parser-0.7.12 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/http-parser/http-parser-0.7.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2955e6160a6eaa85332b39e455a9a00a diff --git a/metadata/md5-cache/dev-python/http-parser-0.8.1-r1 b/metadata/md5-cache/dev-python/http-parser-0.8.1-r1 index 3e5d87a10912..0532f976e7d4 100644 --- a/metadata/md5-cache/dev-python/http-parser-0.8.1-r1 +++ b/metadata/md5-cache/dev-python/http-parser-0.8.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/http-parser/http-parser-0.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6e494801e05cf09fe4055b2d3da0924e diff --git a/metadata/md5-cache/dev-python/http-parser-0.8.3 b/metadata/md5-cache/dev-python/http-parser-0.8.3 index d845e0811ce7..51c10d5c4edc 100644 --- a/metadata/md5-cache/dev-python/http-parser-0.8.3 +++ b/metadata/md5-cache/dev-python/http-parser-0.8.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/h/http-parser/http-parser-0.8.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3cee036656fc8e5ef36c17f6d59cad27 diff --git a/metadata/md5-cache/dev-python/httplib2-0.7.7 b/metadata/md5-cache/dev-python/httplib2-0.7.7 index a9f2fe78dbe3..35f4d2735b60 100644 --- a/metadata/md5-cache/dev-python/httplib2-0.7.7 +++ b/metadata/md5-cache/dev-python/httplib2-0.7.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://httplib2.googlecode.com/files/httplib2-0.7.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2d57b9f9d09f93273a3a4b9d6d7efa6a diff --git a/metadata/md5-cache/dev-python/httplib2-0.8 b/metadata/md5-cache/dev-python/httplib2-0.8 index 21cc76bf0fca..8fabfa7936b3 100644 --- a/metadata/md5-cache/dev-python/httplib2-0.8 +++ b/metadata/md5-cache/dev-python/httplib2-0.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://httplib2.googlecode.com/files/httplib2-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=25171af8d89b21a7333c9d37fea6699c diff --git a/metadata/md5-cache/dev-python/icalendar-3.2-r1 b/metadata/md5-cache/dev-python/icalendar-3.2-r1 index f23331e645a7..dcef35578243 100644 --- a/metadata/md5-cache/dev-python/icalendar-3.2-r1 +++ b/metadata/md5-cache/dev-python/icalendar-3.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/i/icalendar/icalendar-3.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1b9c22aa4c0ca3d7ff67458fa7943672 diff --git a/metadata/md5-cache/dev-python/icalendar-3.3 b/metadata/md5-cache/dev-python/icalendar-3.3 index 93392fcc9975..20d716c6c5eb 100644 --- a/metadata/md5-cache/dev-python/icalendar-3.3 +++ b/metadata/md5-cache/dev-python/icalendar-3.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/i/icalendar/icalendar-3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=75f53f76df22cb490b8f721f89251241 diff --git a/metadata/md5-cache/dev-python/icalendar-3.4 b/metadata/md5-cache/dev-python/icalendar-3.4 index d07d5d2716a9..cbd72af11050 100644 --- a/metadata/md5-cache/dev-python/icalendar-3.4 +++ b/metadata/md5-cache/dev-python/icalendar-3.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/python-dateutil-1.5[python_targets_python2_6(-)?,python_tar REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/i/icalendar/icalendar-3.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=49329ff721233a3c385c8d5dda2fe644 diff --git a/metadata/md5-cache/dev-python/icalendar-3.5 b/metadata/md5-cache/dev-python/icalendar-3.5 index 43167e45b106..6c9de06d1557 100644 --- a/metadata/md5-cache/dev-python/icalendar-3.5 +++ b/metadata/md5-cache/dev-python/icalendar-3.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/python-dateutil-1.5[python_targets_python2_6(-)?,python_tar REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/i/icalendar/icalendar-3.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=33599082ec49e11d14d54040f8a0111f diff --git a/metadata/md5-cache/dev-python/ijson-1.0-r1 b/metadata/md5-cache/dev-python/ijson-1.0-r1 index 44bc17cc46d5..6f877a4e94fa 100644 --- a/metadata/md5-cache/dev-python/ijson-1.0-r1 +++ b/metadata/md5-cache/dev-python/ijson-1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/yajl python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/i/ijson/ijson-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=85a0048743a22e12e1eac1f55be63610 diff --git a/metadata/md5-cache/dev-python/imaging-1.1.7-r2 b/metadata/md5-cache/dev-python/imaging-1.1.7-r2 index 0b34ce118a0c..ee76c9a6c120 100644 --- a/metadata/md5-cache/dev-python/imaging-1.1.7-r2 +++ b/metadata/md5-cache/dev-python/imaging-1.1.7-r2 @@ -10,5 +10,5 @@ RDEPEND=virtual/jpeg media-libs/freetype:2 lcms? ( media-libs/lcms:0 ) scanner? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.effbot.org/downloads/Imaging-1.1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=21c8404e1f09afe3654535833f9b407d diff --git a/metadata/md5-cache/dev-python/imaging-1.1.7-r4 b/metadata/md5-cache/dev-python/imaging-1.1.7-r4 index d0d8a668b7ff..f7b4fc8ee0dc 100644 --- a/metadata/md5-cache/dev-python/imaging-1.1.7-r4 +++ b/metadata/md5-cache/dev-python/imaging-1.1.7-r4 @@ -10,5 +10,5 @@ RDEPEND=truetype? ( media-libs/freetype:2 ) jpeg? ( virtual/jpeg ) lcms? ( media REQUIRED_USE=test? ( jpeg tiff zlib ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.effbot.org/downloads/Imaging-1.1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6ed49c3dfb614badfa39af7a6cab1302 diff --git a/metadata/md5-cache/dev-python/imapclient-0.10.2 b/metadata/md5-cache/dev-python/imapclient-0.10.2 index 418c7111baf9..823d9d1feeb3 100644 --- a/metadata/md5-cache/dev-python/imapclient-0.10.2 +++ b/metadata/md5-cache/dev-python/imapclient-0.10.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/I/IMAPClient/IMAPClient-0.10.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9d3f86fae55c6fcb35f7363f54d3af61 diff --git a/metadata/md5-cache/dev-python/imdbpy-4.9-r1 b/metadata/md5-cache/dev-python/imdbpy-4.9-r1 index 9ce10941ce54..c69bab23ed14 100644 --- a/metadata/md5-cache/dev-python/imdbpy-4.9-r1 +++ b/metadata/md5-cache/dev-python/imdbpy-4.9-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/I/IMDbPY/IMDbPY-4.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a81f69ecfb03a71c8d013911ddd14fcd diff --git a/metadata/md5-cache/dev-python/importing-1.10 b/metadata/md5-cache/dev-python/importing-1.10 index 211c286bb40c..7542b8e81aab 100644 --- a/metadata/md5-cache/dev-python/importing-1.10 +++ b/metadata/md5-cache/dev-python/importing-1.10 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/I/Importing/Importing-1.10.zip -> importing-1.10.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=236fae914f6c0bb7e958eb2e2fed7fb3 diff --git a/metadata/md5-cache/dev-python/iniparse-0.4-r1 b/metadata/md5-cache/dev-python/iniparse-0.4-r1 index b96113367f82..9e0e677476d5 100644 --- a/metadata/md5-cache/dev-python/iniparse-0.4-r1 +++ b/metadata/md5-cache/dev-python/iniparse-0.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://iniparse.googlecode.com/files/iniparse-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=05763b7e42177f8ae6fc5e7f1bdc4247 diff --git a/metadata/md5-cache/dev-python/inotifyx-0.2.0-r1 b/metadata/md5-cache/dev-python/inotifyx-0.2.0-r1 index 50516bba04de..563dae2dfbaa 100644 --- a/metadata/md5-cache/dev-python/inotifyx-0.2.0-r1 +++ b/metadata/md5-cache/dev-python/inotifyx-0.2.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://launchpad.net/inotifyx/dev/v0.2.0/+download/inotifyx-0.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=950ed60b458d1968613f9a621b405192 diff --git a/metadata/md5-cache/dev-python/ipaddr-2.1.10-r1 b/metadata/md5-cache/dev-python/ipaddr-2.1.10-r1 index 522449584eb6..2cabd1ef470f 100644 --- a/metadata/md5-cache/dev-python/ipaddr-2.1.10-r1 +++ b/metadata/md5-cache/dev-python/ipaddr-2.1.10-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://ipaddr-py.googlecode.com/files/ipaddr-2.1.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2e10d0b93186365c5e32d711e4d88766 diff --git a/metadata/md5-cache/dev-python/ipcalc-1.0.0 b/metadata/md5-cache/dev-python/ipcalc-1.0.0 index b0cafd792428..ad1f5a395e16 100644 --- a/metadata/md5-cache/dev-python/ipcalc-1.0.0 +++ b/metadata/md5-cache/dev-python/ipcalc-1.0.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/i/ipcalc/ipcalc-1.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e34b6b693e0cd1655becad19a1eafe38 diff --git a/metadata/md5-cache/dev-python/ipdb-0.7-r1 b/metadata/md5-cache/dev-python/ipdb-0.7-r1 index 5f26b8ced426..c461e1bce9db 100644 --- a/metadata/md5-cache/dev-python/ipdb-0.7-r1 +++ b/metadata/md5-cache/dev-python/ipdb-0.7-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/ipython[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/i/ipdb/ipdb-0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d6b8e4a212a1e541e79f7360932c70ba diff --git a/metadata/md5-cache/dev-python/ipdb-0.8 b/metadata/md5-cache/dev-python/ipdb-0.8 index b4a1ae8fcc0e..0a72e9130667 100644 --- a/metadata/md5-cache/dev-python/ipdb-0.8 +++ b/metadata/md5-cache/dev-python/ipdb-0.8 @@ -10,5 +10,5 @@ RDEPEND=dev-python/ipython[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/i/ipdb/ipdb-0.8.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b722f93488e546a099018a7dae2e8883 diff --git a/metadata/md5-cache/dev-python/ipy-0.76-r1 b/metadata/md5-cache/dev-python/ipy-0.76-r1 index 1deb7d044cc7..c5f624f50469 100644 --- a/metadata/md5-cache/dev-python/ipy-0.76-r1 +++ b/metadata/md5-cache/dev-python/ipy-0.76-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/I/IPy/IPy-0.76.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6237393e508c165a524584e9ce90474d diff --git a/metadata/md5-cache/dev-python/ipy-0.81 b/metadata/md5-cache/dev-python/ipy-0.81 index 5709a4945cf7..1bc735939659 100644 --- a/metadata/md5-cache/dev-python/ipy-0.81 +++ b/metadata/md5-cache/dev-python/ipy-0.81 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/I/IPy/IPy-0.81.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b5408d4050f3892953a683a59e65d14b diff --git a/metadata/md5-cache/dev-python/ipython-0.13.2 b/metadata/md5-cache/dev-python/ipython-0.13.2 index 31827253d6ab..759532e62c55 100644 --- a/metadata/md5-cache/dev-python/ipython-0.13.2 +++ b/metadata/md5-cache/dev-python/ipython-0.13.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/decorator[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=mongodb? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) notebook? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) octave? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) wxwidgets? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://archive.ipython.org/release/0.13.2/ipython-0.13.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=a3bc8f566cddacba91fe2445a3620e02 diff --git a/metadata/md5-cache/dev-python/ipython-1.0.0 b/metadata/md5-cache/dev-python/ipython-1.0.0 index d465c4d71852..aabb7bbf173a 100644 --- a/metadata/md5-cache/dev-python/ipython-1.0.0 +++ b/metadata/md5-cache/dev-python/ipython-1.0.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/decorator[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=mongodb? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) notebook? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) octave? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) wxwidgets? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/ipython/ipython/releases/download/rel-1.0.0/ipython-1.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=92b665f0834d0485ffc0374d56d8393d diff --git a/metadata/md5-cache/dev-python/ipython-1.1.0 b/metadata/md5-cache/dev-python/ipython-1.1.0 new file mode 100644 index 000000000000..9d027a60454e --- /dev/null +++ b/metadata/md5-cache/dev-python/ipython-1.1.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-python/decorator[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pexpect[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/simplegeneric[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pyparsing[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] emacs? ( app-emacs/python-mode virtual/emacs ) matplotlib? ( dev-python/matplotlib[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) octave? ( dev-python/oct2py[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) smp? ( dev-python/pyzmq[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) wxwidgets? ( dev-python/wxpython[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) test? ( dev-python/nose[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[readline,sqlite] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[readline,sqlite] ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2[readline,sqlite] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[readline,sqlite] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DESCRIPTION=Advanced interactive shell for Python +EAPI=5 +HOMEPAGE=http://ipython.org/ +IUSE=doc emacs examples matplotlib mongodb notebook nbconvert octave qt4 +smp test wxwidgets python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 test +KEYWORDS=~amd64 ~arm ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos +LICENSE=BSD +RDEPEND=dev-python/decorator[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pexpect[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/simplegeneric[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pyparsing[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] emacs? ( app-emacs/python-mode virtual/emacs ) matplotlib? ( dev-python/matplotlib[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) mongodb? ( dev-python/pymongo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) octave? ( dev-python/oct2py[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) smp? ( dev-python/pyzmq[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) wxwidgets? ( dev-python/wxpython[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) notebook? ( >=www-servers/tornado-2.1[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pyzmq[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-libs/mathjax dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) nbconvert? ( app-text/pandoc dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/sphinx[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/jinja[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) qt4? ( || ( dev-python/PyQt4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pyside[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pyzmq[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[readline,sqlite] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[readline,sqlite] ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2[readline,sqlite] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[readline,sqlite] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +REQUIRED_USE=mongodb? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) notebook? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) octave? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) wxwidgets? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) +SLOT=0 +SRC_URI=https://github.com/ipython/ipython/releases/download/rel-1.1.0/ipython-1.1.0.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=3501d86316ad316ada0a2b24964f9764 diff --git a/metadata/md5-cache/dev-python/irc-8.5.1 b/metadata/md5-cache/dev-python/irc-8.5.1 index ef25bc513104..dfd3b0c69ef7 100644 --- a/metadata/md5-cache/dev-python/irc-8.5.1 +++ b/metadata/md5-cache/dev-python/irc-8.5.1 @@ -10,5 +10,5 @@ RDEPEND=!>=dev-python/python-irclib-3.2.2[python_targets_python2_6(-)?,python_ta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/i/irc/irc-8.5.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a644168c9d48e072e0865eb7609a36d1 diff --git a/metadata/md5-cache/dev-python/irman-python-0.1-r1 b/metadata/md5-cache/dev-python/irman-python-0.1-r1 index 5977823c27f3..36ec97d3d3ec 100644 --- a/metadata/md5-cache/dev-python/irman-python-0.1-r1 +++ b/metadata/md5-cache/dev-python/irman-python-0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=media-libs/libirman python_targets_python2_6? ( >=dev-lang/python-2.6.8- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://bluweb.com/chouser/proj/irman-python/irman-python-0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5f85993f0fb12fa4a44750d8dffcab75 diff --git a/metadata/md5-cache/dev-python/iso8601-0.1.4-r1 b/metadata/md5-cache/dev-python/iso8601-0.1.4-r1 index 879b9e7ac520..29e3e4194958 100644 --- a/metadata/md5-cache/dev-python/iso8601-0.1.4-r1 +++ b/metadata/md5-cache/dev-python/iso8601-0.1.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/i/iso8601/iso8601-0.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3fcdf55284a8f9a99727f98f69148aa2 diff --git a/metadata/md5-cache/dev-python/isodate-0.4.9-r1 b/metadata/md5-cache/dev-python/isodate-0.4.9-r1 index a84543f28682..a20f311a56e1 100644 --- a/metadata/md5-cache/dev-python/isodate-0.4.9-r1 +++ b/metadata/md5-cache/dev-python/isodate-0.4.9-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/i/isodate/isodate-0.4.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a5ada015a0ef22f23a7e75ab6d7d5a26 diff --git a/metadata/md5-cache/dev-python/itsdangerous-0.21 b/metadata/md5-cache/dev-python/itsdangerous-0.21 index abefadda141e..89d136974677 100644 --- a/metadata/md5-cache/dev-python/itsdangerous-0.21 +++ b/metadata/md5-cache/dev-python/itsdangerous-0.21 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/i/itsdangerous/itsdangerous-0.21.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fe9f8961f308b5f698a49703ff195f59 diff --git a/metadata/md5-cache/dev-python/itsdangerous-0.22 b/metadata/md5-cache/dev-python/itsdangerous-0.22 index 69d6b016fe00..0106b472ece8 100644 --- a/metadata/md5-cache/dev-python/itsdangerous-0.22 +++ b/metadata/md5-cache/dev-python/itsdangerous-0.22 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/i/itsdangerous/itsdangerous-0.22.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f4aef9cea76efda48f5301b73353b3e7 diff --git a/metadata/md5-cache/dev-python/jedi-0.5_beta5 b/metadata/md5-cache/dev-python/jedi-0.5_beta5 index a841ced297e3..b2b6075678ea 100644 --- a/metadata/md5-cache/dev-python/jedi-0.5_beta5 +++ b/metadata/md5-cache/dev-python/jedi-0.5_beta5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/j/jedi/jedi-0.5b5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ea60e637d2d78f070259f121502cef84 diff --git a/metadata/md5-cache/dev-python/jedi-0.6.0 b/metadata/md5-cache/dev-python/jedi-0.6.0 index b3446076e338..c363c5c84dcf 100644 --- a/metadata/md5-cache/dev-python/jedi-0.6.0 +++ b/metadata/md5-cache/dev-python/jedi-0.6.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/j/jedi/jedi-0.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ef21871971da338419ad38467e129196 diff --git a/metadata/md5-cache/dev-python/jedi-0.7.0 b/metadata/md5-cache/dev-python/jedi-0.7.0 index 908e7b6e3425..b8a8d4874e97 100644 --- a/metadata/md5-cache/dev-python/jedi-0.7.0 +++ b/metadata/md5-cache/dev-python/jedi-0.7.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/j/jedi/jedi-0.7.0.tar.gz http://dev.gentoo.org/~hasufell/distfiles/jedi-0.7.0-html-docs.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c7b29c08f96bf4ad8ed0972a91216661 diff --git a/metadata/md5-cache/dev-python/jinja-2.6-r1 b/metadata/md5-cache/dev-python/jinja-2.6-r1 index daa1d22dc39c..b36ea2c54548 100644 --- a/metadata/md5-cache/dev-python/jinja-2.6-r1 +++ b/metadata/md5-cache/dev-python/jinja-2.6-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/markupsafe[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/J/Jinja2/Jinja2-2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a2c488af2d1ed16fe3f6d574cedcf4d3 diff --git a/metadata/md5-cache/dev-python/jinja-2.6-r100 b/metadata/md5-cache/dev-python/jinja-2.6-r100 index d456bbd136c5..940478b818f9 100644 --- a/metadata/md5-cache/dev-python/jinja-2.6-r100 +++ b/metadata/md5-cache/dev-python/jinja-2.6-r100 @@ -10,5 +10,5 @@ RDEPEND=dev-python/markupsafe[python_targets_python3_2(-)?,-python_single_target REQUIRED_USE=|| ( python_targets_python3_2 ) SLOT=compat SRC_URI=mirror://pypi/J/Jinja2/Jinja2-2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=27ca74547eab3795d06c7db720d78092 diff --git a/metadata/md5-cache/dev-python/jinja-2.6-r2 b/metadata/md5-cache/dev-python/jinja-2.6-r2 index 3001974f1158..f5c2686bcaa4 100644 --- a/metadata/md5-cache/dev-python/jinja-2.6-r2 +++ b/metadata/md5-cache/dev-python/jinja-2.6-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/markupsafe[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/J/Jinja2/Jinja2-2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=37b5541d3df250516670ddf73e901e85 diff --git a/metadata/md5-cache/dev-python/jinja-2.7 b/metadata/md5-cache/dev-python/jinja-2.7 index ce13584d5bac..cfe35c5c9589 100644 --- a/metadata/md5-cache/dev-python/jinja-2.7 +++ b/metadata/md5-cache/dev-python/jinja-2.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/markupsafe[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/J/Jinja2/Jinja2-2.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7ebbf743137e507e5351f1f8e649b660 diff --git a/metadata/md5-cache/dev-python/jinja-2.7.1 b/metadata/md5-cache/dev-python/jinja-2.7.1 index 3a685a1dcc18..70653f08738a 100644 --- a/metadata/md5-cache/dev-python/jinja-2.7.1 +++ b/metadata/md5-cache/dev-python/jinja-2.7.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/markupsafe[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/J/Jinja2/Jinja2-2.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aa16d27c91521c011165f92d26f3aea3 diff --git a/metadata/md5-cache/dev-python/joblib-0.7.0d-r1 b/metadata/md5-cache/dev-python/joblib-0.7.0d-r1 index 79742ed4e411..2c2b79d39e5a 100644 --- a/metadata/md5-cache/dev-python/joblib-0.7.0d-r1 +++ b/metadata/md5-cache/dev-python/joblib-0.7.0d-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/j/joblib/joblib-0.7.0d.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a3a878240d03bc1c8b6c98a95fb2f9ff diff --git a/metadata/md5-cache/dev-python/joblib-0.7.1 b/metadata/md5-cache/dev-python/joblib-0.7.1 index b418d1db94fd..7b85a9f5e5ca 100644 --- a/metadata/md5-cache/dev-python/joblib-0.7.1 +++ b/metadata/md5-cache/dev-python/joblib-0.7.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/j/joblib/joblib-0.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=86c3ca65dcf7026e1b662b925cf18004 diff --git a/metadata/md5-cache/dev-python/jonpy-0.10-r1 b/metadata/md5-cache/dev-python/jonpy-0.10-r1 index c19eb1c61b93..16e86013c367 100644 --- a/metadata/md5-cache/dev-python/jonpy-0.10-r1 +++ b/metadata/md5-cache/dev-python/jonpy-0.10-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/jonpy/jonpy-0.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c308997e06b83a5889f20ad723351b03 diff --git a/metadata/md5-cache/dev-python/jsmin-2.0.3 b/metadata/md5-cache/dev-python/jsmin-2.0.3 index 4647208983c2..41b69d604aaf 100644 --- a/metadata/md5-cache/dev-python/jsmin-2.0.3 +++ b/metadata/md5-cache/dev-python/jsmin-2.0.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/j/jsmin/jsmin-2.0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=be365e1e0ad6e91d1fe4f45bef8cecc2 diff --git a/metadata/md5-cache/dev-python/json-tools-0.3.2 b/metadata/md5-cache/dev-python/json-tools-0.3.2 index 2e6723ccff8a..e76da5e382d6 100644 --- a/metadata/md5-cache/dev-python/json-tools-0.3.2 +++ b/metadata/md5-cache/dev-python/json-tools-0.3.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/colorama[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/j/json_tools/json_tools-0.3.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cb71ebcaa75d05ad61ef2527445e15b7 diff --git a/metadata/md5-cache/dev-python/jsonpatch-0.10 b/metadata/md5-cache/dev-python/jsonpatch-0.10 index f251f2ead320..5c94cb5edd45 100644 --- a/metadata/md5-cache/dev-python/jsonpatch-0.10 +++ b/metadata/md5-cache/dev-python/jsonpatch-0.10 @@ -10,5 +10,5 @@ RDEPEND=dev-python/jsonpointer[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonpatch/jsonpatch-0.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7a1fd41e043cfa93bd3f31feb2c2c1f1 diff --git a/metadata/md5-cache/dev-python/jsonpatch-0.12 b/metadata/md5-cache/dev-python/jsonpatch-0.12 index 22312774042a..3442e4c9653a 100644 --- a/metadata/md5-cache/dev-python/jsonpatch-0.12 +++ b/metadata/md5-cache/dev-python/jsonpatch-0.12 @@ -10,5 +10,5 @@ RDEPEND=dev-python/jsonpointer[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonpatch/jsonpatch-0.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=60670460bffe3b23a6dd575e9cbbb70f diff --git a/metadata/md5-cache/dev-python/jsonpickle-0.4.0-r1 b/metadata/md5-cache/dev-python/jsonpickle-0.4.0-r1 index 7a0014fbc92c..cd65e0849952 100644 --- a/metadata/md5-cache/dev-python/jsonpickle-0.4.0-r1 +++ b/metadata/md5-cache/dev-python/jsonpickle-0.4.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonpickle/jsonpickle-0.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f57f56369f5415db4c8acd477ff96d11 diff --git a/metadata/md5-cache/dev-python/jsonpickle-0.6.1 b/metadata/md5-cache/dev-python/jsonpickle-0.6.1 index 3fdb40c712b3..dc610a641ef7 100644 --- a/metadata/md5-cache/dev-python/jsonpickle-0.6.1 +++ b/metadata/md5-cache/dev-python/jsonpickle-0.6.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonpickle/jsonpickle-0.6.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1dfd88f8e706275b9a1388e70a0826bf diff --git a/metadata/md5-cache/dev-python/jsonpointer-0.7 b/metadata/md5-cache/dev-python/jsonpointer-0.7 index 3aa746795b07..03f294c76502 100644 --- a/metadata/md5-cache/dev-python/jsonpointer-0.7 +++ b/metadata/md5-cache/dev-python/jsonpointer-0.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonpointer/jsonpointer-0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4f3d69e55f718ae12e16b5a539984f7b diff --git a/metadata/md5-cache/dev-python/jsonrpclib-0_pre20110820-r1 b/metadata/md5-cache/dev-python/jsonrpclib-0_pre20110820-r1 index 58d620abac92..21a8feef42d3 100644 --- a/metadata/md5-cache/dev-python/jsonrpclib-0_pre20110820-r1 +++ b/metadata/md5-cache/dev-python/jsonrpclib-0_pre20110820-r1 @@ -1,12 +1,14 @@ -DEFINED_PHASES=compile install postinst postrm prepare setup -DEPEND=dev-lang/python +DEFINED_PHASES=compile configure install prepare test +DEPEND=userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] DESCRIPTION=python implementation of the JSON-RPC spec (1.0 and 2.0) -EAPI=4 +EAPI=5 HOMEPAGE=https://github.com/joshmarshall/jsonrpclib +IUSE=python_targets_python2_6 python_targets_python2_7 KEYWORDS=~amd64 ~arm ~x86 LICENSE=Apache-2.0 -RDEPEND=dev-python/simplejson dev-lang/python +RDEPEND=dev-python/simplejson python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/jsonrpclib-0_pre20110820.tar.bz2 -_eclasses_=distutils 34e0f373c466bb0e97ba194735f1acf2 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python 305197b0aa1194fa3ef67ca21f6faa7e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=400690d20564a1602398385818ef4ac6 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=f287c3b22b869fe3f8d403010c507b1b diff --git a/metadata/md5-cache/dev-python/jsonschema-0.7 b/metadata/md5-cache/dev-python/jsonschema-0.7 index 822e14c02fc3..9045837460f8 100644 --- a/metadata/md5-cache/dev-python/jsonschema-0.7 +++ b/metadata/md5-cache/dev-python/jsonschema-0.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonschema/jsonschema-0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ad7fdc1d4b1ba23c082cdb073216931e diff --git a/metadata/md5-cache/dev-python/jsonschema-0.8.0 b/metadata/md5-cache/dev-python/jsonschema-0.8.0 index 85c24ff77236..36bdb9ea6dc5 100644 --- a/metadata/md5-cache/dev-python/jsonschema-0.8.0 +++ b/metadata/md5-cache/dev-python/jsonschema-0.8.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonschema/jsonschema-0.8.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1974a6709d91ecbeb18613615c04fc3c diff --git a/metadata/md5-cache/dev-python/jsonschema-1.3.0 b/metadata/md5-cache/dev-python/jsonschema-1.3.0 index f81596de61be..aec07e46bb63 100644 --- a/metadata/md5-cache/dev-python/jsonschema-1.3.0 +++ b/metadata/md5-cache/dev-python/jsonschema-1.3.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonschema/jsonschema-1.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9353105d559f929d432fac5aa996c504 diff --git a/metadata/md5-cache/dev-python/jsonschema-2.0.0 b/metadata/md5-cache/dev-python/jsonschema-2.0.0 index 2533c74450d0..2574246d5c1f 100644 --- a/metadata/md5-cache/dev-python/jsonschema-2.0.0 +++ b/metadata/md5-cache/dev-python/jsonschema-2.0.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/j/jsonschema/jsonschema-2.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b5c1d8ecb51752c1fcb577a1d9bfcb76 diff --git a/metadata/md5-cache/dev-python/kaa-base-0.6.0-r1 b/metadata/md5-cache/dev-python/kaa-base-0.6.0-r1 index ff3228c468ff..0c16bce7efe7 100644 --- a/metadata/md5-cache/dev-python/kaa-base-0.6.0-r1 +++ b/metadata/md5-cache/dev-python/kaa-base-0.6.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.4.0 avahi? ( net-dns/avahi[python] ) sqlite? ( dev-pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/freevo/kaa-base-0.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=24ad153f80ef18cdeb903a6da19b89f0 diff --git a/metadata/md5-cache/dev-python/kaa-display-0.1.0-r1 b/metadata/md5-cache/dev-python/kaa-display-0.1.0-r1 index 1658cfa9ac11..b400d8fdf7b3 100644 --- a/metadata/md5-cache/dev-python/kaa-display-0.1.0-r1 +++ b/metadata/md5-cache/dev-python/kaa-display-0.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/kaa-base-0.3.0[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/freevo/kaa-display-0.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e91ba69f8d3cce01c507abc74d0dad4c diff --git a/metadata/md5-cache/dev-python/kaa-imlib2-0.2.3-r2 b/metadata/md5-cache/dev-python/kaa-imlib2-0.2.3-r2 index 0645d487fcc8..7ac4b835f94e 100644 --- a/metadata/md5-cache/dev-python/kaa-imlib2-0.2.3-r2 +++ b/metadata/md5-cache/dev-python/kaa-imlib2-0.2.3-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/kaa-base-0.3.0[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/freevo/kaa-imlib2-0.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=10b79d38b9ceeb634f873d104fcb68a1 diff --git a/metadata/md5-cache/dev-python/kaa-metadata-0.7.7-r1 b/metadata/md5-cache/dev-python/kaa-metadata-0.7.7-r1 index c17d09f04ce9..46a53c41cdd0 100644 --- a/metadata/md5-cache/dev-python/kaa-metadata-0.7.7-r1 +++ b/metadata/md5-cache/dev-python/kaa-metadata-0.7.7-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/kaa-base-0.3.0[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/freevo/kaa-metadata-0.7.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=62b175037ca794d67b9275c01609a290 diff --git a/metadata/md5-cache/dev-python/keyring-1.0 b/metadata/md5-cache/dev-python/keyring-1.0 index d3e56fe64f24..7a2418657752 100644 --- a/metadata/md5-cache/dev-python/keyring-1.0 +++ b/metadata/md5-cache/dev-python/keyring-1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/k/keyring/keyring-1.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1b4ebbbf6918d5156551543b427c3e5a diff --git a/metadata/md5-cache/dev-python/keyring-1.5 b/metadata/md5-cache/dev-python/keyring-1.5 index 3e2f10f8bfd9..e82271a3667e 100644 --- a/metadata/md5-cache/dev-python/keyring-1.5 +++ b/metadata/md5-cache/dev-python/keyring-1.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/k/keyring/keyring-1.5.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3be34fa4a58b175bde2082f1960d0fac diff --git a/metadata/md5-cache/dev-python/keyring-1.5-r1 b/metadata/md5-cache/dev-python/keyring-1.5-r1 index d49c7173c7ce..9c09316e1aa0 100644 --- a/metadata/md5-cache/dev-python/keyring-1.5-r1 +++ b/metadata/md5-cache/dev-python/keyring-1.5-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/k/keyring/keyring-1.5.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8a1580392e5b64c1c5254db9cfaf2db7 diff --git a/metadata/md5-cache/dev-python/keyring-3.1 b/metadata/md5-cache/dev-python/keyring-3.1 new file mode 100644 index 000000000000..0de657be75d5 --- /dev/null +++ b/metadata/md5-cache/dev-python/keyring-3.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] dev-python/pytest-runner[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] app-arch/unzip test? ( virtual/python-unittest2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Provides access to the system keyring service +EAPI=5 +HOMEPAGE=https://bitbucket.org/kang/python-keyring-lib +IUSE=test python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=PSF-2 +RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] +REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/k/keyring/keyring-3.1.zip +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=5749fa11857c108fa2716430003d117e diff --git a/metadata/md5-cache/dev-python/kid-0.9.6-r1 b/metadata/md5-cache/dev-python/kid-0.9.6-r1 index 307375d84f73..b013e99d7fd2 100644 --- a/metadata/md5-cache/dev-python/kid-0.9.6-r1 +++ b/metadata/md5-cache/dev-python/kid-0.9.6-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.kid-templating.org/dist/0.9.6/kid-0.9.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a59201b52486b93382c9bc2bf67331e1 diff --git a/metadata/md5-cache/dev-python/kiwi-1.9.38-r1 b/metadata/md5-cache/dev-python/kiwi-1.9.38-r1 index 562767045898..2c0af588b58f 100644 --- a/metadata/md5-cache/dev-python/kiwi-1.9.38-r1 +++ b/metadata/md5-cache/dev-python/kiwi-1.9.38-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/k/kiwi-gtk/kiwi-gtk-1.9.38.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=62b960c9571da0e3ee688353ce585dcb diff --git a/metadata/md5-cache/dev-python/kombu-1.0.4-r1 b/metadata/md5-cache/dev-python/kombu-1.0.4-r1 index 25e4badb66c8..4bebb4e857f4 100644 --- a/metadata/md5-cache/dev-python/kombu-1.0.4-r1 +++ b/metadata/md5-cache/dev-python/kombu-1.0.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/anyjson >=dev-python/amqplib-0.6 python_targets_python2_7? ( REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/k/kombu/kombu-1.0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7cad929df2e1aeffa063f02a0bae4a92 diff --git a/metadata/md5-cache/dev-python/kombu-2.5.10 b/metadata/md5-cache/dev-python/kombu-2.5.10 index d2f244196986..790795b01a2f 100644 --- a/metadata/md5-cache/dev-python/kombu-2.5.10 +++ b/metadata/md5-cache/dev-python/kombu-2.5.10 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/k/kombu/kombu-2.5.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7639a2b64d98eb4259caa5fed1bd9bd6 diff --git a/metadata/md5-cache/dev-python/kombu-2.5.12 b/metadata/md5-cache/dev-python/kombu-2.5.12 index b02b8985fadf..d25cea927ae7 100644 --- a/metadata/md5-cache/dev-python/kombu-2.5.12 +++ b/metadata/md5-cache/dev-python/kombu-2.5.12 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/k/kombu/kombu-2.5.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=55086def785bc60865a78da490d1b845 diff --git a/metadata/md5-cache/dev-python/kombu-2.5.14 b/metadata/md5-cache/dev-python/kombu-2.5.14 index 52d696a1d03d..3741efe844a3 100644 --- a/metadata/md5-cache/dev-python/kombu-2.5.14 +++ b/metadata/md5-cache/dev-python/kombu-2.5.14 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/k/kombu/kombu-2.5.14.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=83974e6aa49abc1f13a11e1d473df4c5 diff --git a/metadata/md5-cache/dev-python/larch-1.20130316 b/metadata/md5-cache/dev-python/larch-1.20130316 index ebdf4ce0f254..09e0576fd939 100644 --- a/metadata/md5-cache/dev-python/larch-1.20130316 +++ b/metadata/md5-cache/dev-python/larch-1.20130316 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/p/python-larch/python-larch_1.20130316.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=006e0435326e92f46d92b911927a15ee diff --git a/metadata/md5-cache/dev-python/larch-1.20130808 b/metadata/md5-cache/dev-python/larch-1.20130808 index 916f4b84debd..bbe4c07df573 100644 --- a/metadata/md5-cache/dev-python/larch-1.20130808 +++ b/metadata/md5-cache/dev-python/larch-1.20130808 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/p/python-larch/python-larch_1.20130808.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3f58035545e6f4ba307ba0c1c413eb54 diff --git a/metadata/md5-cache/dev-python/lesscpy-0.9j b/metadata/md5-cache/dev-python/lesscpy-0.9j new file mode 100644 index 000000000000..205fb5e53d12 --- /dev/null +++ b/metadata/md5-cache/dev-python/lesscpy-0.9j @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=A compiler written in Python for the LESS language. +EAPI=5 +HOMEPAGE=https://pypi.python.org/pypi/lesscpy +IUSE=test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=dev-python/ply[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/l/lesscpy/lesscpy-0.9j.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=36e503e1a4e018780de133ab57d861e5 diff --git a/metadata/md5-cache/dev-python/libasyncns-python-0.7.1-r1 b/metadata/md5-cache/dev-python/libasyncns-python-0.7.1-r1 index dbb398acdd49..113c49328f9c 100644 --- a/metadata/md5-cache/dev-python/libasyncns-python-0.7.1-r1 +++ b/metadata/md5-cache/dev-python/libasyncns-python-0.7.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=net-libs/libasyncns-0.4 python_targets_python2_6? ( >=dev-lang/python- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://launchpad.net/libasyncns-python/trunk/0.7.1/+download/libasyncns-python-0.7.1.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f1fa0bd928f59538fca7e62db2a5add3 diff --git a/metadata/md5-cache/dev-python/libcloud-0.12.4-r1 b/metadata/md5-cache/dev-python/libcloud-0.12.4-r1 index b14454a79f7f..b88a1f96b65c 100644 --- a/metadata/md5-cache/dev-python/libcloud-0.12.4-r1 +++ b/metadata/md5-cache/dev-python/libcloud-0.12.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[ssl(+)] ) pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://apache/libcloud/apache-libcloud-0.12.4.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0cd82c4b96e550a9954916094074b092 diff --git a/metadata/md5-cache/dev-python/libcloud-0.13.2 b/metadata/md5-cache/dev-python/libcloud-0.13.2 index f33c98b862c8..e95c683a3386 100644 --- a/metadata/md5-cache/dev-python/libcloud-0.13.2 +++ b/metadata/md5-cache/dev-python/libcloud-0.13.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[ssl(+)] ) pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://apache/libcloud/apache-libcloud-0.13.2.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4e933af38bb074ffe4be6c6597978f47 diff --git a/metadata/md5-cache/dev-python/libextractor-python-0.6-r1 b/metadata/md5-cache/dev-python/libextractor-python-0.6-r1 index 76f46904e77a..76efd56a6d05 100644 --- a/metadata/md5-cache/dev-python/libextractor-python-0.6-r1 +++ b/metadata/md5-cache/dev-python/libextractor-python-0.6-r1 @@ -10,5 +10,5 @@ RDEPEND=>=media-libs/libextractor-0.6.3 python_targets_python2_6? ( >=dev-lang/p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://gnu/libextractor/libextractor-python-0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7c49d7291db73da0f44cf3f68778d6fa diff --git a/metadata/md5-cache/dev-python/liblarch-2.1.0 b/metadata/md5-cache/dev-python/liblarch-2.1.0 index 128fb31671ef..8b928a1ad2d4 100644 --- a/metadata/md5-cache/dev-python/liblarch-2.1.0 +++ b/metadata/md5-cache/dev-python/liblarch-2.1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygobject:2[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://gtg.fritalk.com/publique/gtg.fritalk.com/liblarch/2.1.0/liblarch-2.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=382212bfd028047e2472ebab12ada366 diff --git a/metadata/md5-cache/dev-python/libnatpmp-20120821-r1 b/metadata/md5-cache/dev-python/libnatpmp-20120821-r1 index 59a10ba17e39..5937adc1931d 100644 --- a/metadata/md5-cache/dev-python/libnatpmp-20120821-r1 +++ b/metadata/md5-cache/dev-python/libnatpmp-20120821-r1 @@ -10,5 +10,5 @@ RDEPEND==net-libs/libnatpmp-20120821 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://miniupnp.free.fr/files/download.php?file=libnatpmp-20120821.tar.gz -> libnatpmp-20120821.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=98ef297fd60e490e1cd473e0d50dbaea diff --git a/metadata/md5-cache/dev-python/libnatpmp-20130911 b/metadata/md5-cache/dev-python/libnatpmp-20130911 index d4e0ca80f29b..0db9c2266866 100644 --- a/metadata/md5-cache/dev-python/libnatpmp-20130911 +++ b/metadata/md5-cache/dev-python/libnatpmp-20130911 @@ -10,5 +10,5 @@ RDEPEND==net-libs/libnatpmp-20130911 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://miniupnp.free.fr/files/download.php?file=libnatpmp-20130911.tar.gz -> libnatpmp-20130911.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=05b63ab8cfbe33697b95f1f73ddf9bae diff --git a/metadata/md5-cache/dev-python/llfuse-0.39 b/metadata/md5-cache/dev-python/llfuse-0.39 index d16e9ea2ad16..c377d6503434 100644 --- a/metadata/md5-cache/dev-python/llfuse-0.39 +++ b/metadata/md5-cache/dev-python/llfuse-0.39 @@ -10,5 +10,5 @@ RDEPEND=>=sys-fs/fuse-2.8.0 python_targets_python2_6? ( >=dev-lang/python-2.6.8- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/l/llfuse/llfuse-0.39.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=745a65319bab278082156dce6e3c616d diff --git a/metadata/md5-cache/dev-python/lockfile-0.8-r1 b/metadata/md5-cache/dev-python/lockfile-0.8-r1 index 5a89dbcb9b40..594123934aeb 100644 --- a/metadata/md5-cache/dev-python/lockfile-0.8-r1 +++ b/metadata/md5-cache/dev-python/lockfile-0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://pylockfile.googlecode.com/files/lockfile-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=382212a242b42f629b9bd47df02399b1 diff --git a/metadata/md5-cache/dev-python/lockfile-0.9.1-r1 b/metadata/md5-cache/dev-python/lockfile-0.9.1-r1 index 99887545ee2b..af4455a4ab84 100644 --- a/metadata/md5-cache/dev-python/lockfile-0.9.1-r1 +++ b/metadata/md5-cache/dev-python/lockfile-0.9.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://pylockfile.googlecode.com/files/lockfile-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fbd4b7b542bc9aad585ac0b60be79a5e diff --git a/metadata/md5-cache/dev-python/logbook-0.4.1 b/metadata/md5-cache/dev-python/logbook-0.4.1 index b038cbdcb576..2aa1fefed3cd 100644 --- a/metadata/md5-cache/dev-python/logbook-0.4.1 +++ b/metadata/md5-cache/dev-python/logbook-0.4.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/L/Logbook/Logbook-0.4.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5876c52aaddb7acf4ad5c8c1a3b98936 diff --git a/metadata/md5-cache/dev-python/logbook-0.4.2 b/metadata/md5-cache/dev-python/logbook-0.4.2 index 17d5f4bafb2c..d86b95c84ec4 100644 --- a/metadata/md5-cache/dev-python/logbook-0.4.2 +++ b/metadata/md5-cache/dev-python/logbook-0.4.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/mitsuhiko/logbook/archive/0.4.2.tar.gz -> logbook-0.4.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=63a2f8ac2932bf0c142fde5803831287 diff --git a/metadata/md5-cache/dev-python/logbook-0.5.0 b/metadata/md5-cache/dev-python/logbook-0.5.0 index 13ec83a92c16..51314399db60 100644 --- a/metadata/md5-cache/dev-python/logbook-0.5.0 +++ b/metadata/md5-cache/dev-python/logbook-0.5.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/mitsuhiko/logbook/archive/0.5.0.tar.gz -> logbook-0.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=36fbe7c084554cfce05520aa92be7a99 diff --git a/metadata/md5-cache/dev-python/logilab-common-0.59.1 b/metadata/md5-cache/dev-python/logilab-common-0.59.1 index 686f9ae3f234..058c1cf7a7ab 100644 --- a/metadata/md5-cache/dev-python/logilab-common-0.59.1 +++ b/metadata/md5-cache/dev-python/logilab-common-0.59.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/common/logilab-common-0.59.1.tar.gz mirror://pypi/l/logilab-common/logilab-common-0.59.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=270820824f7c6d9c556e26ae8d60e9aa diff --git a/metadata/md5-cache/dev-python/logilab-common-0.60.0 b/metadata/md5-cache/dev-python/logilab-common-0.60.0 index 65b8f470412e..c493abbbd3d1 100644 --- a/metadata/md5-cache/dev-python/logilab-common-0.60.0 +++ b/metadata/md5-cache/dev-python/logilab-common-0.60.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/common/logilab-common-0.60.0.tar.gz mirror://pypi/l/logilab-common/logilab-common-0.60.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c8f6f07679a4b3d848aa02929b6ce74d diff --git a/metadata/md5-cache/dev-python/logilab-constraint-0.5.0-r1 b/metadata/md5-cache/dev-python/logilab-constraint-0.5.0-r1 index 6736a637ff83..e8ecfa610f8f 100644 --- a/metadata/md5-cache/dev-python/logilab-constraint-0.5.0-r1 +++ b/metadata/md5-cache/dev-python/logilab-constraint-0.5.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/logilab-common[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/constraint/logilab-constraint-0.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f621a1a053694f5a2a681c28a97b12d3 diff --git a/metadata/md5-cache/dev-python/lp_solve-5.5.2.0-r1 b/metadata/md5-cache/dev-python/lp_solve-5.5.2.0-r1 index dd523748bf99..faab4352de4c 100644 --- a/metadata/md5-cache/dev-python/lp_solve-5.5.2.0-r1 +++ b/metadata/md5-cache/dev-python/lp_solve-5.5.2.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/lpsolve/lp_solve_5.5.2.0_Python_source.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b3034a68e444564842caf57720b68c95 diff --git a/metadata/md5-cache/dev-python/lxml-3.0.1 b/metadata/md5-cache/dev-python/lxml-3.0.1 index b0d583e756c2..9203557ab7b6 100644 --- a/metadata/md5-cache/dev-python/lxml-3.0.1 +++ b/metadata/md5-cache/dev-python/lxml-3.0.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 dev-python/beautifuls REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://codespeak.net/lxml/lxml-3.0.1.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e03a1653ed43d4f398055cf6cedfd602 diff --git a/metadata/md5-cache/dev-python/lxml-3.1.0 b/metadata/md5-cache/dev-python/lxml-3.1.0 index b4c114e57608..03b044cc5890 100644 --- a/metadata/md5-cache/dev-python/lxml-3.1.0 +++ b/metadata/md5-cache/dev-python/lxml-3.1.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 dev-python/beautifuls REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/l/lxml/lxml-3.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38b96c5a52e4f53def1b39d02ba77635 diff --git a/metadata/md5-cache/dev-python/lxml-3.1.1 b/metadata/md5-cache/dev-python/lxml-3.1.1 index 04878d4ee594..bd0410713081 100644 --- a/metadata/md5-cache/dev-python/lxml-3.1.1 +++ b/metadata/md5-cache/dev-python/lxml-3.1.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 dev-python/beautifuls REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/l/lxml/lxml-3.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ab3edc9f2cabd79c69889e5622596fa7 diff --git a/metadata/md5-cache/dev-python/lxml-3.1.2 b/metadata/md5-cache/dev-python/lxml-3.1.2 index a127cbdb0011..34c6b332939c 100644 --- a/metadata/md5-cache/dev-python/lxml-3.1.2 +++ b/metadata/md5-cache/dev-python/lxml-3.1.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 dev-python/beautifuls REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/l/lxml/lxml-3.1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=87b6e5daac516779decad52226aebe96 diff --git a/metadata/md5-cache/dev-python/lxml-3.2.0 b/metadata/md5-cache/dev-python/lxml-3.2.0 index 693d54e2b2e7..582dfa18a728 100644 --- a/metadata/md5-cache/dev-python/lxml-3.2.0 +++ b/metadata/md5-cache/dev-python/lxml-3.2.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 dev-python/beautifuls REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/l/lxml/lxml-3.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=83b9e9aaf32986ee78993b44cecac37c diff --git a/metadata/md5-cache/dev-python/lxml-3.2.1 b/metadata/md5-cache/dev-python/lxml-3.2.1 index 3cdc02a729fe..e5cf9a48e75c 100644 --- a/metadata/md5-cache/dev-python/lxml-3.2.1 +++ b/metadata/md5-cache/dev-python/lxml-3.2.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 beautifulsoup3? ( pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/l/lxml/lxml-3.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=398e1d7ba0ef05a363a17c291fbd28cb diff --git a/metadata/md5-cache/dev-python/m2crypto-0.21.1-r1 b/metadata/md5-cache/dev-python/m2crypto-0.21.1-r1 index 1c6dd3faf463..5cde30b8b692 100644 --- a/metadata/md5-cache/dev-python/m2crypto-0.21.1-r1 +++ b/metadata/md5-cache/dev-python/m2crypto-0.21.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/M/M2Crypto/M2Crypto-0.21.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0249df13b1f47d33e56e92db0f5a2c46 diff --git a/metadata/md5-cache/dev-python/m2secret-0.1.1-r1 b/metadata/md5-cache/dev-python/m2secret-0.1.1-r1 index 38fb6a95fa8b..2d87ddc96b14 100644 --- a/metadata/md5-cache/dev-python/m2secret-0.1.1-r1 +++ b/metadata/md5-cache/dev-python/m2secret-0.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/m2secret/m2secret-0.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=64ad021707710f3f3ad7be5eeea87bb7 diff --git a/metadata/md5-cache/dev-python/mako-0.7.3-r1 b/metadata/md5-cache/dev-python/mako-0.7.3-r1 index 6f052e9fe22d..846421aaaeb6 100644 --- a/metadata/md5-cache/dev-python/mako-0.7.3-r1 +++ b/metadata/md5-cache/dev-python/mako-0.7.3-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/beaker-1.1[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=http://www.makotemplates.org/downloads/Mako-0.7.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=289b0b0a8905c3d985c0c54cab26615e diff --git a/metadata/md5-cache/dev-python/mako-0.7.3-r2 b/metadata/md5-cache/dev-python/mako-0.7.3-r2 index f33c314d2773..245540588d8a 100644 --- a/metadata/md5-cache/dev-python/mako-0.7.3-r2 +++ b/metadata/md5-cache/dev-python/mako-0.7.3-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/markupsafe-0.9.2[python_targets_python2_6(-)?,python_target REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://www.makotemplates.org/downloads/Mako-0.7.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=7c80ef588f39cfc3f6d5a47a607cb482 diff --git a/metadata/md5-cache/dev-python/manifestdestiny-0.5.6-r1 b/metadata/md5-cache/dev-python/manifestdestiny-0.5.6-r1 index 599800293414..bed38cd333ed 100644 --- a/metadata/md5-cache/dev-python/manifestdestiny-0.5.6-r1 +++ b/metadata/md5-cache/dev-python/manifestdestiny-0.5.6-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/M/ManifestDestiny/ManifestDestiny-0.5.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=92c01f568a92742dff64f1ded4416d3d diff --git a/metadata/md5-cache/dev-python/manifestdestiny-0.5.7-r1 b/metadata/md5-cache/dev-python/manifestdestiny-0.5.7-r1 index ff1da8a7b2be..ceb23f6f6b7d 100644 --- a/metadata/md5-cache/dev-python/manifestdestiny-0.5.7-r1 +++ b/metadata/md5-cache/dev-python/manifestdestiny-0.5.7-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/M/ManifestDestiny/ManifestDestiny-0.5.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0f52585cd487778881e6cca2ff2edf7d diff --git a/metadata/md5-cache/dev-python/mantissa-0.7.0-r1 b/metadata/md5-cache/dev-python/mantissa-0.7.0-r1 index 7755f1985b6d..0caef029341f 100644 --- a/metadata/md5-cache/dev-python/mantissa-0.7.0-r1 +++ b/metadata/md5-cache/dev-python/mantissa-0.7.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/axiom-0.6.0-r1[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/M/Mantissa/Mantissa-0.7.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5cb8e42a04b6797d047457e7cbe56a4a diff --git a/metadata/md5-cache/dev-python/manuel-1.7.1 b/metadata/md5-cache/dev-python/manuel-1.7.1 index 38ff5670c063..0f8913a23767 100644 --- a/metadata/md5-cache/dev-python/manuel-1.7.1 +++ b/metadata/md5-cache/dev-python/manuel-1.7.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~idella4/tarballs/manuel-1.7.1-20130316.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=31cc3889d6c4f0397a7186b308ec49f0 diff --git a/metadata/md5-cache/dev-python/markdown-2.2.1-r1 b/metadata/md5-cache/dev-python/markdown-2.2.1-r1 index 68d8f9c5c6cb..a5657118f591 100644 --- a/metadata/md5-cache/dev-python/markdown-2.2.1-r1 +++ b/metadata/md5-cache/dev-python/markdown-2.2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=pygments? ( dev-python/pygments[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/M/Markdown/Markdown-2.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7c6d57eea0dab25947c2cac397d7f728 diff --git a/metadata/md5-cache/dev-python/markdown-2.3 b/metadata/md5-cache/dev-python/markdown-2.3 index d484cf0a5ef4..2c51ceeb1d3e 100644 --- a/metadata/md5-cache/dev-python/markdown-2.3 +++ b/metadata/md5-cache/dev-python/markdown-2.3 @@ -10,5 +10,5 @@ RDEPEND=pygments? ( dev-python/pygments[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/M/Markdown/Markdown-2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=45778605f7a0d6bf4e4cf51695c08eca diff --git a/metadata/md5-cache/dev-python/markdown-2.3.1 b/metadata/md5-cache/dev-python/markdown-2.3.1 index df141af0855b..5950bd636cfa 100644 --- a/metadata/md5-cache/dev-python/markdown-2.3.1 +++ b/metadata/md5-cache/dev-python/markdown-2.3.1 @@ -10,5 +10,5 @@ RDEPEND=pygments? ( dev-python/pygments[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/M/Markdown/Markdown-2.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=09824ecb0702f73c7e9135b17e8e9d86 diff --git a/metadata/md5-cache/dev-python/markdown2-2.1.0-r1 b/metadata/md5-cache/dev-python/markdown2-2.1.0-r1 index 33f125e045be..e4b95a27eb36 100644 --- a/metadata/md5-cache/dev-python/markdown2-2.1.0-r1 +++ b/metadata/md5-cache/dev-python/markdown2-2.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/markdown2/markdown2-2.1.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=92ab7ce376121c68d908630f36e8a521 diff --git a/metadata/md5-cache/dev-python/markups-0.2.4 b/metadata/md5-cache/dev-python/markups-0.2.4 index 6c4c02a542d0..aa3528ed49de 100644 --- a/metadata/md5-cache/dev-python/markups-0.2.4 +++ b/metadata/md5-cache/dev-python/markups-0.2.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/markdown[python_targets_python2_7(-)?,python_targets_python3_ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/M/Markups/Markups-0.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4b2d87f1b4f7deaab1aa69573228b43d diff --git a/metadata/md5-cache/dev-python/markupsafe-0.15-r1 b/metadata/md5-cache/dev-python/markupsafe-0.15-r1 index 606e598f6002..fbab6ca1724d 100644 --- a/metadata/md5-cache/dev-python/markupsafe-0.15-r1 +++ b/metadata/md5-cache/dev-python/markupsafe-0.15-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/M/MarkupSafe/MarkupSafe-0.15.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4ee99b2c3d167e3e93796773ef53308a diff --git a/metadata/md5-cache/dev-python/markupsafe-0.18 b/metadata/md5-cache/dev-python/markupsafe-0.18 index eb66045ad2e7..faf4f1d5d222 100644 --- a/metadata/md5-cache/dev-python/markupsafe-0.18 +++ b/metadata/md5-cache/dev-python/markupsafe-0.18 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/M/MarkupSafe/MarkupSafe-0.18.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d3281e0727f51a7290fb08bae4562efc diff --git a/metadata/md5-cache/dev-python/matplotlib-1.2.0-r2 b/metadata/md5-cache/dev-python/matplotlib-1.2.0-r2 index 58c2cf8e2ddd..ddd72b26779b 100644 --- a/metadata/md5-cache/dev-python/matplotlib-1.2.0-r2 +++ b/metadata/md5-cache/dev-python/matplotlib-1.2.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=doc? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) e RESTRICT=mirror SLOT=0 SRC_URI=mirror://github/matplotlib/matplotlib/matplotlib-1.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=47dadab01b8f06887348ceaa151541e5 diff --git a/metadata/md5-cache/dev-python/matplotlib-1.2.1 b/metadata/md5-cache/dev-python/matplotlib-1.2.1 index 5c3d349358f3..8a37b2819315 100644 --- a/metadata/md5-cache/dev-python/matplotlib-1.2.1 +++ b/metadata/md5-cache/dev-python/matplotlib-1.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=doc? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) e RESTRICT=mirror SLOT=0 SRC_URI=mirror://sourceforge/matplotlib/matplotlib-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b2421b470fcc0e9fd89b37e6e22a0788 diff --git a/metadata/md5-cache/dev-python/matplotlib-1.3.0 b/metadata/md5-cache/dev-python/matplotlib-1.3.0 index f32af32ca977..0eb29d9b7ad3 100644 --- a/metadata/md5-cache/dev-python/matplotlib-1.3.0 +++ b/metadata/md5-cache/dev-python/matplotlib-1.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=doc? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) e RESTRICT=mirror SLOT=0 SRC_URI=mirror://sourceforge/matplotlib/matplotlib-1.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eb2d2c6ebef0a0cf01fdcfba674d3c51 diff --git a/metadata/md5-cache/dev-python/mccabe-0.2.1 b/metadata/md5-cache/dev-python/mccabe-0.2.1 index 63537cbff4c0..d6cf0d13c0ca 100644 --- a/metadata/md5-cache/dev-python/mccabe-0.2.1 +++ b/metadata/md5-cache/dev-python/mccabe-0.2.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pep8-1.4.3[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/m/mccabe/mccabe-0.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a18dc5e3a668b0f68fbeb3df9ed6d8c6 diff --git a/metadata/md5-cache/dev-python/mecab-python-0.996 b/metadata/md5-cache/dev-python/mecab-python-0.996 index 98a3cd6117f4..2a1d22db2894 100644 --- a/metadata/md5-cache/dev-python/mecab-python-0.996 +++ b/metadata/md5-cache/dev-python/mecab-python-0.996 @@ -10,5 +10,5 @@ RDEPEND=~app-text/mecab-0.996 python_targets_python2_6? ( >=dev-lang/python-2.6. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://mecab.googlecode.com/files/mecab-python-0.996.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3647c06af0ca1480cfb5149770c18dc8 diff --git a/metadata/md5-cache/dev-python/mechanize-0.2.5-r1 b/metadata/md5-cache/dev-python/mechanize-0.2.5-r1 index 0acd23398ce5..7bb3b5e4748e 100644 --- a/metadata/md5-cache/dev-python/mechanize-0.2.5-r1 +++ b/metadata/md5-cache/dev-python/mechanize-0.2.5-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://wwwsearch.sourceforge.net/mechanize/src/mechanize-0.2.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a3dbd464850e7c06038ee29c6e4fc473 diff --git a/metadata/md5-cache/dev-python/medusa-0.5.4-r1 b/metadata/md5-cache/dev-python/medusa-0.5.4-r1 index 6185f977662c..1bde6c3e4930 100644 --- a/metadata/md5-cache/dev-python/medusa-0.5.4-r1 +++ b/metadata/md5-cache/dev-python/medusa-0.5.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://www.amk.ca/files/python/medusa-0.5.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e8af45c7d67ecb1e07c66632483c1c54 diff --git a/metadata/md5-cache/dev-python/meld3-0.6.10-r1 b/metadata/md5-cache/dev-python/meld3-0.6.10-r1 index 23a796901a3d..55f416671aa5 100644 --- a/metadata/md5-cache/dev-python/meld3-0.6.10-r1 +++ b/metadata/md5-cache/dev-python/meld3-0.6.10-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/meld3/meld3-0.6.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2f5d3362ab678f7ec7648f2305412372 diff --git a/metadata/md5-cache/dev-python/meld3-0.6.9-r1 b/metadata/md5-cache/dev-python/meld3-0.6.9-r1 index b60c99d80223..37be1d863af7 100644 --- a/metadata/md5-cache/dev-python/meld3-0.6.9-r1 +++ b/metadata/md5-cache/dev-python/meld3-0.6.9-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/meld3/meld3-0.6.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3dbaf9d3f2f3a5cee0b8efc99043bdfa diff --git a/metadata/md5-cache/dev-python/milk-0.5.1 b/metadata/md5-cache/dev-python/milk-0.5.1 index 2a4954e9a80d..3bad0ced5b02 100644 --- a/metadata/md5-cache/dev-python/milk-0.5.1 +++ b/metadata/md5-cache/dev-python/milk-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3: REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/milk/milk-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1f5471f0b365e38df9b87aa5e943a181 diff --git a/metadata/md5-cache/dev-python/milk-0.5.3 b/metadata/md5-cache/dev-python/milk-0.5.3 index b6bba451cf16..ea5280ab5228 100644 --- a/metadata/md5-cache/dev-python/milk-0.5.3 +++ b/metadata/md5-cache/dev-python/milk-0.5.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/milk/milk-0.5.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=53f5849e04afb8662ad4d50694be33e1 diff --git a/metadata/md5-cache/dev-python/milksets-0.1.3-r1 b/metadata/md5-cache/dev-python/milksets-0.1.3-r1 index 2bcbacd3f639..146daebbfc1f 100644 --- a/metadata/md5-cache/dev-python/milksets-0.1.3-r1 +++ b/metadata/md5-cache/dev-python/milksets-0.1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/milksets/milksets-0.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ff3202746d5f7c316262d65a59265f49 diff --git a/metadata/md5-cache/dev-python/mimeparse-0.1.3-r1 b/metadata/md5-cache/dev-python/mimeparse-0.1.3-r1 index 4f832c8671b9..edef09933735 100644 --- a/metadata/md5-cache/dev-python/mimeparse-0.1.3-r1 +++ b/metadata/md5-cache/dev-python/mimeparse-0.1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://mimeparse.googlecode.com/files/mimeparse-0.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5d96605981ccb6c12fac2f4c2a233b17 diff --git a/metadata/md5-cache/dev-python/mimeparse-0.1.4-r1 b/metadata/md5-cache/dev-python/mimeparse-0.1.4-r1 index 4fa005c8e6d8..16faf5507171 100644 --- a/metadata/md5-cache/dev-python/mimeparse-0.1.4-r1 +++ b/metadata/md5-cache/dev-python/mimeparse-0.1.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/python-mimeparse/python-mimeparse-0.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eb01333a2b00e131e9e8f0b6bd2ae6e1 diff --git a/metadata/md5-cache/dev-python/minimock-1.2.8-r1 b/metadata/md5-cache/dev-python/minimock-1.2.8-r1 index 90b1a70c9171..d49bc309aeb8 100644 --- a/metadata/md5-cache/dev-python/minimock-1.2.8-r1 +++ b/metadata/md5-cache/dev-python/minimock-1.2.8-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/M/MiniMock/MiniMock-1.2.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2687be9d4c8054826a023fde1928f0b4 diff --git a/metadata/md5-cache/dev-python/miniupnpc-1.7-r1 b/metadata/md5-cache/dev-python/miniupnpc-1.7-r1 index 3a64eff2be7c..cc3efeb1b481 100644 --- a/metadata/md5-cache/dev-python/miniupnpc-1.7-r1 +++ b/metadata/md5-cache/dev-python/miniupnpc-1.7-r1 @@ -10,5 +10,5 @@ RDEPEND=>=net-libs/miniupnpc-1.7 python_targets_python2_6? ( >=dev-lang/python-2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://miniupnp.free.fr/files/miniupnpc-1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a69a837a4bb26963ffe53c2911d2fb06 diff --git a/metadata/md5-cache/dev-python/miniupnpc-1.8 b/metadata/md5-cache/dev-python/miniupnpc-1.8 index 49bb7fa4ce03..8439002947e6 100644 --- a/metadata/md5-cache/dev-python/miniupnpc-1.8 +++ b/metadata/md5-cache/dev-python/miniupnpc-1.8 @@ -10,5 +10,5 @@ RDEPEND=>=net-libs/miniupnpc-1.8 python_targets_python2_6? ( >=dev-lang/python-2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://miniupnp.free.fr/files/miniupnpc-1.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5dc140379e90ac96045ddb96215751d6 diff --git a/metadata/md5-cache/dev-python/mock-1.0.1-r1 b/metadata/md5-cache/dev-python/mock-1.0.1-r1 index 3c6486020398..c164c624fece 100644 --- a/metadata/md5-cache/dev-python/mock-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/mock-1.0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mock/mock-1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=16295d97ec442b5c869e5d55991ba75b diff --git a/metadata/md5-cache/dev-python/mocker-1.1.1-r1 b/metadata/md5-cache/dev-python/mocker-1.1.1-r1 index 1b2dc68cba9d..7a74c9093256 100644 --- a/metadata/md5-cache/dev-python/mocker-1.1.1-r1 +++ b/metadata/md5-cache/dev-python/mocker-1.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mocker/mocker-1.1.1.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a9d47fe42fc3d4dabcbb1c07f5dc68aa diff --git a/metadata/md5-cache/dev-python/mockldap-0.1.4 b/metadata/md5-cache/dev-python/mockldap-0.1.4 index 9b9588900235..c27892016bca 100644 --- a/metadata/md5-cache/dev-python/mockldap-0.1.4 +++ b/metadata/md5-cache/dev-python/mockldap-0.1.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/funcparserlib[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mockldap/mockldap-0.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5bf715686e0987d061f3ac8a08beae1c diff --git a/metadata/md5-cache/dev-python/mongoengine-0.8.3 b/metadata/md5-cache/dev-python/mongoengine-0.8.3 index 5b045f5aed18..c7cf691b7895 100644 --- a/metadata/md5-cache/dev-python/mongoengine-0.8.3 +++ b/metadata/md5-cache/dev-python/mongoengine-0.8.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/MongoEngine/mongoengine/archive/v0.8.3.tar.gz -> mongoengine-0.8.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b27392791e64d0231c963618f3d9a9b5 diff --git a/metadata/md5-cache/dev-python/mox-0.5.3-r1 b/metadata/md5-cache/dev-python/mox-0.5.3-r1 index 97b8e9c09de6..281ec18f0381 100644 --- a/metadata/md5-cache/dev-python/mox-0.5.3-r1 +++ b/metadata/md5-cache/dev-python/mox-0.5.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mox/mox-0.5.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3a9015dcccbd2c84768918dcf3867868 diff --git a/metadata/md5-cache/dev-python/mozfile-0.9 b/metadata/md5-cache/dev-python/mozfile-0.9 index 3421f6faeae2..7687e04b1c32 100644 --- a/metadata/md5-cache/dev-python/mozfile-0.9 +++ b/metadata/md5-cache/dev-python/mozfile-0.9 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozfile/mozfile-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38e4f5a166852debd6df420009cea285 diff --git a/metadata/md5-cache/dev-python/mozinfo-0.5-r1 b/metadata/md5-cache/dev-python/mozinfo-0.5-r1 index efef67af5ce1..8f9d2081a614 100644 --- a/metadata/md5-cache/dev-python/mozinfo-0.5-r1 +++ b/metadata/md5-cache/dev-python/mozinfo-0.5-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozinfo/mozinfo-0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a33ec04bf0998d62ed161364b4f93759 diff --git a/metadata/md5-cache/dev-python/mozinfo-0.6 b/metadata/md5-cache/dev-python/mozinfo-0.6 index 368bdca7aaf9..0549cafc9c2d 100644 --- a/metadata/md5-cache/dev-python/mozinfo-0.6 +++ b/metadata/md5-cache/dev-python/mozinfo-0.6 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/mozfile-0.6[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozinfo/mozinfo-0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f40dd60b7d09a99dd67bb52170dfdce6 diff --git a/metadata/md5-cache/dev-python/mozprocess-0.11-r1 b/metadata/md5-cache/dev-python/mozprocess-0.11-r1 index b20f6823e754..d780091649e3 100644 --- a/metadata/md5-cache/dev-python/mozprocess-0.11-r1 +++ b/metadata/md5-cache/dev-python/mozprocess-0.11-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/mozinfo[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozprocess/mozprocess-0.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bf9ba302d95b1851211711fe9d7e1025 diff --git a/metadata/md5-cache/dev-python/mozprofile-0.11-r1 b/metadata/md5-cache/dev-python/mozprofile-0.11-r1 index c0f6cb839646..2dab217af914 100644 --- a/metadata/md5-cache/dev-python/mozprofile-0.11-r1 +++ b/metadata/md5-cache/dev-python/mozprofile-0.11-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/manifestdestiny[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozprofile/mozprofile-0.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=861aec1b89873d3f61ebc535b3efdfdd diff --git a/metadata/md5-cache/dev-python/mozprofile-0.12 b/metadata/md5-cache/dev-python/mozprofile-0.12 index cadf3bf6f45a..bc48c92d5b16 100644 --- a/metadata/md5-cache/dev-python/mozprofile-0.12 +++ b/metadata/md5-cache/dev-python/mozprofile-0.12 @@ -10,5 +10,5 @@ RDEPEND=dev-python/manifestdestiny[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozprofile/mozprofile-0.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=35ab0a56e185d97beea53a8a3d21ff0a diff --git a/metadata/md5-cache/dev-python/mozprofile-0.15 b/metadata/md5-cache/dev-python/mozprofile-0.15 index 2034ba271c2a..5a3ec9fc19b1 100644 --- a/metadata/md5-cache/dev-python/mozprofile-0.15 +++ b/metadata/md5-cache/dev-python/mozprofile-0.15 @@ -10,5 +10,5 @@ RDEPEND=dev-python/manifestdestiny[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozprofile/mozprofile-0.15.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dd915d31d2c6c4f2927c1f3453797ecc diff --git a/metadata/md5-cache/dev-python/mozrunner-5.18-r1 b/metadata/md5-cache/dev-python/mozrunner-5.18-r1 index fb0689342834..8a41351eb09c 100644 --- a/metadata/md5-cache/dev-python/mozrunner-5.18-r1 +++ b/metadata/md5-cache/dev-python/mozrunner-5.18-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/mozinfo-0.3.3[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozrunner/mozrunner-5.18.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d084bea083e718f355bf4c26a7c69be5 diff --git a/metadata/md5-cache/dev-python/mozrunner-5.23 b/metadata/md5-cache/dev-python/mozrunner-5.23 index 7b64ea8d7026..4f3dcc1b7dd0 100644 --- a/metadata/md5-cache/dev-python/mozrunner-5.23 +++ b/metadata/md5-cache/dev-python/mozrunner-5.23 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/mozinfo-0.3.3[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozrunner/mozrunner-5.23.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=92e372b9690df0143bf107230be84c10 diff --git a/metadata/md5-cache/dev-python/mozrunner-5.24 b/metadata/md5-cache/dev-python/mozrunner-5.24 index 1fb72938e6bc..1ef0ea6ccb70 100644 --- a/metadata/md5-cache/dev-python/mozrunner-5.24 +++ b/metadata/md5-cache/dev-python/mozrunner-5.24 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/mozinfo-0.3.3[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/m/mozrunner/mozrunner-5.24.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=39222207114c05a6ef99feb1f7e8be34 diff --git a/metadata/md5-cache/dev-python/mpi4py-1.3-r1 b/metadata/md5-cache/dev-python/mpi4py-1.3-r1 index 2fed731f0ce0..16edb7b6ae1a 100644 --- a/metadata/md5-cache/dev-python/mpi4py-1.3-r1 +++ b/metadata/md5-cache/dev-python/mpi4py-1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/mpi python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=http://mpi4py.googlecode.com/files/mpi4py-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=321adf3f99c9bbd0dba43641ddf223ce diff --git a/metadata/md5-cache/dev-python/mpmath-0.17 b/metadata/md5-cache/dev-python/mpmath-0.17 index d112abeeb1f2..1bbb1958ce0f 100644 --- a/metadata/md5-cache/dev-python/mpmath-0.17 +++ b/metadata/md5-cache/dev-python/mpmath-0.17 @@ -10,5 +10,5 @@ RDEPEND=gmp? ( dev-python/gmpy ) matplotlib? ( dev-python/matplotlib ) python_ta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=http://mpmath.googlecode.com/files/mpmath-all-0.17.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=73d1a5ea1609172a730816f3c425f08f diff --git a/metadata/md5-cache/dev-python/mpmath-0.17-r1 b/metadata/md5-cache/dev-python/mpmath-0.17-r1 index 6c25529b1d10..8ae1230b1f43 100644 --- a/metadata/md5-cache/dev-python/mpmath-0.17-r1 +++ b/metadata/md5-cache/dev-python/mpmath-0.17-r1 @@ -10,5 +10,5 @@ RDEPEND=gmp? ( dev-python/gmpy ) matplotlib? ( dev-python/matplotlib ) python_ta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://mpmath.googlecode.com/files/mpmath-all-0.17.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8d403af73e714001a48b687b19ed87db diff --git a/metadata/md5-cache/dev-python/msgpack-0.2.4 b/metadata/md5-cache/dev-python/msgpack-0.2.4 index 4b82a410bb9a..ca83df566a39 100644 --- a/metadata/md5-cache/dev-python/msgpack-0.2.4 +++ b/metadata/md5-cache/dev-python/msgpack-0.2.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/m/msgpack-python/msgpack-python-0.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6c3d631b11ae393c0b30535bbd87005e diff --git a/metadata/md5-cache/dev-python/msgpack-0.3.0 b/metadata/md5-cache/dev-python/msgpack-0.3.0 index 7dad5f1db3db..aab5665fbbcc 100644 --- a/metadata/md5-cache/dev-python/msgpack-0.3.0 +++ b/metadata/md5-cache/dev-python/msgpack-0.3.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/m/msgpack-python/msgpack-python-0.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3b4d2c478ee6036aba0032bce8a5968d diff --git a/metadata/md5-cache/dev-python/munkres-1.0.5.4-r2 b/metadata/md5-cache/dev-python/munkres-1.0.5.4-r2 index 92c51de54de7..80bc66f4c286 100644 --- a/metadata/md5-cache/dev-python/munkres-1.0.5.4-r2 +++ b/metadata/md5-cache/dev-python/munkres-1.0.5.4-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/munkres/munkres-1.0.5.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=807f58db3b27babc16e101a05b530ff2 diff --git a/metadata/md5-cache/dev-python/mwlib-0.15.10 b/metadata/md5-cache/dev-python/mwlib-0.15.10 index a66b727b7724..2a2b0e0d5b36 100644 --- a/metadata/md5-cache/dev-python/mwlib-0.15.10 +++ b/metadata/md5-cache/dev-python/mwlib-0.15.10 @@ -10,5 +10,5 @@ RDEPEND=dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mwlib/mwlib-0.15.10.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=27d8b3534d8041e20bd216e3debf1ba5 diff --git a/metadata/md5-cache/dev-python/mwlib-0.15.8-r1 b/metadata/md5-cache/dev-python/mwlib-0.15.8-r1 index e6546db39554..4e9657b11ccd 100644 --- a/metadata/md5-cache/dev-python/mwlib-0.15.8-r1 +++ b/metadata/md5-cache/dev-python/mwlib-0.15.8-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mwlib/mwlib-0.15.8.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eb11c330ed330fadc900f3e39192b87c diff --git a/metadata/md5-cache/dev-python/mwlib-0.15.8-r3 b/metadata/md5-cache/dev-python/mwlib-0.15.8-r3 index 5acccb837428..e5353196c175 100644 --- a/metadata/md5-cache/dev-python/mwlib-0.15.8-r3 +++ b/metadata/md5-cache/dev-python/mwlib-0.15.8-r3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mwlib/mwlib-0.15.8.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=181e83e49ae63770d2e412fdedb44d41 diff --git a/metadata/md5-cache/dev-python/mwlib-ext-0.12.4-r1 b/metadata/md5-cache/dev-python/mwlib-ext-0.12.4-r1 index 79282644dffa..0a18b6389533 100644 --- a/metadata/md5-cache/dev-python/mwlib-ext-0.12.4-r1 +++ b/metadata/md5-cache/dev-python/mwlib-ext-0.12.4-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/reportlab-2.6[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mwlib.ext/mwlib.ext-0.12.4.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9b2704a5042cec6fbd2ecedd1a8a0284 diff --git a/metadata/md5-cache/dev-python/mwlib-ext-0.13.2 b/metadata/md5-cache/dev-python/mwlib-ext-0.13.2 index 4f62f8219780..1d2a36fec08a 100644 --- a/metadata/md5-cache/dev-python/mwlib-ext-0.13.2 +++ b/metadata/md5-cache/dev-python/mwlib-ext-0.13.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/reportlab-2.6[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mwlib.ext/mwlib.ext-0.13.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d2d01ca7e4d979c08249f2cbbc17b551 diff --git a/metadata/md5-cache/dev-python/mwlib-rl-0.14.3 b/metadata/md5-cache/dev-python/mwlib-rl-0.14.3 index 066a056dd4ca..99075cf539a2 100644 --- a/metadata/md5-cache/dev-python/mwlib-rl-0.14.3 +++ b/metadata/md5-cache/dev-python/mwlib-rl-0.14.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/mwlib-0.15.8-r1[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mwlib.rl/mwlib.rl-0.14.3.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ec054f62caa7b4a56f03132deb7dd86d diff --git a/metadata/md5-cache/dev-python/mygpoclient-1.7-r1 b/metadata/md5-cache/dev-python/mygpoclient-1.7-r1 index 501632a8801c..dc01daf8ea5a 100644 --- a/metadata/md5-cache/dev-python/mygpoclient-1.7-r1 +++ b/metadata/md5-cache/dev-python/mygpoclient-1.7-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/simplejson python_targets_python2_7? ( >=dev-lang/python-2.7. REQUIRED_USE=|| ( python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://thp.io/2010/mygpoclient/mygpoclient-1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f767c67413aabc6214c4fbc13d24b1ee diff --git a/metadata/md5-cache/dev-python/mysql-python-1.2.3-r1 b/metadata/md5-cache/dev-python/mysql-python-1.2.3-r1 index afdeb4e806c2..98c4047da355 100644 --- a/metadata/md5-cache/dev-python/mysql-python-1.2.3-r1 +++ b/metadata/md5-cache/dev-python/mysql-python-1.2.3-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/mysql python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/mysql-python/MySQL-python-1.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=db6e951bdda9fb5032c636223cce6d21 diff --git a/metadata/md5-cache/dev-python/natgrid-0.2.1-r1 b/metadata/md5-cache/dev-python/natgrid-0.2.1-r1 index 430e0910bf86..d73293851e17 100644 --- a/metadata/md5-cache/dev-python/natgrid-0.2.1-r1 +++ b/metadata/md5-cache/dev-python/natgrid-0.2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/matplotlib-0.98[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/matplotlib/natgrid-0.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0a5d04e9174b02ecbe875a4c897b8a73 diff --git a/metadata/md5-cache/dev-python/natgrid-0.2.1-r2 b/metadata/md5-cache/dev-python/natgrid-0.2.1-r2 index 5954565a7aa9..b006b4db46df 100644 --- a/metadata/md5-cache/dev-python/natgrid-0.2.1-r2 +++ b/metadata/md5-cache/dev-python/natgrid-0.2.1-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/matplotlib-0.98[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/matplotlib/natgrid-0.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4d3bdfe074e310b3b3248276f0f18b57 diff --git a/metadata/md5-cache/dev-python/ndg-httpsclient-0.3.2 b/metadata/md5-cache/dev-python/ndg-httpsclient-0.3.2 index 728060bc424d..d903c9a6b50d 100644 --- a/metadata/md5-cache/dev-python/ndg-httpsclient-0.3.2 +++ b/metadata/md5-cache/dev-python/ndg-httpsclient-0.3.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyopenssl[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/n/ndg-httpsclient/ndg_httpsclient-0.3.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ebd5dae4dc26b02723e6e37dbf5c6477 diff --git a/metadata/md5-cache/dev-python/netaddr-0.7.10-r1 b/metadata/md5-cache/dev-python/netaddr-0.7.10-r1 index 9eaa6c3514e1..2d243e1d9b46 100644 --- a/metadata/md5-cache/dev-python/netaddr-0.7.10-r1 +++ b/metadata/md5-cache/dev-python/netaddr-0.7.10-r1 @@ -10,5 +10,5 @@ RDEPEND=cli? ( >=dev-python/ipython-0.13.1-r1[python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://github/drkjam/netaddr/netaddr-0.7.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=caee8651bf8c5091567a2d0f383aaa5c diff --git a/metadata/md5-cache/dev-python/netaddr-0.7.10_p20130801 b/metadata/md5-cache/dev-python/netaddr-0.7.10_p20130801 index 2001411e743a..a016c70b7726 100644 --- a/metadata/md5-cache/dev-python/netaddr-0.7.10_p20130801 +++ b/metadata/md5-cache/dev-python/netaddr-0.7.10_p20130801 @@ -10,5 +10,5 @@ RDEPEND=cli? ( >=dev-python/ipython-0.13.1-r1[python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://gentoo/netaddr-0.7.10_p20130801.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=920d4d3ff6c9ef57c100e58201617be3 diff --git a/metadata/md5-cache/dev-python/netcdf4-python-1.0.4 b/metadata/md5-cache/dev-python/netcdf4-python-1.0.4 index 3cb3e5262cc7..93b2c82ebcd1 100644 --- a/metadata/md5-cache/dev-python/netcdf4-python-1.0.4 +++ b/metadata/md5-cache/dev-python/netcdf4-python-1.0.4 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/hdf5 sci-libs/netcdf[hdf] python_targets_python2_6? ( >=dev-lan REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://netcdf4-python.googlecode.com/files/netCDF4-1.0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=32fa4b977dcf16ff51d3b286b43bf3bf diff --git a/metadata/md5-cache/dev-python/netifaces-0.8-r1 b/metadata/md5-cache/dev-python/netifaces-0.8-r1 index da6341bf5dc6..8a52ed0e1b3c 100644 --- a/metadata/md5-cache/dev-python/netifaces-0.8-r1 +++ b/metadata/md5-cache/dev-python/netifaces-0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://alastairs-place.net/projects/netifaces/netifaces-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=03e304521051aef282cbb427893b51ce diff --git a/metadata/md5-cache/dev-python/netlib-0.9 b/metadata/md5-cache/dev-python/netlib-0.9 index 22d1ae60b51c..3b63d80cf8d9 100644 --- a/metadata/md5-cache/dev-python/netlib-0.9 +++ b/metadata/md5-cache/dev-python/netlib-0.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/n/netlib/netlib-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b148fbb4ba60a16f0b386b6ffa670f95 diff --git a/metadata/md5-cache/dev-python/netlib-0.9.1 b/metadata/md5-cache/dev-python/netlib-0.9.1 index 35ee6a337045..0f6d3c5915c3 100644 --- a/metadata/md5-cache/dev-python/netlib-0.9.1 +++ b/metadata/md5-cache/dev-python/netlib-0.9.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/n/netlib/netlib-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a351fcffcbc1fd259a121022c0e72872 diff --git a/metadata/md5-cache/dev-python/netlib-0.9.2 b/metadata/md5-cache/dev-python/netlib-0.9.2 index dd9af3cd57bd..24ad1864bc26 100644 --- a/metadata/md5-cache/dev-python/netlib-0.9.2 +++ b/metadata/md5-cache/dev-python/netlib-0.9.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/n/netlib/netlib-0.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e129dfcf2c3b3e53c8b349ec8d9713d5 diff --git a/metadata/md5-cache/dev-python/networkx-1.6-r1 b/metadata/md5-cache/dev-python/networkx-1.6-r1 index f3833b67d4fb..847650ee2c55 100644 --- a/metadata/md5-cache/dev-python/networkx-1.6-r1 +++ b/metadata/md5-cache/dev-python/networkx-1.6-r1 @@ -10,5 +10,5 @@ RDEPEND=examples? ( dev-python/matplotlib[python_targets_python2_6(-)?,python_ta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/n/networkx/networkx-1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6ac4be9fd39c2ab2815f26eaf5a39229 diff --git a/metadata/md5-cache/dev-python/networkx-1.7-r2 b/metadata/md5-cache/dev-python/networkx-1.7-r2 index a72442ca7bd5..fba338bb6f42 100644 --- a/metadata/md5-cache/dev-python/networkx-1.7-r2 +++ b/metadata/md5-cache/dev-python/networkx-1.7-r2 @@ -10,5 +10,5 @@ RDEPEND=examples? ( dev-python/matplotlib[python_targets_python2_6(-)?,python_ta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/n/networkx/networkx-1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3be2cfea207aee81d7563f24a663b30f diff --git a/metadata/md5-cache/dev-python/networkx-1.8.1 b/metadata/md5-cache/dev-python/networkx-1.8.1 index 4845b9a7ab69..5a205809cbac 100644 --- a/metadata/md5-cache/dev-python/networkx-1.8.1 +++ b/metadata/md5-cache/dev-python/networkx-1.8.1 @@ -10,5 +10,5 @@ RDEPEND=examples? ( dev-python/matplotlib[python_targets_python2_6(-)?,python_ta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/n/networkx/networkx-1.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bdab16d0150c3c3ecd9c6acc08d17168 diff --git a/metadata/md5-cache/dev-python/nevow-0.10.0-r1 b/metadata/md5-cache/dev-python/nevow-0.10.0-r1 index 7de5d9b39b43..78033e9ba816 100644 --- a/metadata/md5-cache/dev-python/nevow-0.10.0-r1 +++ b/metadata/md5-cache/dev-python/nevow-0.10.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/twisted-core[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/N/Nevow/Nevow-0.10.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8b37f4a0413f2157232017a4d221a493 diff --git a/metadata/md5-cache/dev-python/nose-1.1.2-r1 b/metadata/md5-cache/dev-python/nose-1.1.2-r1 index 05091a679eae..8f49ea5988d0 100644 --- a/metadata/md5-cache/dev-python/nose-1.1.2-r1 +++ b/metadata/md5-cache/dev-python/nose-1.1.2-r1 @@ -10,5 +10,5 @@ RDEPEND=coverage? ( dev-python/coverage[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/n/nose/nose-1.1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=758a2ab5eebc751097f84c05ae58e23c diff --git a/metadata/md5-cache/dev-python/nose-1.2.1 b/metadata/md5-cache/dev-python/nose-1.2.1 index 6cf853066b81..fac2c07c49bf 100644 --- a/metadata/md5-cache/dev-python/nose-1.2.1 +++ b/metadata/md5-cache/dev-python/nose-1.2.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/coverage[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/n/nose/nose-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a04bbee6f6ee76a40d1c8fb43f496213 diff --git a/metadata/md5-cache/dev-python/nose-1.2.1_p2012 b/metadata/md5-cache/dev-python/nose-1.2.1_p2012 index 7e5170ea6307..870c3ce3856a 100644 --- a/metadata/md5-cache/dev-python/nose-1.2.1_p2012 +++ b/metadata/md5-cache/dev-python/nose-1.2.1_p2012 @@ -10,5 +10,5 @@ RDEPEND=dev-python/coverage[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/nose-devs/nose/archive/e879960507d51a.tar.gz -> nose-1.2.1_p2012.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=b28108b4c4c639c50154ff8d5299b340 diff --git a/metadata/md5-cache/dev-python/nose-1.3.0 b/metadata/md5-cache/dev-python/nose-1.3.0 index 021417823114..a28a4caf62e6 100644 --- a/metadata/md5-cache/dev-python/nose-1.3.0 +++ b/metadata/md5-cache/dev-python/nose-1.3.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/coverage[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/n/nose/nose-1.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2c83a2b104cc654af9af3e340ff5501a diff --git a/metadata/md5-cache/dev-python/nose-9999 b/metadata/md5-cache/dev-python/nose-9999 index 18e06bba7272..f5a0d1119e87 100644 --- a/metadata/md5-cache/dev-python/nose-9999 +++ b/metadata/md5-cache/dev-python/nose-9999 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/coverage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15954bd6f7a6e985c6caa9aa62c72f5d diff --git a/metadata/md5-cache/dev-python/nose-cover3-0.1.0-r1 b/metadata/md5-cache/dev-python/nose-cover3-0.1.0-r1 index eff4d757c19c..a5377da59b8c 100644 --- a/metadata/md5-cache/dev-python/nose-cover3-0.1.0-r1 +++ b/metadata/md5-cache/dev-python/nose-cover3-0.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/nose[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/n/nose-cover3/nose-cover3-0.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a2a1a11d66dd3d190056c2efb9fe5d1d diff --git a/metadata/md5-cache/dev-python/nose-exclude-0.1.9 b/metadata/md5-cache/dev-python/nose-exclude-0.1.9 index 573718f9b933..bc20c44fcb26 100644 --- a/metadata/md5-cache/dev-python/nose-exclude-0.1.9 +++ b/metadata/md5-cache/dev-python/nose-exclude-0.1.9 @@ -10,5 +10,5 @@ RDEPEND=dev-python/nose[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/n/nose-exclude/nose-exclude-0.1.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1d5ebd999be2abadfe04676ee042232b diff --git a/metadata/md5-cache/dev-python/nosehtmloutput-0.0.4-r1 b/metadata/md5-cache/dev-python/nosehtmloutput-0.0.4-r1 index bcab51098ca7..627bb20d4834 100644 --- a/metadata/md5-cache/dev-python/nosehtmloutput-0.0.4-r1 +++ b/metadata/md5-cache/dev-python/nosehtmloutput-0.0.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/nose[python_targets_python2_6(-)?,python_targets_python2_7(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/n/nosehtmloutput/nosehtmloutput-0.0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6a9f5a70d91d8793441ecf5c58bda89a diff --git a/metadata/md5-cache/dev-python/nosexcover-1.0.7-r1 b/metadata/md5-cache/dev-python/nosexcover-1.0.7-r1 index 624c7e629955..29906d2eba04 100644 --- a/metadata/md5-cache/dev-python/nosexcover-1.0.7-r1 +++ b/metadata/md5-cache/dev-python/nosexcover-1.0.7-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/n/nosexcover/nosexcover-1.0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2e357bb54278298eb1b107e65238808f diff --git a/metadata/md5-cache/dev-python/nosexcover-1.0.8 b/metadata/md5-cache/dev-python/nosexcover-1.0.8 index 12d7251e2cd6..623005611fdc 100644 --- a/metadata/md5-cache/dev-python/nosexcover-1.0.8 +++ b/metadata/md5-cache/dev-python/nosexcover-1.0.8 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/n/nosexcover/nosexcover-1.0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1ed54546b5531c3cb61145f9d4d4679a diff --git a/metadata/md5-cache/dev-python/numdisplay-1.6.0-r1 b/metadata/md5-cache/dev-python/numdisplay-1.6.0-r1 index 6669ab86b8f0..c5430c53b6bb 100644 --- a/metadata/md5-cache/dev-python/numdisplay-1.6.0-r1 +++ b/metadata/md5-cache/dev-python/numdisplay-1.6.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://stsdas.stsci.edu/download/numdisplay/numdisplay-1.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c1db614fce7f8431148841eea5b5c1dc diff --git a/metadata/md5-cache/dev-python/numexpr-2.1 b/metadata/md5-cache/dev-python/numexpr-2.1 index 3dfafaaff107..cba0b882c3b8 100644 --- a/metadata/md5-cache/dev-python/numexpr-2.1 +++ b/metadata/md5-cache/dev-python/numexpr-2.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/numpy-1.7.1[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://numexpr.googlecode.com/files/numexpr-2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0acf3f81e1cf9157cb309ad6a79c6d9b diff --git a/metadata/md5-cache/dev-python/numexpr-2.2 b/metadata/md5-cache/dev-python/numexpr-2.2 index 45df7b7cd53b..cecc2f527ad5 100644 --- a/metadata/md5-cache/dev-python/numexpr-2.2 +++ b/metadata/md5-cache/dev-python/numexpr-2.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/numpy-1.7.1[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://numexpr.googlecode.com/files/numexpr-2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9e6af351db8c1394188d497077dc9270 diff --git a/metadata/md5-cache/dev-python/numexpr-2.2.2 b/metadata/md5-cache/dev-python/numexpr-2.2.2 index 49d03d4af1ce..23c39ecff247 100644 --- a/metadata/md5-cache/dev-python/numexpr-2.2.2 +++ b/metadata/md5-cache/dev-python/numexpr-2.2.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/numpy-1.7.1[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://numexpr.googlecode.com/files/numexpr-2.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=991ea267040637c821b9d3ce34a43a99 diff --git a/metadata/md5-cache/dev-python/numpy-1.6.2-r2 b/metadata/md5-cache/dev-python/numpy-1.6.2-r2 index 6cac0ed8a996..316524e25916 100644 --- a/metadata/md5-cache/dev-python/numpy-1.6.2-r2 +++ b/metadata/md5-cache/dev-python/numpy-1.6.2-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://sourceforge/numpy/numpy-1.6.2.tar.gz doc? ( http://docs.scipy.org/doc/numpy-1.6.0/numpy-html.zip -> numpy-1.6.0-html.zip http://docs.scipy.org/doc/numpy-1.6.0/numpy-ref.pdf -> numpy-1.6.0-ref.pdf http://docs.scipy.org/doc/numpy-1.6.0/numpy-user.pdf -> numpy-1.6.0-user.pdf ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=cb1fe7c7f051409817a6e6ff090ca47c diff --git a/metadata/md5-cache/dev-python/numpy-1.7.1 b/metadata/md5-cache/dev-python/numpy-1.7.1 index 7b9d0308711e..e5cce2f52d4c 100644 --- a/metadata/md5-cache/dev-python/numpy-1.7.1 +++ b/metadata/md5-cache/dev-python/numpy-1.7.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/numpy/numpy-1.7.1.tar.gz doc? ( http://docs.scipy.org/doc/numpy-1.7.1/numpy-html-1.7.0.zip http://docs.scipy.org/doc/numpy-1.7.1/numpy-ref-1.7.0.pdf http://docs.scipy.org/doc/numpy-1.7.1/numpy-user-1.7.0.pdf ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=e3241f1b2e04008abab3cb099e7ba71f diff --git a/metadata/md5-cache/dev-python/numpydoc-0.4-r1 b/metadata/md5-cache/dev-python/numpydoc-0.4-r1 index b711dc27645a..256c4a642963 100644 --- a/metadata/md5-cache/dev-python/numpydoc-0.4-r1 +++ b/metadata/md5-cache/dev-python/numpydoc-0.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/n/numpydoc/numpydoc-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=088e4ebc9801f17879d71670e5932a35 diff --git a/metadata/md5-cache/dev-python/oauth-1.0.1-r1 b/metadata/md5-cache/dev-python/oauth-1.0.1-r1 index f3fc29791cbc..45c0fb5b5f3c 100644 --- a/metadata/md5-cache/dev-python/oauth-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/oauth-1.0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/o/oauth/oauth-1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b31274d87536d2921e5a8d188bcc7138 diff --git a/metadata/md5-cache/dev-python/oauth2-1.5.211-r1 b/metadata/md5-cache/dev-python/oauth2-1.5.211-r1 index 313f31f8d41b..9f157ad7d735 100644 --- a/metadata/md5-cache/dev-python/oauth2-1.5.211-r1 +++ b/metadata/md5-cache/dev-python/oauth2-1.5.211-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/httplib2[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/oauth2/oauth2-1.5.211.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=62e385b1e4da523b69f6f2716462478c diff --git a/metadata/md5-cache/dev-python/oauthlib-0.3.6 b/metadata/md5-cache/dev-python/oauthlib-0.3.6 index 3e7cfcd2a92f..0f60e2533276 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.3.6 +++ b/metadata/md5-cache/dev-python/oauthlib-0.3.6 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.3.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ae0f9559008e3fcf82b72422d21a1ce diff --git a/metadata/md5-cache/dev-python/oauthlib-0.3.7 b/metadata/md5-cache/dev-python/oauthlib-0.3.7 index 2a09ffe05b91..a2d4ebac51dd 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.3.7 +++ b/metadata/md5-cache/dev-python/oauthlib-0.3.7 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.3.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=801b304f1ab9198cbaca17ebde034a76 diff --git a/metadata/md5-cache/dev-python/oauthlib-0.3.8 b/metadata/md5-cache/dev-python/oauthlib-0.3.8 index d5157e71ec31..911e5d89ffd2 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.3.8 +++ b/metadata/md5-cache/dev-python/oauthlib-0.3.8 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.3.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=52eb7989f03372abd6547de873111452 diff --git a/metadata/md5-cache/dev-python/oauthlib-0.4.0 b/metadata/md5-cache/dev-python/oauthlib-0.4.0 index 991bbed6fdf1..91fb29e6a96b 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.4.0 +++ b/metadata/md5-cache/dev-python/oauthlib-0.4.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0dcc956db2e336105d80b67991eb0a4a diff --git a/metadata/md5-cache/dev-python/oauthlib-0.4.1 b/metadata/md5-cache/dev-python/oauthlib-0.4.1 index c207f1c50d0d..6e8ebda5b5f3 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.4.1 +++ b/metadata/md5-cache/dev-python/oauthlib-0.4.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.4.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bd94f7abd2617a39d3858cd147db3505 diff --git a/metadata/md5-cache/dev-python/oauthlib-0.4.2 b/metadata/md5-cache/dev-python/oauthlib-0.4.2 index 6b46bac4dc41..d172575b888f 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.4.2 +++ b/metadata/md5-cache/dev-python/oauthlib-0.4.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.4.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4c47a61786a73d382795599e267a97fb diff --git a/metadata/md5-cache/dev-python/oauthlib-0.5.0 b/metadata/md5-cache/dev-python/oauthlib-0.5.0 index 75db6996bca1..89744d0e2508 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.5.0 +++ b/metadata/md5-cache/dev-python/oauthlib-0.5.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2ddc642d3bc7517aae037eb21acc04f5 diff --git a/metadata/md5-cache/dev-python/oauthlib-0.5.1 b/metadata/md5-cache/dev-python/oauthlib-0.5.1 index dbf20b3f0cd9..9dc2c32a726e 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.5.1 +++ b/metadata/md5-cache/dev-python/oauthlib-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=216e02044a80d6cc98a5c714942e8e41 diff --git a/metadata/md5-cache/dev-python/oauthlib-0.6.0 b/metadata/md5-cache/dev-python/oauthlib-0.6.0 index 8e4fa0ef3455..e9d257f8fccc 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.6.0 +++ b/metadata/md5-cache/dev-python/oauthlib-0.6.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3b3b7b6cc983b2cdc0fad21fdea10ca0 diff --git a/metadata/md5-cache/dev-python/oct2py-0.4.0-r1 b/metadata/md5-cache/dev-python/oct2py-0.4.0-r1 index 298e17de6393..a0c9d9a35997 100644 --- a/metadata/md5-cache/dev-python/oct2py-0.4.0-r1 +++ b/metadata/md5-cache/dev-python/oct2py-0.4.0-r1 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/scipy[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/oct2py/oct2py-0.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=31c657f9fa9b706126a61333e7d4b993 diff --git a/metadata/md5-cache/dev-python/oct2py-1.0.0 b/metadata/md5-cache/dev-python/oct2py-1.0.0 index 785dc661a1ed..a63f3896561b 100644 --- a/metadata/md5-cache/dev-python/oct2py-1.0.0 +++ b/metadata/md5-cache/dev-python/oct2py-1.0.0 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/scipy[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/o/oct2py/oct2py-1.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0eb4ae032611bb3f8fedda3c7fd9d099 diff --git a/metadata/md5-cache/dev-python/odfpy-0.9.6-r1 b/metadata/md5-cache/dev-python/odfpy-0.9.6-r1 index 1f4e7ea135cb..f1e103aaea7d 100644 --- a/metadata/md5-cache/dev-python/odfpy-0.9.6-r1 +++ b/metadata/md5-cache/dev-python/odfpy-0.9.6-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/odfpy/odfpy-0.9.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7c25636c63f22044370285d7f046f505 diff --git a/metadata/md5-cache/dev-python/oosuite-0.45 b/metadata/md5-cache/dev-python/oosuite-0.45 index 912383619931..cd245fd77e9d 100644 --- a/metadata/md5-cache/dev-python/oosuite-0.45 +++ b/metadata/md5-cache/dev-python/oosuite-0.45 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://openopt.org/images/f/f3/OOSuite.zip -> OOSuite-0.45.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e8bda3d8425c820da359abfc44dfed10 diff --git a/metadata/md5-cache/dev-python/oosuite-0.50 b/metadata/md5-cache/dev-python/oosuite-0.50 index 79771cac8cc4..6020426c8bd8 100644 --- a/metadata/md5-cache/dev-python/oosuite-0.50 +++ b/metadata/md5-cache/dev-python/oosuite-0.50 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://openopt.org/images/f/f3/OOSuite.zip -> OOSuite-0.50.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2ea71b800410c1506ed4a7f1765e852e diff --git a/metadata/md5-cache/dev-python/openpyxl-1.6.2 b/metadata/md5-cache/dev-python/openpyxl-1.6.2 index 64af9ad81af2..4a174668b07c 100644 --- a/metadata/md5-cache/dev-python/openpyxl-1.6.2 +++ b/metadata/md5-cache/dev-python/openpyxl-1.6.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=https://bitbucket.org/ericgazoni/openpyxl/get/1.6.2.tar.bz2 -> openpyxl-1.6.2.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=d2d089a396007cbcae3a2e21c5341122 diff --git a/metadata/md5-cache/dev-python/openstack-nose-plugin-0.11-r2 b/metadata/md5-cache/dev-python/openstack-nose-plugin-0.11-r2 index 70fb89a53eea..7adaee5f8f44 100644 --- a/metadata/md5-cache/dev-python/openstack-nose-plugin-0.11-r2 +++ b/metadata/md5-cache/dev-python/openstack-nose-plugin-0.11-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/nose[python_targets_python2_7(-)?,python_targets_pypy2_0(-)?, REQUIRED_USE=|| ( python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/o/openstack.nose_plugin/openstack.nose_plugin-0.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=096422cfbe7ead539198dbb47e18275e diff --git a/metadata/md5-cache/dev-python/optcomplete-1.2-r1 b/metadata/md5-cache/dev-python/optcomplete-1.2-r1 index b194172b64ab..e5be63f2b42e 100644 --- a/metadata/md5-cache/dev-python/optcomplete-1.2-r1 +++ b/metadata/md5-cache/dev-python/optcomplete-1.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://furius.ca/downloads/optcomplete/releases/optcomplete-1.2.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ced1bf21de581b19018c55cf4d569014 diff --git a/metadata/md5-cache/dev-python/ordereddict-1.1 b/metadata/md5-cache/dev-python/ordereddict-1.1 index e0c8eac6f1bf..c6999e96b017 100644 --- a/metadata/md5-cache/dev-python/ordereddict-1.1 +++ b/metadata/md5-cache/dev-python/ordereddict-1.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_6 ) SLOT=0 SRC_URI=mirror://pypi/o/ordereddict/ordereddict-1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b6bbf376c6428ce214c44eff3ab1bfac diff --git a/metadata/md5-cache/dev-python/os-diskconfig-python-novaclient-ext-0.1.1 b/metadata/md5-cache/dev-python/os-diskconfig-python-novaclient-ext-0.1.1 index 5bb5e0621cf5..eb0ec083b9f7 100644 --- a/metadata/md5-cache/dev-python/os-diskconfig-python-novaclient-ext-0.1.1 +++ b/metadata/md5-cache/dev-python/os-diskconfig-python-novaclient-ext-0.1.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/os_diskconfig_python_novaclient_ext/os_diskconfig_python_novaclient_ext-0.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2b95c63261da50dba14855e192cfd9ae diff --git a/metadata/md5-cache/dev-python/os-diskconfig-python-novaclient-ext-9999 b/metadata/md5-cache/dev-python/os-diskconfig-python-novaclient-ext-9999 index 0055ca56ead1..24a6964bedaf 100644 --- a/metadata/md5-cache/dev-python/os-diskconfig-python-novaclient-ext-9999 +++ b/metadata/md5-cache/dev-python/os-diskconfig-python-novaclient-ext-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a6ec6751cb4dcbaee83c65102b7b5413 diff --git a/metadata/md5-cache/dev-python/os-networksv2-python-novaclient-ext-0.21 b/metadata/md5-cache/dev-python/os-networksv2-python-novaclient-ext-0.21 index 0014a27759bb..202a3e48aebb 100644 --- a/metadata/md5-cache/dev-python/os-networksv2-python-novaclient-ext-0.21 +++ b/metadata/md5-cache/dev-python/os-networksv2-python-novaclient-ext-0.21 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/os_networksv2_python_novaclient_ext/os_networksv2_python_novaclient_ext-0.21.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=09879a843d9f4a4f8715d84aa2529791 diff --git a/metadata/md5-cache/dev-python/os-networksv2-python-novaclient-ext-9999 b/metadata/md5-cache/dev-python/os-networksv2-python-novaclient-ext-9999 index dcd4692db274..7a541adf0cbd 100644 --- a/metadata/md5-cache/dev-python/os-networksv2-python-novaclient-ext-9999 +++ b/metadata/md5-cache/dev-python/os-networksv2-python-novaclient-ext-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b88a5bb6cd884962419d438e54ce7692 diff --git a/metadata/md5-cache/dev-python/oslo-config-1.1.0 b/metadata/md5-cache/dev-python/oslo-config-1.1.0 index 31d55c445127..a03290539fc5 100644 --- a/metadata/md5-cache/dev-python/oslo-config-1.1.0 +++ b/metadata/md5-cache/dev-python/oslo-config-1.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/o/oslo.config/oslo.config-1.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7bca11fab9c4100ba088b71c5693cbdd diff --git a/metadata/md5-cache/dev-python/oslo-config-1.1.1 b/metadata/md5-cache/dev-python/oslo-config-1.1.1 index d7a987f56304..1d41ea38bb07 100644 --- a/metadata/md5-cache/dev-python/oslo-config-1.1.1 +++ b/metadata/md5-cache/dev-python/oslo-config-1.1.1 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.config/oslo.config-1.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b5eb8db7d1275af7e510ebe5d515b937 diff --git a/metadata/md5-cache/dev-python/oslo-config-1.2.0 b/metadata/md5-cache/dev-python/oslo-config-1.2.0 index 2486f2f26320..4a36e5c8ad8c 100644 --- a/metadata/md5-cache/dev-python/oslo-config-1.2.0 +++ b/metadata/md5-cache/dev-python/oslo-config-1.2.0 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_targ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.config/oslo.config-1.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8385e639acc2a00a11a269a032ee0bfd diff --git a/metadata/md5-cache/dev-python/oslo-sphinx-1.0 b/metadata/md5-cache/dev-python/oslo-sphinx-1.0 index 747cc3f3a5c9..103a8b7983be 100644 --- a/metadata/md5-cache/dev-python/oslo-sphinx-1.0 +++ b/metadata/md5-cache/dev-python/oslo-sphinx-1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/oslo.sphinx/oslo.sphinx-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=701702279773bf5c4160ef01eed042ff diff --git a/metadata/md5-cache/dev-python/pandas-0.12.0 b/metadata/md5-cache/dev-python/pandas-0.12.0 index 8206842532da..fa55e29909cd 100644 --- a/metadata/md5-cache/dev-python/pandas-0.12.0 +++ b/metadata/md5-cache/dev-python/pandas-0.12.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=excel? ( !python_targets_python3_2 ) doc? ( !python_targets_python3_2 ) R? ( !python_targets_python3_2 ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pandas/pandas-0.12.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=65af78b070cbe8243309264e2b9ad170 diff --git a/metadata/md5-cache/dev-python/paramiko-1.10.1 b/metadata/md5-cache/dev-python/paramiko-1.10.1 index eacc957294b9..5e69fddf85ed 100644 --- a/metadata/md5-cache/dev-python/paramiko-1.10.1 +++ b/metadata/md5-cache/dev-python/paramiko-1.10.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.1[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/paramiko/paramiko-1.10.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5a3f0238959d98fce4ec261337ed645d diff --git a/metadata/md5-cache/dev-python/paramiko-1.11.0 b/metadata/md5-cache/dev-python/paramiko-1.11.0 index 1f9b1e646da5..c48e47a0d08e 100644 --- a/metadata/md5-cache/dev-python/paramiko-1.11.0 +++ b/metadata/md5-cache/dev-python/paramiko-1.11.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.1[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/paramiko/paramiko-1.11.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d424d514cd12b661b9be3040b7f9245a diff --git a/metadata/md5-cache/dev-python/passlib-1.6.1 b/metadata/md5-cache/dev-python/passlib-1.6.1 index f94480f64eb1..a5464ec068fd 100644 --- a/metadata/md5-cache/dev-python/passlib-1.6.1 +++ b/metadata/md5-cache/dev-python/passlib-1.6.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/passlib/passlib-1.6.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=527d4a499e9359d6d9902b0f8454cd44 diff --git a/metadata/md5-cache/dev-python/paste-1.7.5.1-r1 b/metadata/md5-cache/dev-python/paste-1.7.5.1-r1 index 30227541e14a..9bc2d1b988c5 100644 --- a/metadata/md5-cache/dev-python/paste-1.7.5.1-r1 +++ b/metadata/md5-cache/dev-python/paste-1.7.5.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/P/Paste/Paste-1.7.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=be3fc9a177821555bca541b3e65cf29d diff --git a/metadata/md5-cache/dev-python/pastedeploy-1.5.0-r1 b/metadata/md5-cache/dev-python/pastedeploy-1.5.0-r1 index f5327dd3d908..b976852929c9 100644 --- a/metadata/md5-cache/dev-python/pastedeploy-1.5.0-r1 +++ b/metadata/md5-cache/dev-python/pastedeploy-1.5.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/paste[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/P/PasteDeploy/PasteDeploy-1.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5c311fed0112a7522b044f9160816f05 diff --git a/metadata/md5-cache/dev-python/pastescript-1.7.5-r2 b/metadata/md5-cache/dev-python/pastescript-1.7.5-r2 index c57a5c53300d..2217ea88bbcb 100644 --- a/metadata/md5-cache/dev-python/pastescript-1.7.5-r2 +++ b/metadata/md5-cache/dev-python/pastescript-1.7.5-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/P/PasteScript/PasteScript-1.7.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=93260e6bf1bcbfaad064d2470370cb15 diff --git a/metadata/md5-cache/dev-python/patsy-0.2.0 b/metadata/md5-cache/dev-python/patsy-0.2.0 index cd71e8d1beb8..12df9bd1a811 100644 --- a/metadata/md5-cache/dev-python/patsy-0.2.0 +++ b/metadata/md5-cache/dev-python/patsy-0.2.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/patsy/patsy-0.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d3d1b905f9925c856925b693d081d97c diff --git a/metadata/md5-cache/dev-python/paver-1.1.1-r1 b/metadata/md5-cache/dev-python/paver-1.1.1-r1 index c866484f6552..8bdc8ebdda08 100644 --- a/metadata/md5-cache/dev-python/paver-1.1.1-r1 +++ b/metadata/md5-cache/dev-python/paver-1.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/P/Paver/Paver-1.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b1478f47a1c2fc6e73dc73792d37fc56 diff --git a/metadata/md5-cache/dev-python/paver-1.2.0 b/metadata/md5-cache/dev-python/paver-1.2.0 index f162b56dcb5d..eb7f9a75b815 100644 --- a/metadata/md5-cache/dev-python/paver-1.2.0 +++ b/metadata/md5-cache/dev-python/paver-1.2.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/P/Paver/Paver-1.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=177ac94f3fdb182dfcdc8547d2e1d3c3 diff --git a/metadata/md5-cache/dev-python/paver-1.2.1 b/metadata/md5-cache/dev-python/paver-1.2.1 index d8db59f0a493..932855be980b 100644 --- a/metadata/md5-cache/dev-python/paver-1.2.1 +++ b/metadata/md5-cache/dev-python/paver-1.2.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/P/Paver/Paver-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e2bd3b785456330354310bc75ee92f1f diff --git a/metadata/md5-cache/dev-python/pbr-0.5.21 b/metadata/md5-cache/dev-python/pbr-0.5.21 index bd4883fcb004..1b7e7c2c65f2 100644 --- a/metadata/md5-cache/dev-python/pbr-0.5.21 +++ b/metadata/md5-cache/dev-python/pbr-0.5.21 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pbr/pbr-0.5.21.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=64a78c7ddbb82b7959016d4ba7f27913 diff --git a/metadata/md5-cache/dev-python/pdfrw-0.1 b/metadata/md5-cache/dev-python/pdfrw-0.1 index bc32aabbdddf..adf7f02c22cf 100644 --- a/metadata/md5-cache/dev-python/pdfrw-0.1 +++ b/metadata/md5-cache/dev-python/pdfrw-0.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pdfrw/pdfrw-0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=007c2d122d8e1de711fd72c4a22b35c0 diff --git a/metadata/md5-cache/dev-python/peak-rules-0.5 b/metadata/md5-cache/dev-python/peak-rules-0.5 index 965215f437d6..1a6ce667cf42 100644 --- a/metadata/md5-cache/dev-python/peak-rules-0.5 +++ b/metadata/md5-cache/dev-python/peak-rules-0.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://peak.telecommunity.com/snapshots/PEAK-Rules-0.5a1.dev-r2713.tar.gz -> peak-rules-0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f9daac3170e1e797cfd921e5a714d452 diff --git a/metadata/md5-cache/dev-python/peewee-2.1.4 b/metadata/md5-cache/dev-python/peewee-2.1.4 index 04a8d0143478..65fb4d803ab4 100644 --- a/metadata/md5-cache/dev-python/peewee-2.1.4 +++ b/metadata/md5-cache/dev-python/peewee-2.1.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/coleifer/peewee/archive/2.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9441f09d8b0768d333b7e3e4a96b7e37 diff --git a/metadata/md5-cache/dev-python/pep8-1.4.5 b/metadata/md5-cache/dev-python/pep8-1.4.5 index 0ac0138da2d1..b2e8ef173876 100644 --- a/metadata/md5-cache/dev-python/pep8-1.4.5 +++ b/metadata/md5-cache/dev-python/pep8-1.4.5 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pep8/pep8-1.4.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4379b233b0d3c7d8d3292985a1055e27 diff --git a/metadata/md5-cache/dev-python/pep8-1.4.6 b/metadata/md5-cache/dev-python/pep8-1.4.6 index eef2a908b40d..c4617fff915a 100644 --- a/metadata/md5-cache/dev-python/pep8-1.4.6 +++ b/metadata/md5-cache/dev-python/pep8-1.4.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pep8/pep8-1.4.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9fe1c6e6b0407ea30b182cdfbc9bd605 diff --git a/metadata/md5-cache/dev-python/peppercorn-0.4-r1 b/metadata/md5-cache/dev-python/peppercorn-0.4-r1 index 23c9f78bebf0..d925d0392cc5 100644 --- a/metadata/md5-cache/dev-python/peppercorn-0.4-r1 +++ b/metadata/md5-cache/dev-python/peppercorn-0.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/peppercorn/peppercorn-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=92528c7aeccda56a33188bbd04ad0af2 diff --git a/metadata/md5-cache/dev-python/pexpect-2.4-r1 b/metadata/md5-cache/dev-python/pexpect-2.4-r1 index c512c6cd0cef..78877f7b2f44 100644 --- a/metadata/md5-cache/dev-python/pexpect-2.4-r1 +++ b/metadata/md5-cache/dev-python/pexpect-2.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pexpect/pexpect-2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9794e3282617cda562371d771ca5137d diff --git a/metadata/md5-cache/dev-python/pgmagick-0.5.6 b/metadata/md5-cache/dev-python/pgmagick-0.5.6 index ab6d95fde4e2..290d3865c3a4 100644 --- a/metadata/md5-cache/dev-python/pgmagick-0.5.6 +++ b/metadata/md5-cache/dev-python/pgmagick-0.5.6 @@ -10,5 +10,5 @@ RDEPEND=media-gfx/graphicsmagick[cxx] dev-libs/boost:=[python,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pgmagick/pgmagick-0.5.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2e9775c9a6298a6541a950aa8ca91623 diff --git a/metadata/md5-cache/dev-python/pgmagick-0.5.7 b/metadata/md5-cache/dev-python/pgmagick-0.5.7 index 885f355c7f48..83317e5fe9f4 100644 --- a/metadata/md5-cache/dev-python/pgmagick-0.5.7 +++ b/metadata/md5-cache/dev-python/pgmagick-0.5.7 @@ -10,5 +10,5 @@ RDEPEND=media-gfx/graphicsmagick[cxx] dev-libs/boost:=[python,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pgmagick/pgmagick-0.5.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ce3c7965872f810c67f2f19193fd33f diff --git a/metadata/md5-cache/dev-python/pillow-2.0.0-r1 b/metadata/md5-cache/dev-python/pillow-2.0.0-r1 index 77b652549c90..0b8de243e06f 100644 --- a/metadata/md5-cache/dev-python/pillow-2.0.0-r1 +++ b/metadata/md5-cache/dev-python/pillow-2.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND=truetype? ( media-libs/freetype:2= ) jpeg? ( virtual/jpeg ) lcms? ( medi REQUIRED_USE=test? ( jpeg tiff zlib ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/P/Pillow/Pillow-2.0.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7327cbe8e4d77dfb0794c36013b6604b diff --git a/metadata/md5-cache/dev-python/pillow-2.1.0 b/metadata/md5-cache/dev-python/pillow-2.1.0 index 9080cc304c9f..ed3d6f3d3fee 100644 --- a/metadata/md5-cache/dev-python/pillow-2.1.0 +++ b/metadata/md5-cache/dev-python/pillow-2.1.0 @@ -4,11 +4,11 @@ DESCRIPTION=Python Imaging Library (fork) EAPI=5 HOMEPAGE=https://github.com/python-imaging/Pillow https://pypi.python.org/pypi/Pillow IUSE=doc examples jpeg lcms scanner test tiff tk truetype webp zlib python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris LICENSE=HPND RDEPEND=truetype? ( media-libs/freetype:2= ) jpeg? ( virtual/jpeg ) lcms? ( media-libs/lcms:0= ) scanner? ( media-gfx/sane-backends:0= ) tiff? ( media-libs/tiff:0= ) webp? ( media-libs/libwebp:0= ) zlib? ( sys-libs/zlib:0= ) !dev-python/imaging python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[tk?] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[tk?] ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2[tk?] ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3[tk?] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/P/Pillow/Pillow-2.1.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=941806d802d5dbb9e96fbff1df5554ec +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=60a269dc2320810aace120d73ca2fa6c diff --git a/metadata/md5-cache/dev-python/pip-1.3.1 b/metadata/md5-cache/dev-python/pip-1.3.1 index 46f846c46a37..9dda2aa6182e 100644 --- a/metadata/md5-cache/dev-python/pip-1.3.1 +++ b/metadata/md5-cache/dev-python/pip-1.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pip/pip-1.3.1.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=074fc8cc188f3d07bcd267adfae18b6b diff --git a/metadata/md5-cache/dev-python/pip-1.4 b/metadata/md5-cache/dev-python/pip-1.4 index 2ff606a94cdd..d399d73806a9 100644 --- a/metadata/md5-cache/dev-python/pip-1.4 +++ b/metadata/md5-cache/dev-python/pip-1.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pip/pip-1.4.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0c9b6988c7d32bd453db1ff9ec833ffb diff --git a/metadata/md5-cache/dev-python/pip-1.4.1 b/metadata/md5-cache/dev-python/pip-1.4.1 index b2241d77c2ac..de97bc1f8e3e 100644 --- a/metadata/md5-cache/dev-python/pip-1.4.1 +++ b/metadata/md5-cache/dev-python/pip-1.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pip/pip-1.4.1.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3e4d33ee7b89f25f8322439f3ed2a66a diff --git a/metadata/md5-cache/dev-python/pivy-0.5_alpha20110303-r1 b/metadata/md5-cache/dev-python/pivy-0.5_alpha20110303-r1 index 1315f99e1eec..4fb45502c8a1 100644 --- a/metadata/md5-cache/dev-python/pivy-0.5_alpha20110303-r1 +++ b/metadata/md5-cache/dev-python/pivy-0.5_alpha20110303-r1 @@ -10,5 +10,5 @@ RDEPEND=media-libs/coin >=media-libs/SoQt-1.5.0 python_targets_python2_6? ( >=de REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~dilfridge/distfiles/pivy-0.5_alpha20110303.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=482ce08facf5ce97ec1fb36025b706f0 diff --git a/metadata/md5-cache/dev-python/pivy-9999 b/metadata/md5-cache/dev-python/pivy-9999 index d7375eaba918..1c9c813cca93 100644 --- a/metadata/md5-cache/dev-python/pivy-9999 +++ b/metadata/md5-cache/dev-python/pivy-9999 @@ -8,5 +8,5 @@ LICENSE=ISC RDEPEND=media-libs/coin >=media-libs/SoQt-1.5.0 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=79cbcdc426cd10d19602d71787a4cc39 diff --git a/metadata/md5-cache/dev-python/pkginfo-1.0 b/metadata/md5-cache/dev-python/pkginfo-1.0 index 280aab9ea9ae..a092e6bc732d 100644 --- a/metadata/md5-cache/dev-python/pkginfo-1.0 +++ b/metadata/md5-cache/dev-python/pkginfo-1.0 @@ -10,5 +10,5 @@ RDEPEND=doc? ( dev-python/sphinx[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pkginfo/pkginfo-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2f781aacd1c07bd9505d5dca23685de0 diff --git a/metadata/md5-cache/dev-python/ply-3.4-r1 b/metadata/md5-cache/dev-python/ply-3.4-r1 index a8c7f4d1540c..fa4d3719f8ab 100644 --- a/metadata/md5-cache/dev-python/ply-3.4-r1 +++ b/metadata/md5-cache/dev-python/ply-3.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://www.dabeaz.com/ply/ply-3.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6064f282e8db4282b32de19f8d538a8b diff --git a/metadata/md5-cache/dev-python/pmw-1.3.3-r2 b/metadata/md5-cache/dev-python/pmw-1.3.3-r2 index be8b3de0b545..dc62421ce57a 100644 --- a/metadata/md5-cache/dev-python/pmw-1.3.3-r2 +++ b/metadata/md5-cache/dev-python/pmw-1.3.3-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=py2 SRC_URI=mirror://sourceforge/pmw/Pmw.1.3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc88e04f7ddfe9aab7c0593c0cd8aaae diff --git a/metadata/md5-cache/dev-python/pmw-2.0.0-r2 b/metadata/md5-cache/dev-python/pmw-2.0.0-r2 index e1c4e5f68983..574da5f6c4aa 100644 --- a/metadata/md5-cache/dev-python/pmw-2.0.0-r2 +++ b/metadata/md5-cache/dev-python/pmw-2.0.0-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python3_2 python_targets_python3_3 ) RESTRICT=test SLOT=py3 SRC_URI=mirror://sourceforge/pmw/Pmw.2.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2ac86af52afd449b2324fcee19f0f242 diff --git a/metadata/md5-cache/dev-python/prettytable-0.6-r1 b/metadata/md5-cache/dev-python/prettytable-0.6-r1 index 7b3b716db629..fd75f64c7cdf 100644 --- a/metadata/md5-cache/dev-python/prettytable-0.6-r1 +++ b/metadata/md5-cache/dev-python/prettytable-0.6-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools python_targets_python2_6? ( >=dev-lang/python-2.6. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://prettytable.googlecode.com/files/prettytable-0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c88661d3e9a69487b4742f19a75259d7 diff --git a/metadata/md5-cache/dev-python/prettytable-0.7.1 b/metadata/md5-cache/dev-python/prettytable-0.7.1 index c74d72310043..a852a435340e 100644 --- a/metadata/md5-cache/dev-python/prettytable-0.7.1 +++ b/metadata/md5-cache/dev-python/prettytable-0.7.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://prettytable.googlecode.com/files/prettytable-0.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4be4d9fc1843b64b8be604580e593e4f diff --git a/metadata/md5-cache/dev-python/progressbar-2.3-r1 b/metadata/md5-cache/dev-python/progressbar-2.3-r1 index 6096b8296b54..9529d8f1636e 100644 --- a/metadata/md5-cache/dev-python/progressbar-2.3-r1 +++ b/metadata/md5-cache/dev-python/progressbar-2.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://python-progressbar.googlecode.com/files/progressbar-2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=db5b1375432c8c7060aa572cf4da137f diff --git a/metadata/md5-cache/dev-python/pry-0.2.1-r1 b/metadata/md5-cache/dev-python/pry-0.2.1-r1 index 5cd3c73f3817..3e2a495a3f88 100644 --- a/metadata/md5-cache/dev-python/pry-0.2.1-r1 +++ b/metadata/md5-cache/dev-python/pry-0.2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=!dev-ruby/pry python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pry/pry-0.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=10d4061806c4f65820de316c771b9bbc diff --git a/metadata/md5-cache/dev-python/psutil-0.7.1 b/metadata/md5-cache/dev-python/psutil-0.7.1 index 5246723f223e..777acc945ebb 100644 --- a/metadata/md5-cache/dev-python/psutil-0.7.1 +++ b/metadata/md5-cache/dev-python/psutil-0.7.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://psutil.googlecode.com/files/psutil-0.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4c65f34b924c2115243534708d86c58d diff --git a/metadata/md5-cache/dev-python/psutil-1.0.0 b/metadata/md5-cache/dev-python/psutil-1.0.0 index a4bf70de7d8b..dc4c8b4072a1 100644 --- a/metadata/md5-cache/dev-python/psutil-1.0.0 +++ b/metadata/md5-cache/dev-python/psutil-1.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://psutil.googlecode.com/files/psutil-1.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=827f44d1e18cad38ccb6762ef8ee519a diff --git a/metadata/md5-cache/dev-python/psutil-1.0.1 b/metadata/md5-cache/dev-python/psutil-1.0.1 index 1b85eb1e805c..56eb1eeea768 100644 --- a/metadata/md5-cache/dev-python/psutil-1.0.1 +++ b/metadata/md5-cache/dev-python/psutil-1.0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/psutil/psutil-1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a7152f2a484806194bd33603697b1b38 diff --git a/metadata/md5-cache/dev-python/psutil-1.1.0 b/metadata/md5-cache/dev-python/psutil-1.1.0 index b1be95c5d722..7d26902ad878 100644 --- a/metadata/md5-cache/dev-python/psutil-1.1.0 +++ b/metadata/md5-cache/dev-python/psutil-1.1.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/psutil/psutil-1.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1151d1daaa966b2f3d7d342dedfd254b diff --git a/metadata/md5-cache/dev-python/psutil-1.1.1 b/metadata/md5-cache/dev-python/psutil-1.1.1 index 3625db545c5a..0159582bde00 100644 --- a/metadata/md5-cache/dev-python/psutil-1.1.1 +++ b/metadata/md5-cache/dev-python/psutil-1.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/psutil/psutil-1.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=33a1ab5c8b5614ff7f06b075712b803b diff --git a/metadata/md5-cache/dev-python/psycopg-2.4.6-r1 b/metadata/md5-cache/dev-python/psycopg-2.4.6-r1 index 2d275cf0c232..19d4d97eb60f 100644 --- a/metadata/md5-cache/dev-python/psycopg-2.4.6-r1 +++ b/metadata/md5-cache/dev-python/psycopg-2.4.6-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=2 SRC_URI=mirror://pypi/p/psycopg2/psycopg2-2.4.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2a8e93b1cd4b24a57aa55e30bc64bb15 diff --git a/metadata/md5-cache/dev-python/psycopg-2.4.6-r2 b/metadata/md5-cache/dev-python/psycopg-2.4.6-r2 index 926c64eedcb8..30ecbd454611 100644 --- a/metadata/md5-cache/dev-python/psycopg-2.4.6-r2 +++ b/metadata/md5-cache/dev-python/psycopg-2.4.6-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=2 SRC_URI=mirror://pypi/p/psycopg2/psycopg2-2.4.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=216133c637ed16289110783c018b7a60 diff --git a/metadata/md5-cache/dev-python/psycopg-2.5 b/metadata/md5-cache/dev-python/psycopg-2.5 index 1019a898ce79..9912278f9c72 100644 --- a/metadata/md5-cache/dev-python/psycopg-2.5 +++ b/metadata/md5-cache/dev-python/psycopg-2.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=2 SRC_URI=mirror://pypi/p/psycopg2/psycopg2-2.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3d9980af230b845533f589e91bfa0449 diff --git a/metadata/md5-cache/dev-python/psycopg-2.5.1 b/metadata/md5-cache/dev-python/psycopg-2.5.1 index 42c068de9851..3bb64d85249c 100644 --- a/metadata/md5-cache/dev-python/psycopg-2.5.1 +++ b/metadata/md5-cache/dev-python/psycopg-2.5.1 @@ -4,12 +4,12 @@ DESCRIPTION=PostgreSQL database adapter for Python EAPI=5 HOMEPAGE=http://initd.org/psycopg/ http://pypi.python.org/pypi/psycopg2 IUSE=debug doc examples python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=~alpha amd64 ~arm 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 hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris LICENSE=GPL-2 RDEPEND=>=dev-db/postgresql-base-8.1 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) RESTRICT=test SLOT=2 SRC_URI=mirror://pypi/p/psycopg2/psycopg2-2.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=78831a34f46886e3e91b6336c42faba7 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=28b9730b78e963d28aedd71bb8e2e845 diff --git a/metadata/md5-cache/dev-python/pudb-2012.3-r1 b/metadata/md5-cache/dev-python/pudb-2012.3-r1 index 71ff352d0d0d..509d035c666e 100644 --- a/metadata/md5-cache/dev-python/pudb-2012.3-r1 +++ b/metadata/md5-cache/dev-python/pudb-2012.3-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/urwid dev-python/pygments python_targets_python2_6? ( >=dev-l REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/p/pudb/pudb-2012.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=071d35b815cb3e3d5858c1e4bff4930d diff --git a/metadata/md5-cache/dev-python/pudb-2013.1 b/metadata/md5-cache/dev-python/pudb-2013.1 index ef5bcd3fef42..2b8f001adcf0 100644 --- a/metadata/md5-cache/dev-python/pudb-2013.1 +++ b/metadata/md5-cache/dev-python/pudb-2013.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/urwid[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pudb/pudb-2013.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=30e78fedfe94ff8d95826a96d93d91e5 diff --git a/metadata/md5-cache/dev-python/pudb-2013.2 b/metadata/md5-cache/dev-python/pudb-2013.2 index e751057cad80..d37b1cdefb1a 100644 --- a/metadata/md5-cache/dev-python/pudb-2013.2 +++ b/metadata/md5-cache/dev-python/pudb-2013.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/urwid[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pudb/pudb-2013.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d5080b82965f5b713ecfd92f6ad4ed4e diff --git a/metadata/md5-cache/dev-python/pudb-2013.3.2 b/metadata/md5-cache/dev-python/pudb-2013.3.2 index 844bf40dfcc6..366c156c0f0c 100644 --- a/metadata/md5-cache/dev-python/pudb-2013.3.2 +++ b/metadata/md5-cache/dev-python/pudb-2013.3.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/urwid[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pudb/pudb-2013.3.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b2fe0b8ef96cd70691a13b3e37e56935 diff --git a/metadata/md5-cache/dev-python/pudb-2013.3.3 b/metadata/md5-cache/dev-python/pudb-2013.3.3 index 04987f0885e5..320b090cc9be 100644 --- a/metadata/md5-cache/dev-python/pudb-2013.3.3 +++ b/metadata/md5-cache/dev-python/pudb-2013.3.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/urwid[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pudb/pudb-2013.3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d9b4e31f681ae2effb5de6cdc15a53f8 diff --git a/metadata/md5-cache/dev-python/pudb-2013.3.4 b/metadata/md5-cache/dev-python/pudb-2013.3.4 index 05010800be3c..d791fc9b2a18 100644 --- a/metadata/md5-cache/dev-python/pudb-2013.3.4 +++ b/metadata/md5-cache/dev-python/pudb-2013.3.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/urwid[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pudb/pudb-2013.3.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2a882a822f9bfc295ecccb5edfb716c8 diff --git a/metadata/md5-cache/dev-python/pudb-2013.3.6 b/metadata/md5-cache/dev-python/pudb-2013.3.6 index 41b935ad5b46..425561b15fe6 100644 --- a/metadata/md5-cache/dev-python/pudb-2013.3.6 +++ b/metadata/md5-cache/dev-python/pudb-2013.3.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/urwid[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pudb/pudb-2013.3.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5fbfde925dcc3c4775db9542dd6c76b5 diff --git a/metadata/md5-cache/dev-python/pudge-0.1.3-r1 b/metadata/md5-cache/dev-python/pudge-0.1.3-r1 index dbcc49df7ec9..f9b3918ea212 100644 --- a/metadata/md5-cache/dev-python/pudge-0.1.3-r1 +++ b/metadata/md5-cache/dev-python/pudge-0.1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/docutils[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pudge/pudge-0.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a32048326a259e4ec880cf692263cef8 diff --git a/metadata/md5-cache/dev-python/pupynere-1.0.15-r1 b/metadata/md5-cache/dev-python/pupynere-1.0.15-r1 index 757711c52c82..7035e7ba3be5 100644 --- a/metadata/md5-cache/dev-python/pupynere-1.0.15-r1 +++ b/metadata/md5-cache/dev-python/pupynere-1.0.15-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pupynere/pupynere-1.0.15.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2c08168aa20ff99b05aeeaa14d3084f4 diff --git a/metadata/md5-cache/dev-python/py-1.4.12-r1 b/metadata/md5-cache/dev-python/py-1.4.12-r1 index e9ee59f9e34e..dc66453b65a8 100644 --- a/metadata/md5-cache/dev-python/py-1.4.12-r1 +++ b/metadata/md5-cache/dev-python/py-1.4.12-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/py/py-1.4.12.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=99671a38f535fe033a643f9ab7ed95c3 diff --git a/metadata/md5-cache/dev-python/py-1.4.13 b/metadata/md5-cache/dev-python/py-1.4.13 index a906d4cad5bc..093a3068eb03 100644 --- a/metadata/md5-cache/dev-python/py-1.4.13 +++ b/metadata/md5-cache/dev-python/py-1.4.13 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/py/py-1.4.13.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9ae76387cfbbd0f21933cd7135b1e30f diff --git a/metadata/md5-cache/dev-python/py-1.4.14 b/metadata/md5-cache/dev-python/py-1.4.14 index fea6864c9e7f..7066f979aef4 100644 --- a/metadata/md5-cache/dev-python/py-1.4.14 +++ b/metadata/md5-cache/dev-python/py-1.4.14 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/py/py-1.4.14.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=02d1fc342fd9cc5f560e91955af2f615 diff --git a/metadata/md5-cache/dev-python/py-1.4.15 b/metadata/md5-cache/dev-python/py-1.4.15 index 984f872f84c3..59aecc0eb63a 100644 --- a/metadata/md5-cache/dev-python/py-1.4.15 +++ b/metadata/md5-cache/dev-python/py-1.4.15 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/py/py-1.4.15.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=50deeaacba41647712b66e228876dfb6 diff --git a/metadata/md5-cache/dev-python/py-amqp-1.0.11 b/metadata/md5-cache/dev-python/py-amqp-1.0.11 index 52f71a4683e2..02389806884e 100644 --- a/metadata/md5-cache/dev-python/py-amqp-1.0.11 +++ b/metadata/md5-cache/dev-python/py-amqp-1.0.11 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/amqp/amqp-1.0.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a9509299aa450ddd2956d1ef470a8070 diff --git a/metadata/md5-cache/dev-python/py-amqp-1.0.12 b/metadata/md5-cache/dev-python/py-amqp-1.0.12 index da8ddf90281b..dfa12519cce3 100644 --- a/metadata/md5-cache/dev-python/py-amqp-1.0.12 +++ b/metadata/md5-cache/dev-python/py-amqp-1.0.12 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/amqp/amqp-1.0.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=286e0d6dc4fb6bd512b4f40ce2ac75bf diff --git a/metadata/md5-cache/dev-python/py-amqp-1.0.13 b/metadata/md5-cache/dev-python/py-amqp-1.0.13 index fe71dfecbd64..ec6110064286 100644 --- a/metadata/md5-cache/dev-python/py-amqp-1.0.13 +++ b/metadata/md5-cache/dev-python/py-amqp-1.0.13 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/amqp/amqp-1.0.13.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d5c0284879cc4dd656deb83d485b1440 diff --git a/metadata/md5-cache/dev-python/py-amqp-1.0.9 b/metadata/md5-cache/dev-python/py-amqp-1.0.9 index 00acb95d9371..daa75d579627 100644 --- a/metadata/md5-cache/dev-python/py-amqp-1.0.9 +++ b/metadata/md5-cache/dev-python/py-amqp-1.0.9 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/a/amqp/amqp-1.0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9e18630d8084fdf60770ef6626468693 diff --git a/metadata/md5-cache/dev-python/py-amqp-1.2.1 b/metadata/md5-cache/dev-python/py-amqp-1.2.1 index efd207a86dfc..98411322774f 100644 --- a/metadata/md5-cache/dev-python/py-amqp-1.2.1 +++ b/metadata/md5-cache/dev-python/py-amqp-1.2.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/a/amqp/amqp-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=456f86ae91ace9582af1c2c175d11b56 diff --git a/metadata/md5-cache/dev-python/py-bcrypt-0.2 b/metadata/md5-cache/dev-python/py-bcrypt-0.2 index 4268f1f5755b..d75d5c1cabfe 100644 --- a/metadata/md5-cache/dev-python/py-bcrypt-0.2 +++ b/metadata/md5-cache/dev-python/py-bcrypt-0.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.mindrot.org/files/py-bcrypt/py-bcrypt-0.2.tar.gz http://py-bcrypt.googlecode.com/files/py-bcrypt-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9fdbb4d303d88d89323f104be2bd6e61 diff --git a/metadata/md5-cache/dev-python/py-gnupg-0.3.2-r1 b/metadata/md5-cache/dev-python/py-gnupg-0.3.2-r1 index b14245184c32..888d366b987e 100644 --- a/metadata/md5-cache/dev-python/py-gnupg-0.3.2-r1 +++ b/metadata/md5-cache/dev-python/py-gnupg-0.3.2-r1 @@ -10,5 +10,5 @@ RDEPEND=>=app-crypt/gnupg-1.2.1-r1 python_targets_python2_6? ( >=dev-lang/python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/py-gnupg/GnuPGInterface-0.3.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2291c24c170fa77ffee681260f0fce1b diff --git a/metadata/md5-cache/dev-python/py2neo-1.5.1 b/metadata/md5-cache/dev-python/py2neo-1.5.1 index 49770ff491b3..51fcc1f543ed 100644 --- a/metadata/md5-cache/dev-python/py2neo-1.5.1 +++ b/metadata/md5-cache/dev-python/py2neo-1.5.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/py2neo/py2neo-1.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=019e41423ea3f7d377f56f57d9d8673e diff --git a/metadata/md5-cache/dev-python/py2neo-1.6.0 b/metadata/md5-cache/dev-python/py2neo-1.6.0 index cabd0d26cfeb..c366670a38c3 100644 --- a/metadata/md5-cache/dev-python/py2neo-1.6.0 +++ b/metadata/md5-cache/dev-python/py2neo-1.6.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/py2neo/py2neo-1.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6ffb406dfe58b259bd182e3f7a8b93c7 diff --git a/metadata/md5-cache/dev-python/pyGPG-9999 b/metadata/md5-cache/dev-python/pyGPG-9999 index ebbf230906bf..a6efc54f7db1 100644 --- a/metadata/md5-cache/dev-python/pyGPG-9999 +++ b/metadata/md5-cache/dev-python/pyGPG-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=app-crypt/gnupg-2.0.0 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6e1f6ed1d6ba270eae5c471793704461 diff --git a/metadata/md5-cache/dev-python/pyPdf-1.13-r1 b/metadata/md5-cache/dev-python/pyPdf-1.13-r1 index 69145320c77a..383a972cf3d6 100644 --- a/metadata/md5-cache/dev-python/pyPdf-1.13-r1 +++ b/metadata/md5-cache/dev-python/pyPdf-1.13-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://pybrary.net/pyPdf/pyPdf-1.13.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fdbe436f83e7483a439e09621af09dbe diff --git a/metadata/md5-cache/dev-python/pyacoustid-1.0.0 b/metadata/md5-cache/dev-python/pyacoustid-1.0.0 index 6c250fcd2635..03ae4dacded2 100644 --- a/metadata/md5-cache/dev-python/pyacoustid-1.0.0 +++ b/metadata/md5-cache/dev-python/pyacoustid-1.0.0 @@ -10,5 +10,5 @@ RDEPEND=media-libs/chromaprint dev-python/audioread[python_targets_python2_6(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyacoustid/pyacoustid-1.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c8d27a610b93189ec26ec0680719b5f9 diff --git a/metadata/md5-cache/dev-python/pyalsa-1.0.26-r1 b/metadata/md5-cache/dev-python/pyalsa-1.0.26-r1 index 2236a8cde6f3..7a3481507171 100644 --- a/metadata/md5-cache/dev-python/pyalsa-1.0.26-r1 +++ b/metadata/md5-cache/dev-python/pyalsa-1.0.26-r1 @@ -10,5 +10,5 @@ RDEPEND=media-libs/alsa-lib python_targets_python2_6? ( >=dev-lang/python-2.6.8- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://alsaproject/pyalsa/pyalsa-1.0.26.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7bc46cf23ad69fefa1e9b6282943e077 diff --git a/metadata/md5-cache/dev-python/pyalsaaudio-0.7-r1 b/metadata/md5-cache/dev-python/pyalsaaudio-0.7-r1 index 3c8c28c9be89..7eccc1b1fcce 100644 --- a/metadata/md5-cache/dev-python/pyalsaaudio-0.7-r1 +++ b/metadata/md5-cache/dev-python/pyalsaaudio-0.7-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/pyalsaaudio/pyalsaaudio-0.7.tar.gz mirror://pypi/p/pyalsaaudio/pyalsaaudio-0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8eb3f66bdbf39afd377dc8fbf3432c61 diff --git a/metadata/md5-cache/dev-python/pyamg-2.0.5 b/metadata/md5-cache/dev-python/pyamg-2.0.5 index a32fa400ad06..7d6fe87e1647 100644 --- a/metadata/md5-cache/dev-python/pyamg-2.0.5 +++ b/metadata/md5-cache/dev-python/pyamg-2.0.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://pyamg.googlecode.com/files/pyamg-2.0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a9001759295eaded39bb13ef9965b207 diff --git a/metadata/md5-cache/dev-python/pyamg-2.1.0 b/metadata/md5-cache/dev-python/pyamg-2.1.0 index aeec1083c6ee..0a5b2acae2fd 100644 --- a/metadata/md5-cache/dev-python/pyamg-2.1.0 +++ b/metadata/md5-cache/dev-python/pyamg-2.1.0 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/scipy[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyamg/pyamg-2.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=54771f95a621acddade562ac3f894f47 diff --git a/metadata/md5-cache/dev-python/pyasn1-0.1.6 b/metadata/md5-cache/dev-python/pyasn1-0.1.6 index 1e3058dc121a..9d06f3edb1d4 100644 --- a/metadata/md5-cache/dev-python/pyasn1-0.1.6 +++ b/metadata/md5-cache/dev-python/pyasn1-0.1.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pyasn1/pyasn1-0.1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=32e6da85c9968c0c5949d0fa930f6356 diff --git a/metadata/md5-cache/dev-python/pyasn1-0.1.7 b/metadata/md5-cache/dev-python/pyasn1-0.1.7 index 0cb5f55a9c14..7165e2c3631d 100644 --- a/metadata/md5-cache/dev-python/pyasn1-0.1.7 +++ b/metadata/md5-cache/dev-python/pyasn1-0.1.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pyasn1/pyasn1-0.1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=827c8f99848e8e368a8f333ce6429233 diff --git a/metadata/md5-cache/dev-python/pyaudio-0.2.7-r1 b/metadata/md5-cache/dev-python/pyaudio-0.2.7-r1 index 6720925fe371..17c3fbaeae79 100644 --- a/metadata/md5-cache/dev-python/pyaudio-0.2.7-r1 +++ b/metadata/md5-cache/dev-python/pyaudio-0.2.7-r1 @@ -10,5 +10,5 @@ RDEPEND=media-libs/portaudio python_targets_python2_6? ( >=dev-lang/python-2.6.8 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://people.csail.mit.edu/hubert/pyaudio/packages/pyaudio-0.2.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=db8c304b94574cd79f884adec7939340 diff --git a/metadata/md5-cache/dev-python/pyavm-0.9.1 b/metadata/md5-cache/dev-python/pyavm-0.9.1 index f782228c106e..b87929a401ff 100644 --- a/metadata/md5-cache/dev-python/pyavm-0.9.1 +++ b/metadata/md5-cache/dev-python/pyavm-0.9.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/astropy-0.2[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/P/PyAVM/PyAVM-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a70cc02abd25b1493e72fb41ab53cd78 diff --git a/metadata/md5-cache/dev-python/pybloomfiltermmap-0.3.11-r1 b/metadata/md5-cache/dev-python/pybloomfiltermmap-0.3.11-r1 index 4984bb13b1b0..0a88c050c8d6 100644 --- a/metadata/md5-cache/dev-python/pybloomfiltermmap-0.3.11-r1 +++ b/metadata/md5-cache/dev-python/pybloomfiltermmap-0.3.11-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pybloomfiltermmap/pybloomfiltermmap-0.3.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cbce4b344948a47f936b89638f89ae41 diff --git a/metadata/md5-cache/dev-python/pybluez-0.18-r1 b/metadata/md5-cache/dev-python/pybluez-0.18-r1 index 145026150a17..10705b75a522 100644 --- a/metadata/md5-cache/dev-python/pybluez-0.18-r1 +++ b/metadata/md5-cache/dev-python/pybluez-0.18-r1 @@ -10,5 +10,5 @@ RDEPEND=net-wireless/bluez python_targets_python2_6? ( >=dev-lang/python-2.6.8-r REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://pybluez.googlecode.com/files/PyBluez-0.18.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a5208e238f8bba225378b398261bf5a1 diff --git a/metadata/md5-cache/dev-python/pychart-1.39-r1 b/metadata/md5-cache/dev-python/pychart-1.39-r1 index 17d0b36e4a17..b1c2fd3ceba3 100644 --- a/metadata/md5-cache/dev-python/pychart-1.39-r1 +++ b/metadata/md5-cache/dev-python/pychart-1.39-r1 @@ -10,5 +10,5 @@ RDEPEND=app-text/ghostscript-gpl python_targets_python2_6? ( >=dev-lang/python-2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://download.gna.org/pychart/PyChart-1.39.tar.gz doc? ( http://download.gna.org/pychart/pychart-doc.tar.gz ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cedb10677acce68218e2d7155fd1e89d diff --git a/metadata/md5-cache/dev-python/pychef-0.2.1 b/metadata/md5-cache/dev-python/pychef-0.2.1 index 8451fb6ae86a..89a08f88e0be 100644 --- a/metadata/md5-cache/dev-python/pychef-0.2.1 +++ b/metadata/md5-cache/dev-python/pychef-0.2.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/P/PyChef/PyChef-0.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=06ede09fb490fa0d4b1eba1069fc6982 diff --git a/metadata/md5-cache/dev-python/pycountry-0.14.7-r1 b/metadata/md5-cache/dev-python/pycountry-0.14.7-r1 index 168d85033459..1890f2d352fe 100644 --- a/metadata/md5-cache/dev-python/pycountry-0.14.7-r1 +++ b/metadata/md5-cache/dev-python/pycountry-0.14.7-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pycountry/pycountry-0.14.7.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=530235c21e010d1fdc0c8ef825cafe41 diff --git a/metadata/md5-cache/dev-python/pycountry-0.14.8 b/metadata/md5-cache/dev-python/pycountry-0.14.8 index db749d1f195d..d9c96485aa44 100644 --- a/metadata/md5-cache/dev-python/pycountry-0.14.8 +++ b/metadata/md5-cache/dev-python/pycountry-0.14.8 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pycountry/pycountry-0.14.8.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=229290ff395b4b860c1a4df8a6e76ff8 diff --git a/metadata/md5-cache/dev-python/pycountry-0.15 b/metadata/md5-cache/dev-python/pycountry-0.15 index c8969c4bffa9..149ab29af5f2 100644 --- a/metadata/md5-cache/dev-python/pycountry-0.15 +++ b/metadata/md5-cache/dev-python/pycountry-0.15 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pycountry/pycountry-0.15.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e7522a9a7bbc606873244fe339b1173c diff --git a/metadata/md5-cache/dev-python/pycountry-0.16 b/metadata/md5-cache/dev-python/pycountry-0.16 index c6c756a32364..71533dad21ed 100644 --- a/metadata/md5-cache/dev-python/pycountry-0.16 +++ b/metadata/md5-cache/dev-python/pycountry-0.16 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pycountry/pycountry-0.16.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1d86f840db468669fc089af46bcd6de7 diff --git a/metadata/md5-cache/dev-python/pycountry-0.17 b/metadata/md5-cache/dev-python/pycountry-0.17 index 124b700b1f60..54325d9ad758 100644 --- a/metadata/md5-cache/dev-python/pycountry-0.17 +++ b/metadata/md5-cache/dev-python/pycountry-0.17 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pycountry/pycountry-0.17.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=94fd4a19685fe37650cda707c6caa311 diff --git a/metadata/md5-cache/dev-python/pycountry-0.18 b/metadata/md5-cache/dev-python/pycountry-0.18 index e27dd183ec23..6b1e6d77514f 100644 --- a/metadata/md5-cache/dev-python/pycountry-0.18 +++ b/metadata/md5-cache/dev-python/pycountry-0.18 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pycountry/pycountry-0.18.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f1734369821c09f97ca06290fae55944 diff --git a/metadata/md5-cache/dev-python/pycountry-0.19 b/metadata/md5-cache/dev-python/pycountry-0.19 index 20ad219bf7ce..d46ab030d498 100644 --- a/metadata/md5-cache/dev-python/pycountry-0.19 +++ b/metadata/md5-cache/dev-python/pycountry-0.19 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pycountry/pycountry-0.19.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=105f101260f2d5c07d2e9c39bb434b5b diff --git a/metadata/md5-cache/dev-python/pycountry-1.0 b/metadata/md5-cache/dev-python/pycountry-1.0 index c25463f3eb80..d805c7bb2033 100644 --- a/metadata/md5-cache/dev-python/pycountry-1.0 +++ b/metadata/md5-cache/dev-python/pycountry-1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pycountry/pycountry-1.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8b1d42811e01eaf39be55dffafe378ea diff --git a/metadata/md5-cache/dev-python/pycparser-2.09.1-r1 b/metadata/md5-cache/dev-python/pycparser-2.09.1-r1 index 3056c2406c3a..8ab53f21f709 100644 --- a/metadata/md5-cache/dev-python/pycparser-2.09.1-r1 +++ b/metadata/md5-cache/dev-python/pycparser-2.09.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/ply[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://bitbucket.org/eliben/pycparser/get/release_v2.09.1.tar.bz2 -> pycparser-2.09.1.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=8fafa9af04c136483e35637df7cdfe4c diff --git a/metadata/md5-cache/dev-python/pycparser-2.10 b/metadata/md5-cache/dev-python/pycparser-2.10 index 891e6503089e..973d35c61d3e 100644 --- a/metadata/md5-cache/dev-python/pycparser-2.10 +++ b/metadata/md5-cache/dev-python/pycparser-2.10 @@ -10,5 +10,5 @@ RDEPEND=dev-python/ply[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pycparser/pycparser-2.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=fd57e947525cf0a6f3d24f9bd1098a30 diff --git a/metadata/md5-cache/dev-python/pycrypto-2.6-r2 b/metadata/md5-cache/dev-python/pycrypto-2.6-r2 index 743b7e90c6d5..95072a4b094a 100644 --- a/metadata/md5-cache/dev-python/pycrypto-2.6-r2 +++ b/metadata/md5-cache/dev-python/pycrypto-2.6-r2 @@ -10,5 +10,5 @@ RDEPEND=gmp? ( dev-libs/gmp ) python_targets_python2_6? ( >=dev-lang/python-2.6. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=143aa53d312317d2f85507cdd23203f4 diff --git a/metadata/md5-cache/dev-python/pycrypto-2.6.1 b/metadata/md5-cache/dev-python/pycrypto-2.6.1 index e2ed532b5b70..3db9f0713b87 100644 --- a/metadata/md5-cache/dev-python/pycrypto-2.6.1 +++ b/metadata/md5-cache/dev-python/pycrypto-2.6.1 @@ -10,5 +10,5 @@ RDEPEND=gmp? ( dev-libs/gmp ) python_targets_python2_6? ( >=dev-lang/python-2.6. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.6.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=adaeb599f6243aeb8bcfea154d4101a8 diff --git a/metadata/md5-cache/dev-python/pycryptopp-0.6.0 b/metadata/md5-cache/dev-python/pycryptopp-0.6.0 index 119b43cd94df..70be5bc73d01 100644 --- a/metadata/md5-cache/dev-python/pycryptopp-0.6.0 +++ b/metadata/md5-cache/dev-python/pycryptopp-0.6.0 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/crypto++ python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pycryptopp/pycryptopp-0.6.0.1206569328141510525648634803928199668821045408958.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=27351265213786b3b913dc2ce5bf1e98 diff --git a/metadata/md5-cache/dev-python/pycuda-2012.1 b/metadata/md5-cache/dev-python/pycuda-2012.1 index 62dc9123fc86..01d8eaaaabd7 100644 --- a/metadata/md5-cache/dev-python/pycuda-2012.1 +++ b/metadata/md5-cache/dev-python/pycuda-2012.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=userpriv SLOT=0 SRC_URI=mirror://pypi/p/pycuda/pycuda-2012.1.tar.gz -_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5ab1205d5d8d691e396f238b6d98ac83 diff --git a/metadata/md5-cache/dev-python/pycuda-2013.1.1 b/metadata/md5-cache/dev-python/pycuda-2013.1.1 index 4b89cfc1fa27..7aa3046f1a9f 100644 --- a/metadata/md5-cache/dev-python/pycuda-2013.1.1 +++ b/metadata/md5-cache/dev-python/pycuda-2013.1.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=userpriv SLOT=0 SRC_URI=mirror://pypi/p/pycuda/pycuda-2013.1.1.tar.gz -_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=2896d0c40c96196bd78841147ba1a9e4 diff --git a/metadata/md5-cache/dev-python/pycuda-9999 b/metadata/md5-cache/dev-python/pycuda-9999 index 249a5441a87f..45b34085f521 100644 --- a/metadata/md5-cache/dev-python/pycuda-9999 +++ b/metadata/md5-cache/dev-python/pycuda-9999 @@ -9,5 +9,5 @@ RDEPEND=dev-libs/boost[python,python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=userpriv SLOT=0 -_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda 9be39ddb95b9b07ec931f30628d40757 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=39b1c2ef9431bc915b2c13b8b222ea53 diff --git a/metadata/md5-cache/dev-python/pycups-1.9.63 b/metadata/md5-cache/dev-python/pycups-1.9.63 index 0ab9431e2c1b..83d000406297 100644 --- a/metadata/md5-cache/dev-python/pycups-1.9.63 +++ b/metadata/md5-cache/dev-python/pycups-1.9.63 @@ -10,5 +10,5 @@ RDEPEND=net-print/cups python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2. REQUIRED_USE=doc? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pycups/pycups-1.9.63.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fb5e115eb916875318b2dda7e4b5fcb3 diff --git a/metadata/md5-cache/dev-python/pycurl-7.19.0-r2 b/metadata/md5-cache/dev-python/pycurl-7.19.0-r2 index d5122975e4d3..aaf03b7e63d8 100644 --- a/metadata/md5-cache/dev-python/pycurl-7.19.0-r2 +++ b/metadata/md5-cache/dev-python/pycurl-7.19.0-r2 @@ -10,5 +10,5 @@ RDEPEND=>=net-misc/curl-7.25.0-r1[ssl=] ssl? ( net-misc/curl[curl_ssl_gnutls=,cu REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://pycurl.sourceforge.net/download/pycurl-7.19.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=48c17690e98b83e8f3dc042b3a45389c diff --git a/metadata/md5-cache/dev-python/pycurl-7.19.0-r3 b/metadata/md5-cache/dev-python/pycurl-7.19.0-r3 index 2ee57080aa35..dcfde8bdd537 100644 --- a/metadata/md5-cache/dev-python/pycurl-7.19.0-r3 +++ b/metadata/md5-cache/dev-python/pycurl-7.19.0-r3 @@ -10,5 +10,5 @@ RDEPEND=>=net-misc/curl-7.25.0-r1[ssl=] ssl? ( net-misc/curl[curl_ssl_gnutls=,cu REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://pycurl.sourceforge.net/download/pycurl-7.19.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=87f39a812329cd96b2f38ae96617d6a0 diff --git a/metadata/md5-cache/dev-python/pycxx-6.2.5 b/metadata/md5-cache/dev-python/pycxx-6.2.5 index 89879383b86b..0116e97a8db0 100644 --- a/metadata/md5-cache/dev-python/pycxx-6.2.5 +++ b/metadata/md5-cache/dev-python/pycxx-6.2.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/cxx/pycxx-6.2.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9e5ab6f357e07024443279ff00ea48aa diff --git a/metadata/md5-cache/dev-python/pydns-2.3.6-r1 b/metadata/md5-cache/dev-python/pydns-2.3.6-r1 index 247eaa53e864..4dea16942956 100644 --- a/metadata/md5-cache/dev-python/pydns-2.3.6-r1 +++ b/metadata/md5-cache/dev-python/pydns-2.3.6-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=2 SRC_URI=http://downloads.sourceforge.net/project/pydns/pydns/pydns-2.3.6/pydns-2.3.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8b375899d0c418da049a8643feb01116 diff --git a/metadata/md5-cache/dev-python/pydns-3.0.2-r1 b/metadata/md5-cache/dev-python/pydns-3.0.2-r1 index 54ee2fa04f74..e912be73d794 100644 --- a/metadata/md5-cache/dev-python/pydns-3.0.2-r1 +++ b/metadata/md5-cache/dev-python/pydns-3.0.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python3_2 python_targets_python3_3 ) RESTRICT=test SLOT=3 SRC_URI=http://downloads.sourceforge.net/project/pydns/py3dns/py3dns-3.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0d71cb7dbbc72b06df545c8148676794 diff --git a/metadata/md5-cache/dev-python/pyds-0.7.3-r1 b/metadata/md5-cache/dev-python/pyds-0.7.3-r1 index 0485806a8d9a..e097b9dc27f2 100644 --- a/metadata/md5-cache/dev-python/pyds-0.7.3-r1 +++ b/metadata/md5-cache/dev-python/pyds-0.7.3-r1 @@ -10,5 +10,5 @@ RDEPEND=app-text/silvercity >=dev-db/metakit-2.4.9.2[python] >=dev-python/cheeta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://simon.bofh.ms/~gb/PyDS-0.7.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=96490b113832038ad68c5b305e7f8b6e diff --git a/metadata/md5-cache/dev-python/pyds9-1.6 b/metadata/md5-cache/dev-python/pyds9-1.6 index 0a907a7553a3..44c59065075a 100644 --- a/metadata/md5-cache/dev-python/pyds9-1.6 +++ b/metadata/md5-cache/dev-python/pyds9-1.6 @@ -10,5 +10,5 @@ RDEPEND=>=x11-libs/xpa-2.1.14 dev-python/numpy[python_targets_python2_6(-)?,pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://hea-www.harvard.edu/RD/download/pyds9/pyds9-1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e0ebc866e24019f4c158bddba3446b8f diff --git a/metadata/md5-cache/dev-python/pyechonest-7.2.1 b/metadata/md5-cache/dev-python/pyechonest-7.2.1 index 03acaff09476..9848b882d6e1 100644 --- a/metadata/md5-cache/dev-python/pyechonest-7.2.1 +++ b/metadata/md5-cache/dev-python/pyechonest-7.2.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/echonest/pyechonest/archive/7.2.1.tar.gz -> pyechonest-7.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0140d852e182a4b169caff51cf2a9fa0 diff --git a/metadata/md5-cache/dev-python/pyelftools-0.21-r4 b/metadata/md5-cache/dev-python/pyelftools-0.21-r4 index 8a0154bab507..121b22a018a9 100644 --- a/metadata/md5-cache/dev-python/pyelftools-0.21-r4 +++ b/metadata/md5-cache/dev-python/pyelftools-0.21-r4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyelftools/pyelftools-0.21.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3f707ab2ebc60f3247601699451907b1 diff --git a/metadata/md5-cache/dev-python/pyenchant-1.6.5-r1 b/metadata/md5-cache/dev-python/pyenchant-1.6.5-r1 index 63184f2fdfe3..a21decc3c921 100644 --- a/metadata/md5-cache/dev-python/pyenchant-1.6.5-r1 +++ b/metadata/md5-cache/dev-python/pyenchant-1.6.5-r1 @@ -10,5 +10,5 @@ RDEPEND=>=app-text/enchant-1.6 dev-python/setuptools[python_targets_python2_6(-) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/p/pyenchant/pyenchant-1.6.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=733ecb62d5be149d768aed39eae4c702 diff --git a/metadata/md5-cache/dev-python/pyev-0.8.1 b/metadata/md5-cache/dev-python/pyev-0.8.1 index 7cc1fb5dced2..a8a5ff61b53c 100644 --- a/metadata/md5-cache/dev-python/pyev-0.8.1 +++ b/metadata/md5-cache/dev-python/pyev-0.8.1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libev dev-python/setuptools[python_targets_python2_6(-)?,python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyev/pyev-0.8.1-4.04.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c6b95344254ad883c4d570171f59be04 diff --git a/metadata/md5-cache/dev-python/pyface-4.3.0-r1 b/metadata/md5-cache/dev-python/pyface-4.3.0-r1 index b17c46adf7cb..f17224cd3cb8 100644 --- a/metadata/md5-cache/dev-python/pyface-4.3.0-r1 +++ b/metadata/md5-cache/dev-python/pyface-4.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/traits-4.1[python_targets_python2_7(-)?,-python_single_targ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/pyface-4.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=022a21677cf1f0c502910e20fb539c01 diff --git a/metadata/md5-cache/dev-python/pyfire-0.3.4-r1 b/metadata/md5-cache/dev-python/pyfire-0.3.4-r1 index 5676ffa570d0..fa7a113cbd31 100644 --- a/metadata/md5-cache/dev-python/pyfire-0.3.4-r1 +++ b/metadata/md5-cache/dev-python/pyfire-0.3.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyopenssl[python_targets_python2_7(-)?,-python_single_target_ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyfire/pyfire-0.3.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=380d1e3371fed677275616cca19a2a63 diff --git a/metadata/md5-cache/dev-python/pyfits-3.1.1-r1 b/metadata/md5-cache/dev-python/pyfits-3.1.1-r1 index 385d616c6b76..a9bf21c15cc0 100644 --- a/metadata/md5-cache/dev-python/pyfits-3.1.1-r1 +++ b/metadata/md5-cache/dev-python/pyfits-3.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyfits/pyfits-3.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b89faf54dd9a174dd33042eeffb0bf29 diff --git a/metadata/md5-cache/dev-python/pyfits-3.1.2 b/metadata/md5-cache/dev-python/pyfits-3.1.2 index d407c0fd7895..22cfec286314 100644 --- a/metadata/md5-cache/dev-python/pyfits-3.1.2 +++ b/metadata/md5-cache/dev-python/pyfits-3.1.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyfits/pyfits-3.1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=068d336f71549e3b80ba7cdfc44a6968 diff --git a/metadata/md5-cache/dev-python/pyflakes-0.7.2 b/metadata/md5-cache/dev-python/pyflakes-0.7.2 index ea63fd1be78f..bd4379e14b50 100644 --- a/metadata/md5-cache/dev-python/pyflakes-0.7.2 +++ b/metadata/md5-cache/dev-python/pyflakes-0.7.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyflakes/pyflakes-0.7.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7af2e524978e8294523d2f45db66d273 diff --git a/metadata/md5-cache/dev-python/pyflakes-0.7.3 b/metadata/md5-cache/dev-python/pyflakes-0.7.3 index 659539a692c3..c3790d90ff55 100644 --- a/metadata/md5-cache/dev-python/pyflakes-0.7.3 +++ b/metadata/md5-cache/dev-python/pyflakes-0.7.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyflakes/pyflakes-0.7.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2b0f64b8af5d725aa3c764a5c7d83de diff --git a/metadata/md5-cache/dev-python/pyflann-1.8.4 b/metadata/md5-cache/dev-python/pyflann-1.8.4 index 8bca9e14216d..5d1645db55c3 100644 --- a/metadata/md5-cache/dev-python/pyflann-1.8.4 +++ b/metadata/md5-cache/dev-python/pyflann-1.8.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.8.4-src.zip test? ( http://dev.gentoo.org/~bicatali/distfiles/flann-1.8.4-testdata.tar.xz ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=13834d27c2cb4dafaaba1882af115823 diff --git a/metadata/md5-cache/dev-python/pyfltk-1.3.0-r1 b/metadata/md5-cache/dev-python/pyfltk-1.3.0-r1 index 5c82dcf286e9..d3589491ed1a 100644 --- a/metadata/md5-cache/dev-python/pyfltk-1.3.0-r1 +++ b/metadata/md5-cache/dev-python/pyfltk-1.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=x11-libs/fltk-1.3.0:1[opengl] python_targets_python2_6? ( >=dev-lang/p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pyfltk/pyFltk-1.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce3c66981699e371d837764940c4368c diff --git a/metadata/md5-cache/dev-python/pyftpdlib-1.0.1-r1 b/metadata/md5-cache/dev-python/pyftpdlib-1.0.1-r1 index b12fcb3bb652..f1e552073cde 100644 --- a/metadata/md5-cache/dev-python/pyftpdlib-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/pyftpdlib-1.0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=ssl? ( dev-python/pyopenssl ) python_targets_python2_6? ( >=dev-lang/pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://pyftpdlib.googlecode.com/files/pyftpdlib-1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8bb0200468b33e4c6d86d3d4a328e4dd diff --git a/metadata/md5-cache/dev-python/pygal-1.1.0 b/metadata/md5-cache/dev-python/pygal-1.1.0 index b611d0aac365..3fe4507f35f0 100644 --- a/metadata/md5-cache/dev-python/pygal-1.1.0 +++ b/metadata/md5-cache/dev-python/pygal-1.1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/lxml python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pygal/pygal-1.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=56b56f497c8b0120262434f65f3ab2c3 diff --git a/metadata/md5-cache/dev-python/pygame-1.9.2_pre20120101-r2 b/metadata/md5-cache/dev-python/pygame-1.9.2_pre20120101-r2 index e0248a5f2edf..43fce609ded0 100644 --- a/metadata/md5-cache/dev-python/pygame-1.9.2_pre20120101-r2 +++ b/metadata/md5-cache/dev-python/pygame-1.9.2_pre20120101-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://people.apache.org/~Arfrever/gentoo/pygame-1.9.2_pre20120101.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=d2caab0be0aa8b26cda4f168a8d51591 diff --git a/metadata/md5-cache/dev-python/pygccxml-1.0.0 b/metadata/md5-cache/dev-python/pygccxml-1.0.0 index 942332a7c8dd..fd4ce3811107 100644 --- a/metadata/md5-cache/dev-python/pygccxml-1.0.0 +++ b/metadata/md5-cache/dev-python/pygccxml-1.0.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-cpp/gccxml-0.6 python_targets_python2_7? ( >=dev-lang/python-2.7.5 REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pygccxml/pygccxml-1.0.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a1328f6417dc6034d59933c72f797189 diff --git a/metadata/md5-cache/dev-python/pygeocoder-1.1.4 b/metadata/md5-cache/dev-python/pygeocoder-1.1.4 index 7fa415938812..1a08289fd085 100644 --- a/metadata/md5-cache/dev-python/pygeocoder-1.1.4 +++ b/metadata/md5-cache/dev-python/pygeocoder-1.1.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.xster.net/pygeocoder/downloads/pygeocoder-1.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=23109a78412754170e425b78a389b02e diff --git a/metadata/md5-cache/dev-python/pygeocoder-1.2.1 b/metadata/md5-cache/dev-python/pygeocoder-1.2.1 index 5810abf47ec3..e7cfe48859d1 100644 --- a/metadata/md5-cache/dev-python/pygeocoder-1.2.1 +++ b/metadata/md5-cache/dev-python/pygeocoder-1.2.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.xster.net/pygeocoder/downloads/pygeocoder-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=967c20bb6b7769b084a45b5cc0ac8b03 diff --git a/metadata/md5-cache/dev-python/pygit2-0.17.3-r1 b/metadata/md5-cache/dev-python/pygit2-0.17.3-r1 index e4e8e8c32b85..9cbaf6830443 100644 --- a/metadata/md5-cache/dev-python/pygit2-0.17.3-r1 +++ b/metadata/md5-cache/dev-python/pygit2-0.17.3-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-libs/libgit2-0.17* python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/libgit2/pygit2/tarball/v0.17.3 -> pygit2-0.17.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=4814aae08d7231e6b60dea71d15d2b8f diff --git a/metadata/md5-cache/dev-python/pygit2-0.18.1 b/metadata/md5-cache/dev-python/pygit2-0.18.1 index b5b8d4790437..4a0a6ae23a08 100644 --- a/metadata/md5-cache/dev-python/pygit2-0.18.1 +++ b/metadata/md5-cache/dev-python/pygit2-0.18.1 @@ -10,5 +10,5 @@ RDEPEND==dev-libs/libgit2-0.18* python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/libgit2/pygit2/archive/v0.18.1.tar.gz -> pygit2-0.18.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=81bb562e71a176c40b1a801d93894c48 diff --git a/metadata/md5-cache/dev-python/pygit2-0.19.0 b/metadata/md5-cache/dev-python/pygit2-0.19.0 index 6b3898e83d63..5aed103fbef7 100644 --- a/metadata/md5-cache/dev-python/pygit2-0.19.0 +++ b/metadata/md5-cache/dev-python/pygit2-0.19.0 @@ -10,5 +10,5 @@ RDEPEND==dev-libs/libgit2-0.19* python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/libgit2/pygit2/archive/v0.19.0.tar.gz -> pygit2-0.19.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=03485057382fa7195a11b45b1a4c8516 diff --git a/metadata/md5-cache/dev-python/pygit2-0.19.1 b/metadata/md5-cache/dev-python/pygit2-0.19.1 index 52c11342b175..4f2b3111a3f3 100644 --- a/metadata/md5-cache/dev-python/pygit2-0.19.1 +++ b/metadata/md5-cache/dev-python/pygit2-0.19.1 @@ -10,5 +10,5 @@ RDEPEND==dev-libs/libgit2-0.19* python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/libgit2/pygit2/archive/v0.19.1.tar.gz -> pygit2-0.19.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6a87812aa4a134bb077f25906c512771 diff --git a/metadata/md5-cache/dev-python/pyglet-1.1.4-r2 b/metadata/md5-cache/dev-python/pyglet-1.1.4-r2 index abbbb8ca50bc..cb16ababbc60 100644 --- a/metadata/md5-cache/dev-python/pyglet-1.1.4-r2 +++ b/metadata/md5-cache/dev-python/pyglet-1.1.4-r2 @@ -10,5 +10,5 @@ RDEPEND=virtual/opengl alsa? ( media-libs/alsa-lib[alisp] ) gtk? ( x11-libs/gtk+ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://pyglet.googlecode.com/files/pyglet-1.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=01c303440130e026417edfe95cc85ca2 diff --git a/metadata/md5-cache/dev-python/pygments-1.5-r1 b/metadata/md5-cache/dev-python/pygments-1.5-r1 index 03e5edfb0a28..bc278947776c 100644 --- a/metadata/md5-cache/dev-python/pygments-1.5-r1 +++ b/metadata/md5-cache/dev-python/pygments-1.5-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/P/Pygments/Pygments-1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2dfc8bd5986c8fd4a022dde3f2e9418d diff --git a/metadata/md5-cache/dev-python/pygments-1.6 b/metadata/md5-cache/dev-python/pygments-1.6 index 6f83eda98df0..cfa2b8c46b7f 100644 --- a/metadata/md5-cache/dev-python/pygments-1.6 +++ b/metadata/md5-cache/dev-python/pygments-1.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/P/Pygments/Pygments-1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6b4b00d5138f1b7c0cdeb042f6e066d2 diff --git a/metadata/md5-cache/dev-python/pygpgme-0.3-r1 b/metadata/md5-cache/dev-python/pygpgme-0.3-r1 index 04c8c38a47ec..dcd91cfb4f71 100644 --- a/metadata/md5-cache/dev-python/pygpgme-0.3-r1 +++ b/metadata/md5-cache/dev-python/pygpgme-0.3-r1 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/gpgme python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2 REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://launchpad.net/pygpgme/trunk/0.3/+download/pygpgme-0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=54be987675c5dc836f3af20e70886ac5 diff --git a/metadata/md5-cache/dev-python/pygraphviz-1.1-r2 b/metadata/md5-cache/dev-python/pygraphviz-1.1-r2 index 44ee5c4b4852..038008592f61 100644 --- a/metadata/md5-cache/dev-python/pygraphviz-1.1-r2 +++ b/metadata/md5-cache/dev-python/pygraphviz-1.1-r2 @@ -10,5 +10,5 @@ RDEPEND=media-gfx/graphviz python_targets_python2_6? ( >=dev-lang/python-2.6.8-r REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://networkx.lanl.gov/download/pygraphviz/pygraphviz-1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=64283ec27067725e4274b497a8a3f06c diff --git a/metadata/md5-cache/dev-python/pyh2o-9999 b/metadata/md5-cache/dev-python/pyh2o-9999 index cf5f7e070a57..245c8c052f3d 100644 --- a/metadata/md5-cache/dev-python/pyh2o-9999 +++ b/metadata/md5-cache/dev-python/pyh2o-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=sci-libs/libh2o-0.2.1 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d32e2a058bc492905bfc2871dc58f419 diff --git a/metadata/md5-cache/dev-python/pyinotify-0.9.4-r1 b/metadata/md5-cache/dev-python/pyinotify-0.9.4-r1 index 71d7a429511d..f48e0b6347fb 100644 --- a/metadata/md5-cache/dev-python/pyinotify-0.9.4-r1 +++ b/metadata/md5-cache/dev-python/pyinotify-0.9.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.9.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=634c2dd914ca3faf9758b651b9eb135a diff --git a/metadata/md5-cache/dev-python/pykerberos-1.1-r2 b/metadata/md5-cache/dev-python/pykerberos-1.1-r2 index 732f24e2d47c..47ca132b49d1 100644 --- a/metadata/md5-cache/dev-python/pykerberos-1.1-r2 +++ b/metadata/md5-cache/dev-python/pykerberos-1.1-r2 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/mit-krb5 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~maksbotan/pykerberos-1.1.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=69010f4c92b3c92a3e9e31a13986b57b diff --git a/metadata/md5-cache/dev-python/pylast-0.5.11-r1 b/metadata/md5-cache/dev-python/pylast-0.5.11-r1 index 1b64bcd0fcd3..7b3bef4be407 100644 --- a/metadata/md5-cache/dev-python/pylast-0.5.11-r1 +++ b/metadata/md5-cache/dev-python/pylast-0.5.11-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pylast/pylast-0.5.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4dda698b25a6e65c1c2f2ded24a57ebd diff --git a/metadata/md5-cache/dev-python/pyliblzma-0.5.3-r1 b/metadata/md5-cache/dev-python/pyliblzma-0.5.3-r1 index e0f4c4ddc620..990ef61387ef 100644 --- a/metadata/md5-cache/dev-python/pyliblzma-0.5.3-r1 +++ b/metadata/md5-cache/dev-python/pyliblzma-0.5.3-r1 @@ -10,5 +10,5 @@ RDEPEND=app-arch/xz-utils python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyliblzma/pyliblzma-0.5.3.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bd4e9739e1bd63bf3c888fef28b118fd diff --git a/metadata/md5-cache/dev-python/pylibmc-1.2.3 b/metadata/md5-cache/dev-python/pylibmc-1.2.3 index 29b33fe53297..0f417e29365d 100644 --- a/metadata/md5-cache/dev-python/pylibmc-1.2.3 +++ b/metadata/md5-cache/dev-python/pylibmc-1.2.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/libmemcached-0.32 python_targets_python2_6? ( >=dev-lang/pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pylibmc/pylibmc-1.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8039a3fad6bedcc3d7a65f6e1055dc82 diff --git a/metadata/md5-cache/dev-python/pylint-0.28.0 b/metadata/md5-cache/dev-python/pylint-0.28.0 index a6afd952d02f..a0a91fbea510 100644 --- a/metadata/md5-cache/dev-python/pylint-0.28.0 +++ b/metadata/md5-cache/dev-python/pylint-0.28.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/logilab-common-0.53.0[python_targets_python2_6(-)?,python_t REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/pylint/pylint-0.28.0.tar.gz mirror://pypi/p/pylint/pylint-0.28.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dbd46decd7c19edc50e91227568a4b05 diff --git a/metadata/md5-cache/dev-python/pylirc-0.0.5-r1 b/metadata/md5-cache/dev-python/pylirc-0.0.5-r1 index 5550dd149fbe..75d1cb2ea986 100644 --- a/metadata/md5-cache/dev-python/pylirc-0.0.5-r1 +++ b/metadata/md5-cache/dev-python/pylirc-0.0.5-r1 @@ -10,5 +10,5 @@ RDEPEND=app-misc/lirc python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pylirc/pylirc-0.0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=334888d1652d3aaa60850d822b5ef6db diff --git a/metadata/md5-cache/dev-python/pylzma-0.4.4-r1 b/metadata/md5-cache/dev-python/pylzma-0.4.4-r1 index a1345ebacc12..bcd50bc66ee6 100644 --- a/metadata/md5-cache/dev-python/pylzma-0.4.4-r1 +++ b/metadata/md5-cache/dev-python/pylzma-0.4.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/m2crypto[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pylzma/pylzma-0.4.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cbcf29ec8ba13bf34c003a2678c0b553 diff --git a/metadata/md5-cache/dev-python/pymad-0.6-r1 b/metadata/md5-cache/dev-python/pymad-0.6-r1 index 99bf805e2c54..856811d9712a 100644 --- a/metadata/md5-cache/dev-python/pymad-0.6-r1 +++ b/metadata/md5-cache/dev-python/pymad-0.6-r1 @@ -10,5 +10,5 @@ RDEPEND=media-libs/libmad python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.spacepants.org/src/pymad/download/pymad-0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce12e212be23de4429541675b2b9e660 diff --git a/metadata/md5-cache/dev-python/pymongo-2.5.2 b/metadata/md5-cache/dev-python/pymongo-2.5.2 index d7f0a513cc57..3afb961df9a5 100644 --- a/metadata/md5-cache/dev-python/pymongo-2.5.2 +++ b/metadata/md5-cache/dev-python/pymongo-2.5.2 @@ -10,5 +10,5 @@ RDEPEND=dev-db/mongodb python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pymongo/pymongo-2.5.2.tar.gz -_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cd4d2e75a43a05334a5c065e9c58addc diff --git a/metadata/md5-cache/dev-python/pymongo-2.6.2 b/metadata/md5-cache/dev-python/pymongo-2.6.2 index db48f75f924d..3795505885ba 100644 --- a/metadata/md5-cache/dev-python/pymongo-2.6.2 +++ b/metadata/md5-cache/dev-python/pymongo-2.6.2 @@ -10,5 +10,5 @@ RDEPEND=dev-db/mongodb python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pymongo/pymongo-2.6.2.tar.gz -_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9a271d6a252288f04f23a14d8c6f4d3e diff --git a/metadata/md5-cache/dev-python/pymongo-2.6.3 b/metadata/md5-cache/dev-python/pymongo-2.6.3 index d35020fa3c78..a1c545bd3abf 100644 --- a/metadata/md5-cache/dev-python/pymongo-2.6.3 +++ b/metadata/md5-cache/dev-python/pymongo-2.6.3 @@ -10,5 +10,5 @@ RDEPEND=dev-db/mongodb python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pymongo/pymongo-2.6.3.tar.gz -_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3d471c89b3a436cfa05f7f5c4573b114 diff --git a/metadata/md5-cache/dev-python/pymountboot-0.2.1 b/metadata/md5-cache/dev-python/pymountboot-0.2.1 index 2219745baccb..697b57ef556e 100644 --- a/metadata/md5-cache/dev-python/pymountboot-0.2.1 +++ b/metadata/md5-cache/dev-python/pymountboot-0.2.1 @@ -10,5 +10,5 @@ RDEPEND=>=sys-apps/util-linux-2.20 python_targets_python2_6? ( >=dev-lang/python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/pymountboot/downloads/pymountboot-0.2.1.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2e8b5ac767a336e9b1ba870d5f04cebe diff --git a/metadata/md5-cache/dev-python/pymountboot-0.2.2 b/metadata/md5-cache/dev-python/pymountboot-0.2.2 index 78e2ea2cb3b5..95ab531124fc 100644 --- a/metadata/md5-cache/dev-python/pymountboot-0.2.2 +++ b/metadata/md5-cache/dev-python/pymountboot-0.2.2 @@ -10,5 +10,5 @@ RDEPEND=>=sys-apps/util-linux-2.20 python_targets_python2_6? ( >=dev-lang/python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://bitbucket/mgorny/pymountboot/downloads/pymountboot-0.2.2.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f3e4fa030af3807825d6b593c7b3b017 diff --git a/metadata/md5-cache/dev-python/pymountboot-9999 b/metadata/md5-cache/dev-python/pymountboot-9999 index 7a13484bb786..50f64762ad03 100644 --- a/metadata/md5-cache/dev-python/pymountboot-9999 +++ b/metadata/md5-cache/dev-python/pymountboot-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=sys-apps/util-linux-2.20 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2f7b53c4cfc56bf901e4c95cecfb0ab diff --git a/metadata/md5-cache/dev-python/pympler-0.3.1 b/metadata/md5-cache/dev-python/pympler-0.3.1 index 3e71fe8bca1d..d4a296f606c1 100644 --- a/metadata/md5-cache/dev-python/pympler-0.3.1 +++ b/metadata/md5-cache/dev-python/pympler-0.3.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/bottle[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/P/Pympler/Pympler-0.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=434ac27fbb1f68343c2366a41f1d0960 diff --git a/metadata/md5-cache/dev-python/pymssql-1.0.2-r1 b/metadata/md5-cache/dev-python/pymssql-1.0.2-r1 index 06090334fea5..92624400bee1 100644 --- a/metadata/md5-cache/dev-python/pymssql-1.0.2-r1 +++ b/metadata/md5-cache/dev-python/pymssql-1.0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-db/freetds-0.63[mssql] dev-python/setuptools[python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/pymssql/pymssql-1.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=896deaa2834bf593e291ff834ff5a017 diff --git a/metadata/md5-cache/dev-python/pynotifier-0.7.0-r2 b/metadata/md5-cache/dev-python/pynotifier-0.7.0-r2 index ee41ddcf9261..8d8f83a1146b 100644 --- a/metadata/md5-cache/dev-python/pynotifier-0.7.0-r2 +++ b/metadata/md5-cache/dev-python/pynotifier-0.7.0-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/twisted-core gtk? ( dev-python/pygobject:2[python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.bitkipper.net/bytes/debian/dists/unstable/source/pynotifier_0.7.0.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1c6fc14df9e607813fb4aac5509f3383 diff --git a/metadata/md5-cache/dev-python/pynzb-0.1.0-r1 b/metadata/md5-cache/dev-python/pynzb-0.1.0-r1 index e5fb188d3c95..89c2c4e157ed 100644 --- a/metadata/md5-cache/dev-python/pynzb-0.1.0-r1 +++ b/metadata/md5-cache/dev-python/pynzb-0.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pynzb/pynzb-0.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=794ccaa426c0c08e2ca0a78f60c4b4ec diff --git a/metadata/md5-cache/dev-python/pyogg-1.3-r2 b/metadata/md5-cache/dev-python/pyogg-1.3-r2 index ef7376d9c8e4..a4e8a6472947 100644 --- a/metadata/md5-cache/dev-python/pyogg-1.3-r2 +++ b/metadata/md5-cache/dev-python/pyogg-1.3-r2 @@ -10,5 +10,5 @@ RDEPEND=>=media-libs/libogg-1.0 python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/pyogg-1.3-r1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b3ece873107e0620562ab43ae5bda132 diff --git a/metadata/md5-cache/dev-python/pyopenal-0.1.6-r1 b/metadata/md5-cache/dev-python/pyopenal-0.1.6-r1 index cb872cc0c1f5..6ad044f09a9a 100644 --- a/metadata/md5-cache/dev-python/pyopenal-0.1.6-r1 +++ b/metadata/md5-cache/dev-python/pyopenal-0.1.6-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyogg-1.1[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.gna.org/pyopenal/PyOpenAL-0.1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=22d5ee8286cd198791ef33130ed3273f diff --git a/metadata/md5-cache/dev-python/pyopengl-3.0.2-r1 b/metadata/md5-cache/dev-python/pyopengl-3.0.2-r1 index dff87e962418..ddfdb2587b85 100644 --- a/metadata/md5-cache/dev-python/pyopengl-3.0.2-r1 +++ b/metadata/md5-cache/dev-python/pyopengl-3.0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=media-libs/freeglut virtual/opengl x11-libs/libXi x11-libs/libXmu tk? ( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/P/PyOpenGL/PyOpenGL-3.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a0965812c6d5799d8845c1e53a6920e8 diff --git a/metadata/md5-cache/dev-python/pyopenssl-0.13.1 b/metadata/md5-cache/dev-python/pyopenssl-0.13.1 index f2572d99723e..dec5c3c3e494 100644 --- a/metadata/md5-cache/dev-python/pyopenssl-0.13.1 +++ b/metadata/md5-cache/dev-python/pyopenssl-0.13.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/openssl-0.9.6g python_targets_python2_6? ( >=dev-lang/python- REQUIRED_USE=doc? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pyOpenSSL/pyOpenSSL-0.13.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3e085827a6792dd48ae7ca818bb4c17a diff --git a/metadata/md5-cache/dev-python/pyopenssl-0.13.1-r1 b/metadata/md5-cache/dev-python/pyopenssl-0.13.1-r1 index 3384e035235c..3ff3a823f9b1 100644 --- a/metadata/md5-cache/dev-python/pyopenssl-0.13.1-r1 +++ b/metadata/md5-cache/dev-python/pyopenssl-0.13.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/openssl-0.9.6g python_targets_python2_6? ( >=dev-lang/python- REQUIRED_USE=doc? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pyOpenSSL/pyOpenSSL-0.13.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c82f4d7bca5472f875831dc497f2e920 diff --git a/metadata/md5-cache/dev-python/pypam-0.5.0-r2 b/metadata/md5-cache/dev-python/pypam-0.5.0-r2 index cd5fd542aac6..ae455db289c6 100644 --- a/metadata/md5-cache/dev-python/pypam-0.5.0-r2 +++ b/metadata/md5-cache/dev-python/pypam-0.5.0-r2 @@ -10,5 +10,5 @@ RDEPEND=>=sys-libs/pam-0.64 python_targets_python2_6? ( >=dev-lang/python-2.6.8- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.pangalactic.org/PyPAM/PyPAM-0.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6a93009e22a8ea7e64098b67327d24e0 diff --git a/metadata/md5-cache/dev-python/pyparsing-1.5.6-r2 b/metadata/md5-cache/dev-python/pyparsing-1.5.6-r2 index 4acd325ba7ca..7e3276086690 100644 --- a/metadata/md5-cache/dev-python/pyparsing-1.5.6-r2 +++ b/metadata/md5-cache/dev-python/pyparsing-1.5.6-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/pyparsing/pyparsing-1.5.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dd3cb45b315d3aae723e265349bdfe82 diff --git a/metadata/md5-cache/dev-python/pyparsing-2.0.1 b/metadata/md5-cache/dev-python/pyparsing-2.0.1 index 5be6d090dd0b..b8e5897440bd 100644 --- a/metadata/md5-cache/dev-python/pyparsing-2.0.1 +++ b/metadata/md5-cache/dev-python/pyparsing-2.0.1 @@ -10,5 +10,5 @@ RDEPEND=!dev-python/pyparsing:py2 !dev-python/pyparsing:py3 python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/pyparsing/pyparsing-2.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0b68b2eeadc5df9fe4393aac6a20dc0d diff --git a/metadata/md5-cache/dev-python/pyparted-3.10 b/metadata/md5-cache/dev-python/pyparted-3.10 index 934a0288312a..e4167155bc6a 100644 --- a/metadata/md5-cache/dev-python/pyparted-3.10 +++ b/metadata/md5-cache/dev-python/pyparted-3.10 @@ -10,5 +10,5 @@ RDEPEND=>=sys-block/parted-3.1 dev-python/decorator sys-libs/ncurses python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=https://fedorahosted.org/releases/p/y/pyparted/pyparted-3.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e5066819cecfeb8918b3eba7bae1369d diff --git a/metadata/md5-cache/dev-python/pypax-0.8.1-r1 b/metadata/md5-cache/dev-python/pypax-0.8.1-r1 index 380824297603..d1e7c0819855 100644 --- a/metadata/md5-cache/dev-python/pypax-0.8.1-r1 +++ b/metadata/md5-cache/dev-python/pypax-0.8.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( ptpax xtpax ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~blueness/elfix/elfix-0.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f1911ff3704946f6601740317d7dffe9 diff --git a/metadata/md5-cache/dev-python/pypax-0.8.3 b/metadata/md5-cache/dev-python/pypax-0.8.3 index 83d93b8e8186..c203f9097ce5 100644 --- a/metadata/md5-cache/dev-python/pypax-0.8.3 +++ b/metadata/md5-cache/dev-python/pypax-0.8.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( ptpax xtpax ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~blueness/elfix/elfix-0.8.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=37ca65ae74056fcdb226a73f00631b45 diff --git a/metadata/md5-cache/dev-python/pyphen-0.8 b/metadata/md5-cache/dev-python/pyphen-0.8 index c40118065102..909962f07dad 100644 --- a/metadata/md5-cache/dev-python/pyphen-0.8 +++ b/metadata/md5-cache/dev-python/pyphen-0.8 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/P/Pyphen/Pyphen-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=58e75d413040b75cd28ed64e8d93cac7 diff --git a/metadata/md5-cache/dev-python/pyplusplus-1.0.0 b/metadata/md5-cache/dev-python/pyplusplus-1.0.0 index a0bb5b90bde9..70dde111e4b4 100644 --- a/metadata/md5-cache/dev-python/pyplusplus-1.0.0 +++ b/metadata/md5-cache/dev-python/pyplusplus-1.0.0 @@ -10,5 +10,5 @@ RDEPEND==dev-python/pygccxml-1.0.0 python_targets_python2_7? ( >=dev-lang/python REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pygccxml/pyplusplus-1.0.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d3d091b7271f54aaa93ca082ab7cbd18 diff --git a/metadata/md5-cache/dev-python/pyplusplus-1.0.0-r1 b/metadata/md5-cache/dev-python/pyplusplus-1.0.0-r1 index a7a1e9a61f78..b849070f29a2 100644 --- a/metadata/md5-cache/dev-python/pyplusplus-1.0.0-r1 +++ b/metadata/md5-cache/dev-python/pyplusplus-1.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/pygccxml-1.0.0 python_targets_python2_7? ( >=dev-lang/python REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pygccxml/pyplusplus-1.0.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a1dad7fe5cfdc741a35a1c9da141c7a9 diff --git a/metadata/md5-cache/dev-python/pyprotocols-1.0_pre2306-r1 b/metadata/md5-cache/dev-python/pyprotocols-1.0_pre2306-r1 index 33cca962465c..2e495a80ec18 100644 --- a/metadata/md5-cache/dev-python/pyprotocols-1.0_pre2306-r1 +++ b/metadata/md5-cache/dev-python/pyprotocols-1.0_pre2306-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/decoratortools-1.4[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/PyProtocols-1.0a0dev_r2306.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=62bc7d5b591ba2bc584d3e427f07af1c diff --git a/metadata/md5-cache/dev-python/pyptlib-0.0.5 b/metadata/md5-cache/dev-python/pyptlib-0.0.5 index 04f0c45aa1a0..9a86d2cba2f4 100644 --- a/metadata/md5-cache/dev-python/pyptlib-0.0.5 +++ b/metadata/md5-cache/dev-python/pyptlib-0.0.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyptlib/pyptlib-0.0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9bc6e18250865d1b76646eaaf645f2d4 diff --git a/metadata/md5-cache/dev-python/pyquery-1.2.1-r1 b/metadata/md5-cache/dev-python/pyquery-1.2.1-r1 index 84520578e9d5..be631da7394e 100644 --- a/metadata/md5-cache/dev-python/pyquery-1.2.1-r1 +++ b/metadata/md5-cache/dev-python/pyquery-1.2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/lxml-2.1[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyquery/pyquery-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=379b1e39c3364b91650942a7b492db84 diff --git a/metadata/md5-cache/dev-python/pyquery-1.2.4 b/metadata/md5-cache/dev-python/pyquery-1.2.4 index 46a59358720e..d516d35fff5b 100644 --- a/metadata/md5-cache/dev-python/pyquery-1.2.4 +++ b/metadata/md5-cache/dev-python/pyquery-1.2.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/lxml-2.1[beautifulsoup3?,python_targets_python2_6(-)?,pytho REQUIRED_USE=test? ( beautifulsoup3 ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyquery/pyquery-1.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=097b0a9ba5f3226c2c31cbbed43db9bc diff --git a/metadata/md5-cache/dev-python/pyrax-1.3.6 b/metadata/md5-cache/dev-python/pyrax-1.3.6 index 6fc200059f93..fcc3cab685df 100644 --- a/metadata/md5-cache/dev-python/pyrax-1.3.6 +++ b/metadata/md5-cache/dev-python/pyrax-1.3.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_p REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyrax/pyrax-1.3.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=777ded3cabfb6b4f60ea86c8eb7e253a diff --git a/metadata/md5-cache/dev-python/pyrax-1.4.3 b/metadata/md5-cache/dev-python/pyrax-1.4.3 index 45bd9453a367..242b3cd0a4c3 100644 --- a/metadata/md5-cache/dev-python/pyrax-1.4.3 +++ b/metadata/md5-cache/dev-python/pyrax-1.4.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_p REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyrax/pyrax-1.4.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ee9a7f8008c634cbf61db309f824660c diff --git a/metadata/md5-cache/dev-python/pyrax-1.4.7 b/metadata/md5-cache/dev-python/pyrax-1.4.7 index 123316861ba5..b09642393af6 100644 --- a/metadata/md5-cache/dev-python/pyrax-1.4.7 +++ b/metadata/md5-cache/dev-python/pyrax-1.4.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_p REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyrax/pyrax-1.4.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=827d5ddc2ee331269fb47790176b83f1 diff --git a/metadata/md5-cache/dev-python/pyrax-1.4.7-r1 b/metadata/md5-cache/dev-python/pyrax-1.4.7-r1 index 9a24c6beaba7..6abe82c28642 100644 --- a/metadata/md5-cache/dev-python/pyrax-1.4.7-r1 +++ b/metadata/md5-cache/dev-python/pyrax-1.4.7-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_p REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyrax/pyrax-1.4.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=88da7f10e2cf988deef9829a3092a768 diff --git a/metadata/md5-cache/dev-python/pyrax-9999 b/metadata/md5-cache/dev-python/pyrax-9999 index 9d1b764e2ec3..9531147166a8 100644 --- a/metadata/md5-cache/dev-python/pyrax-9999 +++ b/metadata/md5-cache/dev-python/pyrax-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/keyring[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/prettytable >=dev-python/python-novaclient-2.10.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-swiftclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/rackspace-novaclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/simplejson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8c3fdb0705a9f32a756f3310e843aaef diff --git a/metadata/md5-cache/dev-python/pyregion-1.1.1 b/metadata/md5-cache/dev-python/pyregion-1.1.1 index 7c3ec5ce9a9a..5557dc89ca05 100644 --- a/metadata/md5-cache/dev-python/pyregion-1.1.1 +++ b/metadata/md5-cache/dev-python/pyregion-1.1.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyregion/pyregion-1.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dea295a1f2de3c622dd2c36518dc474c diff --git a/metadata/md5-cache/dev-python/pyrex-0.9.9-r1 b/metadata/md5-cache/dev-python/pyrex-0.9.9-r1 index 962d507c4911..0705fd3603af 100644 --- a/metadata/md5-cache/dev-python/pyrex-0.9.9-r1 +++ b/metadata/md5-cache/dev-python/pyrex-0.9.9-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/Pyrex-0.9.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=19e290c2c4cb105e30c3f20af73f7a69 diff --git a/metadata/md5-cache/dev-python/pyro-3.16-r1 b/metadata/md5-cache/dev-python/pyro-3.16-r1 index f49a00b1bcb3..20196f72d7fd 100644 --- a/metadata/md5-cache/dev-python/pyro-3.16-r1 +++ b/metadata/md5-cache/dev-python/pyro-3.16-r1 @@ -10,5 +10,5 @@ RDEPEND=!dev-python/pyro:0 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=3 SRC_URI=mirror://pypi/P/Pyro/Pyro-3.16.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6078b493b9fba7dda61a5ed3a8707581 diff --git a/metadata/md5-cache/dev-python/pyro-4.17-r1 b/metadata/md5-cache/dev-python/pyro-4.17-r1 index 65753d96cfb0..829e6bcb0f83 100644 --- a/metadata/md5-cache/dev-python/pyro-4.17-r1 +++ b/metadata/md5-cache/dev-python/pyro-4.17-r1 @@ -10,5 +10,5 @@ RDEPEND=!dev-python/pyro:0 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=4 SRC_URI=mirror://pypi/P/Pyro4/Pyro4-4.17.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4c3f9617614de9b997b667262d07d4e0 diff --git a/metadata/md5-cache/dev-python/pyro-4.20 b/metadata/md5-cache/dev-python/pyro-4.20 index 780df459371e..59e0fb004327 100644 --- a/metadata/md5-cache/dev-python/pyro-4.20 +++ b/metadata/md5-cache/dev-python/pyro-4.20 @@ -10,5 +10,5 @@ RDEPEND=!dev-python/pyro:0 dev-python/serpent[python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=4 SRC_URI=mirror://pypi/P/Pyro4/Pyro4-4.20.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c351e15dca96ff3d66e0fe3c0b0c263d diff --git a/metadata/md5-cache/dev-python/pyro-4.22 b/metadata/md5-cache/dev-python/pyro-4.22 index 87e68be9eead..5142eb0a0a4f 100644 --- a/metadata/md5-cache/dev-python/pyro-4.22 +++ b/metadata/md5-cache/dev-python/pyro-4.22 @@ -10,5 +10,5 @@ RDEPEND=!dev-python/pyro:0 dev-python/serpent[python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=4 SRC_URI=mirror://pypi/P/Pyro4/Pyro4-4.22.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bc335e0c72519da54d8a74afb2075718 diff --git a/metadata/md5-cache/dev-python/pysctp-0.6 b/metadata/md5-cache/dev-python/pysctp-0.6 index 4e636c3e2087..05b84c9204b4 100644 --- a/metadata/md5-cache/dev-python/pysctp-0.6 +++ b/metadata/md5-cache/dev-python/pysctp-0.6 @@ -10,5 +10,5 @@ RDEPEND=net-misc/lksctp-tools python_targets_python2_6? ( >=dev-lang/python-2.6. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/philpraxis/pysctp/archive/v0.6.tar.gz -> pysctp-0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5aec744f4c16a3322cb2980657bafe42 diff --git a/metadata/md5-cache/dev-python/pyserial-2.6-r1 b/metadata/md5-cache/dev-python/pyserial-2.6-r1 index d9d6d11d1241..7826a6902a68 100644 --- a/metadata/md5-cache/dev-python/pyserial-2.6-r1 +++ b/metadata/md5-cache/dev-python/pyserial-2.6-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pyserial/pyserial-2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f9e5ab29f6391d3d2d39e86bbd4213d3 diff --git a/metadata/md5-cache/dev-python/pysnmp-4.2.2-r1 b/metadata/md5-cache/dev-python/pysnmp-4.2.2-r1 index 8609ffccd2bf..2cce92814803 100644 --- a/metadata/md5-cache/dev-python/pysnmp-4.2.2-r1 +++ b/metadata/md5-cache/dev-python/pysnmp-4.2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyasn1-0.1.2[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pysnmp/pysnmp-4.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ac760125db9599a65b0241eef23e9d44 diff --git a/metadata/md5-cache/dev-python/pyspf-2.0.7-r1 b/metadata/md5-cache/dev-python/pyspf-2.0.7-r1 index e9be087a21b9..822fd0b895c5 100644 --- a/metadata/md5-cache/dev-python/pyspf-2.0.7-r1 +++ b/metadata/md5-cache/dev-python/pyspf-2.0.7-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/authres[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyspf/pyspf-2.0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e9c12aae57ce469e6b2f2f02da7a3a89 diff --git a/metadata/md5-cache/dev-python/pysvn-1.7.7 b/metadata/md5-cache/dev-python/pysvn-1.7.7 index be9eda21c81b..8090d98cc9ba 100644 --- a/metadata/md5-cache/dev-python/pysvn-1.7.7 +++ b/metadata/md5-cache/dev-python/pysvn-1.7.7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://pysvn.barrys-emacs.org/source_kits/pysvn-1.7.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eafbd14b240af10e0f65259ee4585fe3 diff --git a/metadata/md5-cache/dev-python/pysvn-1.7.8 b/metadata/md5-cache/dev-python/pysvn-1.7.8 index 079e258cdc40..fc13ee43523e 100644 --- a/metadata/md5-cache/dev-python/pysvn-1.7.8 +++ b/metadata/md5-cache/dev-python/pysvn-1.7.8 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://pysvn.barrys-emacs.org/source_kits/pysvn-1.7.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5478a6b834511f5adcfe23a7cb82190b diff --git a/metadata/md5-cache/dev-python/pytables-3.0.0 b/metadata/md5-cache/dev-python/pytables-3.0.0 index 16507480c0e9..5e302d7fda3a 100644 --- a/metadata/md5-cache/dev-python/pytables-3.0.0 +++ b/metadata/md5-cache/dev-python/pytables-3.0.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/t/tables/tables-3.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=73ffb2c282c6a358620e45122954a702 diff --git a/metadata/md5-cache/dev-python/pytest-2.3.4 b/metadata/md5-cache/dev-python/pytest-2.3.4 index 818875b56f23..2b927d49f2ac 100644 --- a/metadata/md5-cache/dev-python/pytest-2.3.4 +++ b/metadata/md5-cache/dev-python/pytest-2.3.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/py-1.4.12[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest/pytest-2.3.4.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=387d4c53efc14a63e9b32b80f2884c9d diff --git a/metadata/md5-cache/dev-python/pytest-2.3.5 b/metadata/md5-cache/dev-python/pytest-2.3.5 index 80bce36b6ab8..a7c8a79144aa 100644 --- a/metadata/md5-cache/dev-python/pytest-2.3.5 +++ b/metadata/md5-cache/dev-python/pytest-2.3.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/py-1.4.13[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest/pytest-2.3.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b1c18618332482dbfd39f48c71752979 diff --git a/metadata/md5-cache/dev-python/pytest-cov-1.6 b/metadata/md5-cache/dev-python/pytest-cov-1.6 index 5323505dc872..c0fce206d726 100644 --- a/metadata/md5-cache/dev-python/pytest-cov-1.6 +++ b/metadata/md5-cache/dev-python/pytest-cov-1.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pytest[python_targets_python2_7(-)?,python_targets_python3_2( REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-cov/pytest-cov-1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ada9ce3c17b99c7cbbedc1fe9ca8b72 diff --git a/metadata/md5-cache/dev-python/pytest-runner-1.1-r1 b/metadata/md5-cache/dev-python/pytest-runner-1.1-r1 index 2ceab34bb591..aa8a61500ac6 100644 --- a/metadata/md5-cache/dev-python/pytest-runner-1.1-r1 +++ b/metadata/md5-cache/dev-python/pytest-runner-1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pytest[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pytest-runner/pytest-runner-1.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce3220c82a92fe6005df9bedfc9bba08 diff --git a/metadata/md5-cache/dev-python/python-biggles-1.6.6-r1 b/metadata/md5-cache/dev-python/python-biggles-1.6.6-r1 index 556fae521842..cca76970a32e 100644 --- a/metadata/md5-cache/dev-python/python-biggles-1.6.6-r1 +++ b/metadata/md5-cache/dev-python/python-biggles-1.6.6-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/biggles/python2-biggles-1.6.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=46c3e73e2bb4534adab06a8675d3dab2 diff --git a/metadata/md5-cache/dev-python/python-ceilometerclient-1.0.6 b/metadata/md5-cache/dev-python/python-ceilometerclient-1.0.6 new file mode 100644 index 000000000000..209af753b844 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-ceilometerclient-1.0.6 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=This is a client library for Ceilometer built on the Ceilometer API. +EAPI=5 +HOMEPAGE=https://github.com/openstack/python-ceilometerclient +IUSE=python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/prettytable-0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-keystoneclient-0.3.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-ceilometerclient/python-ceilometerclient-1.0.6.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=77bc8223ef304cebd2fb8aa34661fcbc diff --git a/metadata/md5-cache/dev-python/python-cinderclient-1.0.5-r1 b/metadata/md5-cache/dev-python/python-cinderclient-1.0.5-r1 index 8c1e7d6e6635..b6042daf82df 100644 --- a/metadata/md5-cache/dev-python/python-cinderclient-1.0.5-r1 +++ b/metadata/md5-cache/dev-python/python-cinderclient-1.0.5-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-cinderclient/python-cinderclient-1.0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8de62a7cf5760e28b7e49cc449a93e4d diff --git a/metadata/md5-cache/dev-python/python-daemon-1.6-r1 b/metadata/md5-cache/dev-python/python-daemon-1.6-r1 index 3c6be2c25224..54e60048ef19 100644 --- a/metadata/md5-cache/dev-python/python-daemon-1.6-r1 +++ b/metadata/md5-cache/dev-python/python-daemon-1.6-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/lockfile-0.9[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-daemon/python-daemon-1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2ae516cd5219a679ead8b706b5480d2a diff --git a/metadata/md5-cache/dev-python/python-dateutil-2.1-r1 b/metadata/md5-cache/dev-python/python-dateutil-2.1-r1 index 3b4e65956302..0ffe58f3c395 100644 --- a/metadata/md5-cache/dev-python/python-dateutil-2.1-r1 +++ b/metadata/md5-cache/dev-python/python-dateutil-2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/python-dateutil/python-dateutil-2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5109ecb5708bd30c2e1ab525c3af94e2 diff --git a/metadata/md5-cache/dev-python/python-debian-0.1.21_p2 b/metadata/md5-cache/dev-python/python-debian-0.1.21_p2 index fcc75af32919..b8f66ae8c813 100644 --- a/metadata/md5-cache/dev-python/python-debian-0.1.21_p2 +++ b/metadata/md5-cache/dev-python/python-debian-0.1.21_p2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/chardet[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://debian/pool/main/p/python-debian/python-debian_0.1.21+nmu2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=36b88b2b96d565342e40c8770f8115a0 diff --git a/metadata/md5-cache/dev-python/python-digest-1.7-r1 b/metadata/md5-cache/dev-python/python-digest-1.7-r1 index 6968f3b67259..53e9b4bf4c3a 100644 --- a/metadata/md5-cache/dev-python/python-digest-1.7-r1 +++ b/metadata/md5-cache/dev-python/python-digest-1.7-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/python-digest/python-digest-1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4e2a62cb5927973a945b47438af344e3 diff --git a/metadata/md5-cache/dev-python/python-distutils-extra-2.33-r1 b/metadata/md5-cache/dev-python/python-distutils-extra-2.33-r1 index 0f8253a74252..49da358824c1 100644 --- a/metadata/md5-cache/dev-python/python-distutils-extra-2.33-r1 +++ b/metadata/md5-cache/dev-python/python-distutils-extra-2.33-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://launchpad.net/python-distutils-extra/trunk/2.33/+download/python-distutils-extra-2.33.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=89c7e5d8d6cb4b34f01fb65fafb8a741 diff --git a/metadata/md5-cache/dev-python/python-distutils-extra-2.37-r1 b/metadata/md5-cache/dev-python/python-distutils-extra-2.37-r1 index 260e23fbc61c..f13fe433e546 100644 --- a/metadata/md5-cache/dev-python/python-distutils-extra-2.37-r1 +++ b/metadata/md5-cache/dev-python/python-distutils-extra-2.37-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://launchpad.net/python-distutils-extra/trunk/2.37/+download/python-distutils-extra-2.37.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dab77dc98c897d583636eaac9fd1b22e diff --git a/metadata/md5-cache/dev-python/python-djvulibre-0.3.9 b/metadata/md5-cache/dev-python/python-djvulibre-0.3.9 index 12a4162583ae..8d15f87e9d94 100644 --- a/metadata/md5-cache/dev-python/python-djvulibre-0.3.9 +++ b/metadata/md5-cache/dev-python/python-djvulibre-0.3.9 @@ -10,5 +10,5 @@ RDEPEND=app-text/djvu python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-djvulibre/python-djvulibre-0.3.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5d8d3966840c5b044963fb553ca0f9b3 diff --git a/metadata/md5-cache/dev-python/python-geoclue-0.1.0-r1 b/metadata/md5-cache/dev-python/python-geoclue-0.1.0-r1 index c73cfecd3de1..6f000da55c97 100644 --- a/metadata/md5-cache/dev-python/python-geoclue-0.1.0-r1 +++ b/metadata/md5-cache/dev-python/python-geoclue-0.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=app-misc/geoclue dev-python/dbus-python[python_targets_python2_6(-)?,pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.paulocabido.com/soc/python-geoclue/python-geoclue-0.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=f6fd2322047e261490f91d5d82294fdd diff --git a/metadata/md5-cache/dev-python/python-gflags-2.0 b/metadata/md5-cache/dev-python/python-gflags-2.0 index d0142a7c7c30..d94c7f4626e3 100644 --- a/metadata/md5-cache/dev-python/python-gflags-2.0 +++ b/metadata/md5-cache/dev-python/python-gflags-2.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://python-gflags.googlecode.com/files/python-gflags-2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=24986461650ea3e624df548d1b688bfb diff --git a/metadata/md5-cache/dev-python/python-glanceclient-0.10.0 b/metadata/md5-cache/dev-python/python-glanceclient-0.10.0 index c5106792782c..a042bdd801e8 100644 --- a/metadata/md5-cache/dev-python/python-glanceclient-0.10.0 +++ b/metadata/md5-cache/dev-python/python-glanceclient-0.10.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-glanceclient/python-glanceclient-0.10.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=20328893a9dbf152edd3392f033d7971 diff --git a/metadata/md5-cache/dev-python/python-gnupg-0.3.1-r1 b/metadata/md5-cache/dev-python/python-gnupg-0.3.1-r1 index baa5967b1219..c82b824d261e 100644 --- a/metadata/md5-cache/dev-python/python-gnupg-0.3.1-r1 +++ b/metadata/md5-cache/dev-python/python-gnupg-0.3.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://python-gnupg.googlecode.com/files/python-gnupg-0.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7d82e721212b0bf4d8e1e3f417a61882 diff --git a/metadata/md5-cache/dev-python/python-gnupg-0.3.2 b/metadata/md5-cache/dev-python/python-gnupg-0.3.2 index 68748a99ae39..37078e489843 100644 --- a/metadata/md5-cache/dev-python/python-gnupg-0.3.2 +++ b/metadata/md5-cache/dev-python/python-gnupg-0.3.2 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/gnupg python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://python-gnupg.googlecode.com/files/python-gnupg-0.3.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aa900b56a31e14769ee49f6822ccca7e diff --git a/metadata/md5-cache/dev-python/python-gtkmvc-1.99.1 b/metadata/md5-cache/dev-python/python-gtkmvc-1.99.1 index 4c7b1607f645..9c5de614a649 100644 --- a/metadata/md5-cache/dev-python/python-gtkmvc-1.99.1 +++ b/metadata/md5-cache/dev-python/python-gtkmvc-1.99.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pygtk-2.24.0 python_targets_python2_6? ( >=dev-lang/python- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pygtkmvc/python-gtkmvc-1.99.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=62ea76f892d1d181287b121d05eccb52 diff --git a/metadata/md5-cache/dev-python/python-heatclient-0.2.2-r1 b/metadata/md5-cache/dev-python/python-heatclient-0.2.2-r1 index e5ca7cd1b6a4..e31762983d28 100644 --- a/metadata/md5-cache/dev-python/python-heatclient-0.2.2-r1 +++ b/metadata/md5-cache/dev-python/python-heatclient-0.2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/d2to1-0.2.10[python_targets_python2_7(-)?,-python_single_ta REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-heatclient/python-heatclient-0.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0d10add9a3b42f6f06c8edff4e048457 diff --git a/metadata/md5-cache/dev-python/python-heatclient-0.2.4-r1 b/metadata/md5-cache/dev-python/python-heatclient-0.2.4-r1 index 885232d001ec..a478af8a966d 100644 --- a/metadata/md5-cache/dev-python/python-heatclient-0.2.4-r1 +++ b/metadata/md5-cache/dev-python/python-heatclient-0.2.4-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] test? ( dev-python/mox[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/nose[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/nose-exclude[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/nosexcover[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/nosehtmloutput[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/openstack-nose-plugin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ~dev-python/pep8-1.4.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/setuptools-git-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/hacking-0.5.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/coverage-3.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/fixtures-0.3.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mock-0.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mox-0.5.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testscenarios-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/testrepository-0.0.17[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testtools-0.9.32[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] DESCRIPTION=This is a client library for Heat built on the Heat orchestration API. EAPI=5 HOMEPAGE=https://github.com/openstack/python-heatclient IUSE=test python_targets_python2_7 KEYWORDS=~amd64 ~x86 LICENSE=Apache-2.0 -RDEPEND=>=dev-python/pbr-0.5.16[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/prettytable-0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/prettytable-0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-keystoneclient-0.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-heatclient/python-heatclient-0.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d3a4f6f91d0402a4806c7c3b19b4536c +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=d131294152e021b38932b42f354da4b9 diff --git a/metadata/md5-cache/dev-python/python-heatclient-0.2.5 b/metadata/md5-cache/dev-python/python-heatclient-0.2.5 new file mode 100644 index 000000000000..84be9d65d80d --- /dev/null +++ b/metadata/md5-cache/dev-python/python-heatclient-0.2.5 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/hacking-0.5.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/coverage-3.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/fixtures-0.3.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mock-0.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mox-0.5.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testscenarios-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/testrepository-0.0.17[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testtools-0.9.32[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=This is a client library for Heat built on the Heat orchestration API. +EAPI=5 +HOMEPAGE=https://github.com/openstack/python-heatclient +IUSE=test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/prettytable-0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-keystoneclient-0.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pyyaml-3.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-heatclient/python-heatclient-0.2.5.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=d2a76ed97724f0957be36ac417d4d32c diff --git a/metadata/md5-cache/dev-python/python-heatclient-9999 b/metadata/md5-cache/dev-python/python-heatclient-9999 index fca9c4bb41b1..ede93c1e1f40 100644 --- a/metadata/md5-cache/dev-python/python-heatclient-9999 +++ b/metadata/md5-cache/dev-python/python-heatclient-9999 @@ -9,5 +9,5 @@ RDEPEND=>=dev-python/d2to1-0.2.10[python_targets_python2_7(-)?,-python_single_ta REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f35c612ef41113e61e7b634cc353bc79 diff --git a/metadata/md5-cache/dev-python/python-irclib-0.4.8-r1 b/metadata/md5-cache/dev-python/python-irclib-0.4.8-r1 index 6f939b058227..ae82a5a7a492 100644 --- a/metadata/md5-cache/dev-python/python-irclib-0.4.8-r1 +++ b/metadata/md5-cache/dev-python/python-irclib-0.4.8-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/python-irclib/python-irclib-0.4.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=af353bf222fe95fcc950f983c4412a37 diff --git a/metadata/md5-cache/dev-python/python-iwscan-20080402-r1 b/metadata/md5-cache/dev-python/python-iwscan-20080402-r1 index ae71b208d489..df4ee75d9886 100644 --- a/metadata/md5-cache/dev-python/python-iwscan-20080402-r1 +++ b/metadata/md5-cache/dev-python/python-iwscan-20080402-r1 @@ -10,5 +10,5 @@ RDEPEND=net-wireless/wireless-tools python_targets_python2_6? ( >=dev-lang/pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://gentoo/python-iwscan-20080402.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ecaf122d74f1d2b1c343aaffacde7d4 diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-0.2.5 b/metadata/md5-cache/dev-python/python-keystoneclient-0.2.5 index c7156e44798a..896de3b08022 100644 --- a/metadata/md5-cache/dev-python/python-keystoneclient-0.2.5 +++ b/metadata/md5-cache/dev-python/python-keystoneclient-0.2.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-keystoneclient/python-keystoneclient-0.2.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ab0bf08a70aac4761388352a28761ff diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-0.3.1 b/metadata/md5-cache/dev-python/python-keystoneclient-0.3.1 index 6a6a30c206fe..8ee08fe5faac 100644 --- a/metadata/md5-cache/dev-python/python-keystoneclient-0.3.1 +++ b/metadata/md5-cache/dev-python/python-keystoneclient-0.3.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-keystoneclient/python-keystoneclient-0.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1d7c5f19c4c19602eca36f424842c5d9 diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-0.3.2 b/metadata/md5-cache/dev-python/python-keystoneclient-0.3.2 new file mode 100644 index 000000000000..6416b7fef2e4 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-keystoneclient-0.3.2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/hacking-0.5.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/coverage-3.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/fixtures-0.3.12[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/keyring-1.6.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mock-0.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mox-0.5.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pycrypto-2.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testrepository-0.0.17[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testtools-0.9.32[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/Babel-0.9.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=A client for the OpenStack Keystone API +EAPI=5 +HOMEPAGE=https://github.com/openstack/python-keystoneclient +IUSE=test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/prettytable-0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/requests-1.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/simplejson-2.0.9[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/six[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/p/python-keystoneclient/python-keystoneclient-0.3.2.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=2b050b49f110f5fbe3391b57d250bf86 diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-9999 b/metadata/md5-cache/dev-python/python-keystoneclient-9999 index 97120cbc1cb1..715c73e75c38 100644 --- a/metadata/md5-cache/dev-python/python-keystoneclient-9999 +++ b/metadata/md5-cache/dev-python/python-keystoneclient-9999 @@ -9,5 +9,5 @@ RDEPEND=>=dev-python/d2to1-0.2.10[python_targets_python2_7(-)?,-python_single_ta REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9b3340dfa47289697b5d21a7858aab17 diff --git a/metadata/md5-cache/dev-python/python-ldap-2.4.10-r1 b/metadata/md5-cache/dev-python/python-ldap-2.4.10-r1 index 0eae34a9e69f..c3a1c9462706 100644 --- a/metadata/md5-cache/dev-python/python-ldap-2.4.10-r1 +++ b/metadata/md5-cache/dev-python/python-ldap-2.4.10-r1 @@ -10,5 +10,5 @@ RDEPEND=>=net-nds/openldap-2.4 dev-python/pyasn1[python_targets_python2_6(-)?,py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-ldap/python-ldap-2.4.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e03195a871983b8fd62712917e803149 diff --git a/metadata/md5-cache/dev-python/python-ldap-2.4.12 b/metadata/md5-cache/dev-python/python-ldap-2.4.12 index 8095c18e6a0e..d7cfa4ab6950 100644 --- a/metadata/md5-cache/dev-python/python-ldap-2.4.12 +++ b/metadata/md5-cache/dev-python/python-ldap-2.4.12 @@ -10,5 +10,5 @@ RDEPEND=>=net-nds/openldap-2.4 dev-python/pyasn1[python_targets_python2_6(-)?,py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-ldap/python-ldap-2.4.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=64894f3676c3393faf32e9d3ba07120e diff --git a/metadata/md5-cache/dev-python/python-ldap-2.4.13 b/metadata/md5-cache/dev-python/python-ldap-2.4.13 index 84506b6338c8..eb58730fe376 100644 --- a/metadata/md5-cache/dev-python/python-ldap-2.4.13 +++ b/metadata/md5-cache/dev-python/python-ldap-2.4.13 @@ -10,5 +10,5 @@ RDEPEND=>=net-nds/openldap-2.4 dev-python/pyasn1[python_targets_python2_6(-)?,py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-ldap/python-ldap-2.4.13.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=779551c4eb1cae3e29d5f16ffb9315b5 diff --git a/metadata/md5-cache/dev-python/python-ldap-9999 b/metadata/md5-cache/dev-python/python-ldap-9999 index 84fc29f55e17..8341a3e6df81 100644 --- a/metadata/md5-cache/dev-python/python-ldap-9999 +++ b/metadata/md5-cache/dev-python/python-ldap-9999 @@ -9,5 +9,5 @@ RDEPEND=>=net-nds/openldap-2.4 dev-python/pyasn1[python_targets_python2_6(-)?,py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) RESTRICT=test SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d5cc3adaf1bb777adac46a9bd76f336d diff --git a/metadata/md5-cache/dev-python/python-levenshtein-0.10.2-r1 b/metadata/md5-cache/dev-python/python-levenshtein-0.10.2-r1 index e858396dee6f..fef225809cf8 100644 --- a/metadata/md5-cache/dev-python/python-levenshtein-0.10.2-r1 +++ b/metadata/md5-cache/dev-python/python-levenshtein-0.10.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/python-Levenshtein/python-Levenshtein-0.10.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a042fb6efb81285623de2eb66f8eab6b diff --git a/metadata/md5-cache/dev-python/python-linux-procfs-0.4.6 b/metadata/md5-cache/dev-python/python-linux-procfs-0.4.6 index 43411da03585..ed25a7319f23 100644 --- a/metadata/md5-cache/dev-python/python-linux-procfs-0.4.6 +++ b/metadata/md5-cache/dev-python/python-linux-procfs-0.4.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/python-linux-procfs-0.4.6.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f26d637065908ae0fe45b3ab842d56a6 diff --git a/metadata/md5-cache/dev-python/python-linux-procfs-9999 b/metadata/md5-cache/dev-python/python-linux-procfs-9999 index 6023ff98d1be..964007fab20d 100644 --- a/metadata/md5-cache/dev-python/python-linux-procfs-9999 +++ b/metadata/md5-cache/dev-python/python-linux-procfs-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a28450f0c84e908b68600013a6a995b3 diff --git a/metadata/md5-cache/dev-python/python-magic-0.4.6-r1 b/metadata/md5-cache/dev-python/python-magic-0.4.6-r1 index c83e8d32ce8a..90c37f458680 100644 --- a/metadata/md5-cache/dev-python/python-magic-0.4.6-r1 +++ b/metadata/md5-cache/dev-python/python-magic-0.4.6-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/file[-python] python_targets_python2_6? ( >=dev-lang/python-2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/python-magic/python-magic-0.4.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=04b49602284802d5440b765fb2453210 diff --git a/metadata/md5-cache/dev-python/python-memcached-1.48-r1 b/metadata/md5-cache/dev-python/python-memcached-1.48-r1 index c6aa6c42789a..9d8d7785e111 100644 --- a/metadata/md5-cache/dev-python/python-memcached-1.48-r1 +++ b/metadata/md5-cache/dev-python/python-memcached-1.48-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=ftp://ftp.tummy.com/pub/python-memcached/old-releases/python-memcached-1.48.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=679e743e5ddf01ca13aed3e1b581b5b1 diff --git a/metadata/md5-cache/dev-python/python-memcached-1.53-r1 b/metadata/md5-cache/dev-python/python-memcached-1.53-r1 index 99e0f43574c1..e1935cc07a5b 100644 --- a/metadata/md5-cache/dev-python/python-memcached-1.53-r1 +++ b/metadata/md5-cache/dev-python/python-memcached-1.53-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=ftp://ftp.tummy.com/pub/python-memcached/old-releases/python-memcached-1.53.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d8e2a46042d88b9f9a57ed3255aa2ec8 diff --git a/metadata/md5-cache/dev-python/python-mhash-1.4-r1 b/metadata/md5-cache/dev-python/python-mhash-1.4-r1 index be5b78d8e4d2..7a1051d96a06 100644 --- a/metadata/md5-cache/dev-python/python-mhash-1.4-r1 +++ b/metadata/md5-cache/dev-python/python-mhash-1.4-r1 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/mhash python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/mhash/python-mhash-1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5eeefc13d73b1b68eb8db19f85d5b51e diff --git a/metadata/md5-cache/dev-python/python-mpd-0.4.6 b/metadata/md5-cache/dev-python/python-mpd-0.4.6 index d67f6554b070..d9da3c03b6a5 100644 --- a/metadata/md5-cache/dev-python/python-mpd-0.4.6 +++ b/metadata/md5-cache/dev-python/python-mpd-0.4.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/Mic92/python-mpd2/tarball/v0.4.6 -> python-mpd-0.4.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=deea51b4bb317a42de2fafa7326bb080 diff --git a/metadata/md5-cache/dev-python/python-mpd-0.5.1 b/metadata/md5-cache/dev-python/python-mpd-0.5.1 index 262d41bf6a19..993b4cd06295 100644 --- a/metadata/md5-cache/dev-python/python-mpd-0.5.1 +++ b/metadata/md5-cache/dev-python/python-mpd-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/Mic92/python-mpd2/archive/v0.5.1.tar.gz -> python-mpd-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=d7ac57cfb2f3635d85ecc4a997d10823 diff --git a/metadata/md5-cache/dev-python/python-musicbrainz-0.7.4-r1 b/metadata/md5-cache/dev-python/python-musicbrainz-0.7.4-r1 index c17a027a4a34..4dbff337184c 100644 --- a/metadata/md5-cache/dev-python/python-musicbrainz-0.7.4-r1 +++ b/metadata/md5-cache/dev-python/python-musicbrainz-0.7.4-r1 @@ -10,5 +10,5 @@ RDEPEND=media-libs/libdiscid python_targets_python2_6? ( >=dev-lang/python-2.6.8 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://ftp.musicbrainz.org/pub/musicbrainz/python-musicbrainz2/python-musicbrainz2-0.7.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2fcd057c7c978c14ee0113d0032cd9ea diff --git a/metadata/md5-cache/dev-python/python-musicbrainz-ngs-0.4 b/metadata/md5-cache/dev-python/python-musicbrainz-ngs-0.4 index 4eada61697ce..a49930c7bba0 100644 --- a/metadata/md5-cache/dev-python/python-musicbrainz-ngs-0.4 +++ b/metadata/md5-cache/dev-python/python-musicbrainz-ngs-0.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/alastair/python-musicbrainz-ngs/tarball/v0.4 -> python-musicbrainz-ngs-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=2b8e88a65f835c9121eb8e5e1a5542fc diff --git a/metadata/md5-cache/dev-python/python-nbxmpp-0.2 b/metadata/md5-cache/dev-python/python-nbxmpp-0.2 index a6eced6f90fd..cf0943255d50 100644 --- a/metadata/md5-cache/dev-python/python-nbxmpp-0.2 +++ b/metadata/md5-cache/dev-python/python-nbxmpp-0.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://python-nbxmpp.gajim.org/downloads/2 -> python-nbxmpp-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1761562de0cf7513bcbe2820ceb9772f diff --git a/metadata/md5-cache/dev-python/python-neutronclient-2.2.3 b/metadata/md5-cache/dev-python/python-neutronclient-2.2.3 index 94276dd68893..7100c7701285 100644 --- a/metadata/md5-cache/dev-python/python-neutronclient-2.2.3 +++ b/metadata/md5-cache/dev-python/python-neutronclient-2.2.3 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_targ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-quantumclient/python-quantumclient-2.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1c7f7cbf5888f6ed9dc7e84b93661bb5 diff --git a/metadata/md5-cache/dev-python/python-neutronclient-2.2.6-r2 b/metadata/md5-cache/dev-python/python-neutronclient-2.2.6-r2 index fc87c5d21c7d..de4e3bc85aaf 100644 --- a/metadata/md5-cache/dev-python/python-neutronclient-2.2.6-r2 +++ b/metadata/md5-cache/dev-python/python-neutronclient-2.2.6-r2 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_targ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-neutronclient/python-neutronclient-2.2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cefb9099c4c0b40271151e5f1432c369 diff --git a/metadata/md5-cache/dev-python/python-neutronclient-2.3.0-r2 b/metadata/md5-cache/dev-python/python-neutronclient-2.3.0-r2 index 0520c4c1ad51..cc9ba1f28529 100644 --- a/metadata/md5-cache/dev-python/python-neutronclient-2.3.0-r2 +++ b/metadata/md5-cache/dev-python/python-neutronclient-2.3.0-r2 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_targ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/python-neutronclient/python-neutronclient-2.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=726274d894c201b66ada9f9a465240d8 diff --git a/metadata/md5-cache/dev-python/python-novaclient-2.11.1-r1 b/metadata/md5-cache/dev-python/python-novaclient-2.11.1-r1 index fd798fd4c3c8..afe8067d31f2 100644 --- a/metadata/md5-cache/dev-python/python-novaclient-2.11.1-r1 +++ b/metadata/md5-cache/dev-python/python-novaclient-2.11.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-novaclient/python-novaclient-2.11.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=07c9adc4f99ec35d00d3267bb47045de diff --git a/metadata/md5-cache/dev-python/python-novaclient-2.13.0-r1 b/metadata/md5-cache/dev-python/python-novaclient-2.13.0-r1 index 67bf0b3b9a7a..c19c72f2b4b5 100644 --- a/metadata/md5-cache/dev-python/python-novaclient-2.13.0-r1 +++ b/metadata/md5-cache/dev-python/python-novaclient-2.13.0-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-novaclient/python-novaclient-2.13.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7c9630daa33927f30d628508beab8ec3 diff --git a/metadata/md5-cache/dev-python/python-novaclient-2.14.1 b/metadata/md5-cache/dev-python/python-novaclient-2.14.1 index 438ba1a4ab84..f2fb8f6dc231 100644 --- a/metadata/md5-cache/dev-python/python-novaclient-2.14.1 +++ b/metadata/md5-cache/dev-python/python-novaclient-2.14.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-novaclient/python-novaclient-2.14.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=49f473be3e12aa1ec27bcc3befcd60c3 diff --git a/metadata/md5-cache/dev-python/python-novaclient-9999 b/metadata/md5-cache/dev-python/python-novaclient-9999 index 75ba657048bf..45b3e285ab99 100644 --- a/metadata/md5-cache/dev-python/python-novaclient-9999 +++ b/metadata/md5-cache/dev-python/python-novaclient-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/httplib2 dev-python/prettytable dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4d3096a4345c3239acaaa6abcf5bf90b diff --git a/metadata/md5-cache/dev-python/python-openid-2.2.5-r1 b/metadata/md5-cache/dev-python/python-openid-2.2.5-r1 index 9394b6e3532c..f0388268e52d 100644 --- a/metadata/md5-cache/dev-python/python-openid-2.2.5-r1 +++ b/metadata/md5-cache/dev-python/python-openid-2.2.5-r1 @@ -10,5 +10,5 @@ RDEPEND=mysql? ( >=dev-python/mysql-python-1.2.2[python_targets_python2_6(-)?,py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/python-openid-2.2.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0866e205d5837a9e1ff008d958e7a260 diff --git a/metadata/md5-cache/dev-python/python-pam-0.1.4 b/metadata/md5-cache/dev-python/python-pam-0.1.4 index 4386837ed285..890224cc4204 100644 --- a/metadata/md5-cache/dev-python/python-pam-0.1.4 +++ b/metadata/md5-cache/dev-python/python-pam-0.1.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pam/pam-0.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3493a1721e3d5816b39e27f0ea43fffc diff --git a/metadata/md5-cache/dev-python/python-poppler-qt4-0.16.3-r1 b/metadata/md5-cache/dev-python/python-poppler-qt4-0.16.3-r1 index d11bc76046d2..6d113e316c8f 100644 --- a/metadata/md5-cache/dev-python/python-poppler-qt4-0.16.3-r1 +++ b/metadata/md5-cache/dev-python/python-poppler-qt4-0.16.3-r1 @@ -10,5 +10,5 @@ RDEPEND=app-text/poppler:=[qt4] dev-python/PyQt4[python_targets_python2_6(-)?,py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://python-poppler-qt4.googlecode.com/files/python-poppler-qt4-0.16.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7138172def76b44e622fa51d9444d84b diff --git a/metadata/md5-cache/dev-python/python-slip-0.2.21-r1 b/metadata/md5-cache/dev-python/python-slip-0.2.21-r1 index f0dfcfc6a771..3ba238dfb190 100644 --- a/metadata/md5-cache/dev-python/python-slip-0.2.21-r1 +++ b/metadata/md5-cache/dev-python/python-slip-0.2.21-r1 @@ -10,5 +10,5 @@ RDEPEND=dbus? ( dev-python/dbus-python[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://fedorahosted.org/released/python-slip/python-slip-0.2.21.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fcb22042b2d0d603195d478d2f0a714d diff --git a/metadata/md5-cache/dev-python/python-slip-0.4.0 b/metadata/md5-cache/dev-python/python-slip-0.4.0 index cdacb4dd8729..8db2759688c9 100644 --- a/metadata/md5-cache/dev-python/python-slip-0.4.0 +++ b/metadata/md5-cache/dev-python/python-slip-0.4.0 @@ -10,5 +10,5 @@ RDEPEND=dbus? ( dev-python/dbus-python[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://fedorahosted.org/released/python-slip/python-slip-0.4.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=be61887ac92dd198ffe065811d6cc4c9 diff --git a/metadata/md5-cache/dev-python/python-sqlparse-0.1.5-r1 b/metadata/md5-cache/dev-python/python-sqlparse-0.1.5-r1 index 6c298d6baf98..a2d75ddaf2aa 100644 --- a/metadata/md5-cache/dev-python/python-sqlparse-0.1.5-r1 +++ b/metadata/md5-cache/dev-python/python-sqlparse-0.1.5-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://python-sqlparse.googlecode.com/files/sqlparse-0.1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f38948c347e3c409347d2097cf164975 diff --git a/metadata/md5-cache/dev-python/python-swiftclient-1.3.0 b/metadata/md5-cache/dev-python/python-swiftclient-1.3.0 index f303ccb5c1dc..c24446fb547f 100644 --- a/metadata/md5-cache/dev-python/python-swiftclient-1.3.0 +++ b/metadata/md5-cache/dev-python/python-swiftclient-1.3.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-swiftclient/python-swiftclient-1.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f7711937cc3ab3314b235bdf607b94d0 diff --git a/metadata/md5-cache/dev-python/python-swiftclient-1.5.0 b/metadata/md5-cache/dev-python/python-swiftclient-1.5.0 index ff7edc140e4e..7f2c7b678ca2 100644 --- a/metadata/md5-cache/dev-python/python-swiftclient-1.5.0 +++ b/metadata/md5-cache/dev-python/python-swiftclient-1.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-swiftclient/python-swiftclient-1.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=474872acf408482b064df27848b7085c diff --git a/metadata/md5-cache/dev-python/python-swiftclient-1.6.0 b/metadata/md5-cache/dev-python/python-swiftclient-1.6.0 index d31f088a3750..4a274fbdd952 100644 --- a/metadata/md5-cache/dev-python/python-swiftclient-1.6.0 +++ b/metadata/md5-cache/dev-python/python-swiftclient-1.6.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-swiftclient/python-swiftclient-1.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=669a7ccc0d632cfaaaac70763ec4f425 diff --git a/metadata/md5-cache/dev-python/python-troveclient-0.1.4 b/metadata/md5-cache/dev-python/python-troveclient-0.1.4 new file mode 100644 index 000000000000..c5c3e30b208d --- /dev/null +++ b/metadata/md5-cache/dev-python/python-troveclient-0.1.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.16[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/hacking-0.5.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testrepository-0.0.17[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testtools-0.9.32[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mock-0.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=This is a client for the OpenStack Trove API, a scalable relational database service. +EAPI=5 +HOMEPAGE=https://github.com/openstack/python-troveclient +IUSE=test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/prettytable-0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-troveclient/python-troveclient-0.1.4.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=2102418fa19c0df0107d021e28e7ce38 diff --git a/metadata/md5-cache/dev-python/python-troveclient-1.0.1 b/metadata/md5-cache/dev-python/python-troveclient-1.0.1 new file mode 100644 index 000000000000..6d233cd8c9c7 --- /dev/null +++ b/metadata/md5-cache/dev-python/python-troveclient-1.0.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/hacking-0.5.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testrepository-0.0.17[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testtools-0.9.32[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mock-1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=This is a client for the OpenStack Trove API, a scalable relational database service. +EAPI=5 +HOMEPAGE=https://github.com/openstack/python-troveclient +IUSE=test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/prettytable-0.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/requests-1.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/simplejson-2.0.9[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-1.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/six-1.4.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +SRC_URI=mirror://pypi/p/python-troveclient/python-troveclient-1.0.1.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=817c4aeb80c6f373756c6d6c642c2269 diff --git a/metadata/md5-cache/dev-python/python-tvrage-0.4.1 b/metadata/md5-cache/dev-python/python-tvrage-0.4.1 index be40ace573ba..948a7ebd7608 100644 --- a/metadata/md5-cache/dev-python/python-tvrage-0.4.1 +++ b/metadata/md5-cache/dev-python/python-tvrage-0.4.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/beautifulsoup:python-2[python_targets_python2_6(-)?,python_ta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/python-tvrage/python-tvrage-0.4.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=9ca3f29042b5a7e5f05bd4e4932e55c0 diff --git a/metadata/md5-cache/dev-python/python-twitter-1.0 b/metadata/md5-cache/dev-python/python-twitter-1.0 index 718c609e66cf..f579dea246da 100644 --- a/metadata/md5-cache/dev-python/python-twitter-1.0 +++ b/metadata/md5-cache/dev-python/python-twitter-1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/oauth2 dev-python/simplejson python_targets_python2_6? ( >=de REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://python-twitter.googlecode.com/files/python-twitter-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3fe1cb3223cf21e97ff385e4e1a9d02a diff --git a/metadata/md5-cache/dev-python/python-uinput-0.9 b/metadata/md5-cache/dev-python/python-uinput-0.9 index d6318fd9a79c..4de11d94c3cb 100644 --- a/metadata/md5-cache/dev-python/python-uinput-0.9 +++ b/metadata/md5-cache/dev-python/python-uinput-0.9 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/python-uinput/python-uinput-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=538a2c33d6c461a7baefa5330b090cc7 diff --git a/metadata/md5-cache/dev-python/python-wpactrl-20081102-r1 b/metadata/md5-cache/dev-python/python-wpactrl-20081102-r1 index 202bf7e2aae1..3a657a006227 100644 --- a/metadata/md5-cache/dev-python/python-wpactrl-20081102-r1 +++ b/metadata/md5-cache/dev-python/python-wpactrl-20081102-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/python-wpactrl-20081102.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1bad9c03e370366068de039092034486 diff --git a/metadata/md5-cache/dev-python/python-xlib-0.15_rc1-r2 b/metadata/md5-cache/dev-python/python-xlib-0.15_rc1-r2 index 1a92e99251a7..8adbf995945f 100644 --- a/metadata/md5-cache/dev-python/python-xlib-0.15_rc1-r2 +++ b/metadata/md5-cache/dev-python/python-xlib-0.15_rc1-r2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/python-xlib/python-xlib-0.15rc1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=151efcb3f0cc049eca1d92245d7446b6 diff --git a/metadata/md5-cache/dev-python/pytools-2012.1 b/metadata/md5-cache/dev-python/pytools-2012.1 index 839e3ef94c47..3894e04a4def 100644 --- a/metadata/md5-cache/dev-python/pytools-2012.1 +++ b/metadata/md5-cache/dev-python/pytools-2012.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pytools/pytools-2012.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b06a6778bf2f3bae0d8d6f2999e386fc diff --git a/metadata/md5-cache/dev-python/pytools-2013.1 b/metadata/md5-cache/dev-python/pytools-2013.1 index eff64526307f..5aabbf49aa2f 100644 --- a/metadata/md5-cache/dev-python/pytools-2013.1 +++ b/metadata/md5-cache/dev-python/pytools-2013.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pytools/pytools-2013.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d4630195452bb66129c9dcd2fa6c9765 diff --git a/metadata/md5-cache/dev-python/pytools-2013.2 b/metadata/md5-cache/dev-python/pytools-2013.2 index 516869557e77..aa0c8fe5c8a8 100644 --- a/metadata/md5-cache/dev-python/pytools-2013.2 +++ b/metadata/md5-cache/dev-python/pytools-2013.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pytools/pytools-2013.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e1550e9b6db5041abac739e2ab32c53d diff --git a/metadata/md5-cache/dev-python/pytools-2013.5 b/metadata/md5-cache/dev-python/pytools-2013.5 index b6f6ce2d3f36..0f15ba4e2f36 100644 --- a/metadata/md5-cache/dev-python/pytools-2013.5 +++ b/metadata/md5-cache/dev-python/pytools-2013.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pytools/pytools-2013.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e93429fb7adead1626117031aa7bac03 diff --git a/metadata/md5-cache/dev-python/pytools-2013.5.3 b/metadata/md5-cache/dev-python/pytools-2013.5.3 index 1700fd54f2c5..ad6c8d358ec4 100644 --- a/metadata/md5-cache/dev-python/pytools-2013.5.3 +++ b/metadata/md5-cache/dev-python/pytools-2013.5.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pytools/pytools-2013.5.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7c139361056bdc27247351286803e948 diff --git a/metadata/md5-cache/dev-python/pytools-2013.5.5 b/metadata/md5-cache/dev-python/pytools-2013.5.5 index 3344a7a302a9..7610e66e0c98 100644 --- a/metadata/md5-cache/dev-python/pytools-2013.5.5 +++ b/metadata/md5-cache/dev-python/pytools-2013.5.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pytools/pytools-2013.5.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=348686a8aa8032589ec8ecaf2254bde5 diff --git a/metadata/md5-cache/dev-python/pytools-2013.5.6 b/metadata/md5-cache/dev-python/pytools-2013.5.6 index 57a0dec5a529..38b827890099 100644 --- a/metadata/md5-cache/dev-python/pytools-2013.5.6 +++ b/metadata/md5-cache/dev-python/pytools-2013.5.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pytools/pytools-2013.5.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bfda5b4a3d46c72fd6f29c30af972696 diff --git a/metadata/md5-cache/dev-python/pytools-9999 b/metadata/md5-cache/dev-python/pytools-9999 index 7ad630f2a757..e9096dee8aeb 100644 --- a/metadata/md5-cache/dev-python/pytools-9999 +++ b/metadata/md5-cache/dev-python/pytools-9999 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0170a314680ef7e9b48e1f7e59824328 diff --git a/metadata/md5-cache/dev-python/pytz-2012j b/metadata/md5-cache/dev-python/pytz-2012j index 9048f3c1daa1..16680a038d04 100644 --- a/metadata/md5-cache/dev-python/pytz-2012j +++ b/metadata/md5-cache/dev-python/pytz-2012j @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pytz/pytz-2012j.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b78a54fa4ba226f8bd3017c8f39bccc8 diff --git a/metadata/md5-cache/dev-python/pytz-2013b b/metadata/md5-cache/dev-python/pytz-2013b index 996ecc409629..b7865488e1a1 100644 --- a/metadata/md5-cache/dev-python/pytz-2013b +++ b/metadata/md5-cache/dev-python/pytz-2013b @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pytz/pytz-2013b.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9e29181773c376b628d3ed1e9f7852d7 diff --git a/metadata/md5-cache/dev-python/pytz-2013d b/metadata/md5-cache/dev-python/pytz-2013d index eda5691c51f3..741abf665b4a 100644 --- a/metadata/md5-cache/dev-python/pytz-2013d +++ b/metadata/md5-cache/dev-python/pytz-2013d @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pytz/pytz-2013d.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=64ac4371611ae828d737f7e693387150 diff --git a/metadata/md5-cache/dev-python/pyudev-0.16.1-r1 b/metadata/md5-cache/dev-python/pyudev-0.16.1-r1 index d5dee08596fc..b20f4b359d6c 100644 --- a/metadata/md5-cache/dev-python/pyudev-0.16.1-r1 +++ b/metadata/md5-cache/dev-python/pyudev-0.16.1-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/udev pygobject? ( dev-python/pygobject:2[python_targets_python2_ REQUIRED_USE=pygobject? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) pyside? ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyudev/pyudev-0.16.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b8a250e136b8407b344f49345069a6c7 diff --git a/metadata/md5-cache/dev-python/pyutil-1.9.7 b/metadata/md5-cache/dev-python/pyutil-1.9.7 index 960d9c1686bc..109919918f54 100644 --- a/metadata/md5-cache/dev-python/pyutil-1.9.7 +++ b/metadata/md5-cache/dev-python/pyutil-1.9.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyutil/pyutil-1.9.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7a7d5fa5a09dfd6202bea0297de6f993 diff --git a/metadata/md5-cache/dev-python/pyvorbis-1.4-r4 b/metadata/md5-cache/dev-python/pyvorbis-1.4-r4 index 396465390192..168ee92308f0 100644 --- a/metadata/md5-cache/dev-python/pyvorbis-1.4-r4 +++ b/metadata/md5-cache/dev-python/pyvorbis-1.4-r4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyogg-1.1[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://ekyo.nerim.net/software/pyogg/pyvorbis-1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6ed38ff28af8341336e5b0cddfaf1b94 diff --git a/metadata/md5-cache/dev-python/pyvtk-0.4.74 b/metadata/md5-cache/dev-python/pyvtk-0.4.74 index d7c52ead7335..dc72bdb03f9f 100644 --- a/metadata/md5-cache/dev-python/pyvtk-0.4.74 +++ b/metadata/md5-cache/dev-python/pyvtk-0.4.74 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://cens.ioc.ee/projects/pyvtk/rel-0.x/PyVTK-0.4.74.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cea646ba32bd4e0abd8de2270f486b9c diff --git a/metadata/md5-cache/dev-python/pywavelets-0.2.2-r1 b/metadata/md5-cache/dev-python/pywavelets-0.2.2-r1 index dc664cb6ac43..951077386d1a 100644 --- a/metadata/md5-cache/dev-python/pywavelets-0.2.2-r1 +++ b/metadata/md5-cache/dev-python/pywavelets-0.2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/P/PyWavelets/PyWavelets-0.2.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=307c3e5489d7e1e79381a28df63344d0 diff --git a/metadata/md5-cache/dev-python/pywcs-1.11-r1 b/metadata/md5-cache/dev-python/pywcs-1.11-r1 index ee0ff110900f..5c95356c1f9f 100644 --- a/metadata/md5-cache/dev-python/pywcs-1.11-r1 +++ b/metadata/md5-cache/dev-python/pywcs-1.11-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://stsdas.stsci.edu/astrolib/pywcs-1.11-4.8.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e7a5ac9914e4c86d402ed114f73649ec diff --git a/metadata/md5-cache/dev-python/pywebdav-0.9.8-r1 b/metadata/md5-cache/dev-python/pywebdav-0.9.8-r1 index b21c7ef17e91..88d7c05402ff 100644 --- a/metadata/md5-cache/dev-python/pywebdav-0.9.8-r1 +++ b/metadata/md5-cache/dev-python/pywebdav-0.9.8-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://pywebdav.googlecode.com/files/PyWebDAV-0.9.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dfdc4d78dbb09bb90e62db4bae5d424f diff --git a/metadata/md5-cache/dev-python/pyx-0.12.1-r1 b/metadata/md5-cache/dev-python/pyx-0.12.1-r1 index 5e7b9d8595eb..fd399bc845f8 100644 --- a/metadata/md5-cache/dev-python/pyx-0.12.1-r1 +++ b/metadata/md5-cache/dev-python/pyx-0.12.1-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/tex-base python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3: REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://sourceforge/pyx/PyX-0.12.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=43d003d138c42655bd78a7adeb92fd82 diff --git a/metadata/md5-cache/dev-python/pyxattr-0.5.0-r1 b/metadata/md5-cache/dev-python/pyxattr-0.5.0-r1 index 2920c8e1e79c..db629f8edf43 100644 --- a/metadata/md5-cache/dev-python/pyxattr-0.5.0-r1 +++ b/metadata/md5-cache/dev-python/pyxattr-0.5.0-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/attr python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pyxattr/pyxattr-0.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8720cd447d93e5e0045ccbfb7c16a28a diff --git a/metadata/md5-cache/dev-python/pyxattr-0.5.1 b/metadata/md5-cache/dev-python/pyxattr-0.5.1 index 8c29af93f7fd..4f5076367502 100644 --- a/metadata/md5-cache/dev-python/pyxattr-0.5.1 +++ b/metadata/md5-cache/dev-python/pyxattr-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/attr python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pyxattr/pyxattr-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d872803e70515dbe2123fcfb1fbddbfa diff --git a/metadata/md5-cache/dev-python/pyxattr-0.5.2 b/metadata/md5-cache/dev-python/pyxattr-0.5.2 index bd0901ee6352..8ab73b8c917e 100644 --- a/metadata/md5-cache/dev-python/pyxattr-0.5.2 +++ b/metadata/md5-cache/dev-python/pyxattr-0.5.2 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/attr python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/p/pyxattr/pyxattr-0.5.2.tar.gz http://pyxattr.k1024.org/downloads/pyxattr-0.5.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a3d0242fd888b3c23967890ec71e8a05 diff --git a/metadata/md5-cache/dev-python/pyxattr-9999 b/metadata/md5-cache/dev-python/pyxattr-9999 index 12c16f9a0694..989980bf285b 100644 --- a/metadata/md5-cache/dev-python/pyxattr-9999 +++ b/metadata/md5-cache/dev-python/pyxattr-9999 @@ -8,5 +8,5 @@ LICENSE=LGPL-2.1 RDEPEND=sys-apps/attr python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=48e8a5b6012d9bb2fb5221e0e2a7a6c5 diff --git a/metadata/md5-cache/dev-python/pyxdg-0.25 b/metadata/md5-cache/dev-python/pyxdg-0.25 index ca39a9e988cb..825175a3bc68 100644 --- a/metadata/md5-cache/dev-python/pyxdg-0.25 +++ b/metadata/md5-cache/dev-python/pyxdg-0.25 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://people.freedesktop.org/~takluyver/pyxdg-0.25.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d9f79cba7c868063d993510e11d0b2d4 diff --git a/metadata/md5-cache/dev-python/pyxml-0.8.4-r3 b/metadata/md5-cache/dev-python/pyxml-0.8.4-r3 index 7449cf72b7c9..07c545509ecb 100644 --- a/metadata/md5-cache/dev-python/pyxml-0.8.4-r3 +++ b/metadata/md5-cache/dev-python/pyxml-0.8.4-r3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/expat-1.95.6 python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pyxml/PyXML-0.8.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f6c81d0a6987b77222d49d74a157df21 diff --git a/metadata/md5-cache/dev-python/pyyaml-3.10-r1 b/metadata/md5-cache/dev-python/pyyaml-3.10-r1 index 0ec4a219e906..7f95478c2661 100644 --- a/metadata/md5-cache/dev-python/pyyaml-3.10-r1 +++ b/metadata/md5-cache/dev-python/pyyaml-3.10-r1 @@ -10,5 +10,5 @@ RDEPEND=libyaml? ( dev-libs/libyaml ) python_targets_python2_6? ( >=dev-lang/pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://pyyaml.org/download/pyyaml/PyYAML-3.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e0372c63b43e3f507f4316cd81c22f3a diff --git a/metadata/md5-cache/dev-python/pyzmq-13.1.0 b/metadata/md5-cache/dev-python/pyzmq-13.1.0 index e8001e721fea..c45b33ef1c2c 100644 --- a/metadata/md5-cache/dev-python/pyzmq-13.1.0 +++ b/metadata/md5-cache/dev-python/pyzmq-13.1.0 @@ -10,5 +10,5 @@ RDEPEND=>=net-libs/zeromq-2.1.9 green? ( dev-python/gevent[python_targets_python REQUIRED_USE=test? ( !arm ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyzmq/pyzmq-13.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d5d6d50045fb5fb46c14f096ad42bde3 diff --git a/metadata/md5-cache/dev-python/pyzmq-2.2.0.1-r1 b/metadata/md5-cache/dev-python/pyzmq-2.2.0.1-r1 index c6abe5a3ee10..8ba2fe9981b2 100644 --- a/metadata/md5-cache/dev-python/pyzmq-2.2.0.1-r1 +++ b/metadata/md5-cache/dev-python/pyzmq-2.2.0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=net-libs/zeromq-2.1.9 python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/p/pyzmq/pyzmq-2.2.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2a38a39697ab2762d2f8869c2837a79a diff --git a/metadata/md5-cache/dev-python/qrcode-3.1 b/metadata/md5-cache/dev-python/qrcode-3.1 index 07610a3c3957..feb8d2e0dd8c 100644 --- a/metadata/md5-cache/dev-python/qrcode-3.1 +++ b/metadata/md5-cache/dev-python/qrcode-3.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/q/qrcode/qrcode-3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6b0d9f41d7c72176fbd9d16c5fb1dd2f diff --git a/metadata/md5-cache/dev-python/qserve-0.2.8-r1 b/metadata/md5-cache/dev-python/qserve-0.2.8-r1 index bf81d897e918..82d67e0c54da 100644 --- a/metadata/md5-cache/dev-python/qserve-0.2.8-r1 +++ b/metadata/md5-cache/dev-python/qserve-0.2.8-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/gevent[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/q/qserve/qserve-0.2.8.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9ab71fad320beba8623d477b400f527c diff --git a/metadata/md5-cache/dev-python/rackspace-auth-openstack-1.0 b/metadata/md5-cache/dev-python/rackspace-auth-openstack-1.0 index 6912157f3283..a9175fd381d5 100644 --- a/metadata/md5-cache/dev-python/rackspace-auth-openstack-1.0 +++ b/metadata/md5-cache/dev-python/rackspace-auth-openstack-1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/rackspace-auth-openstack/rackspace-auth-openstack-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e9da9ce14b68de61d757b9fe213b8790 diff --git a/metadata/md5-cache/dev-python/rackspace-auth-openstack-9999 b/metadata/md5-cache/dev-python/rackspace-auth-openstack-9999 index 076ccab8a8ab..1969621627a5 100644 --- a/metadata/md5-cache/dev-python/rackspace-auth-openstack-9999 +++ b/metadata/md5-cache/dev-python/rackspace-auth-openstack-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=64029c9f70f53f0fd3f8ffc1f3ed7ca3 diff --git a/metadata/md5-cache/dev-python/rackspace-novaclient-1.2 b/metadata/md5-cache/dev-python/rackspace-novaclient-1.2 index 634d7fa18907..62489b243ced 100644 --- a/metadata/md5-cache/dev-python/rackspace-novaclient-1.2 +++ b/metadata/md5-cache/dev-python/rackspace-novaclient-1.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/python-novaclient[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/rackspace-novaclient/rackspace-novaclient-1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f449c4aab6b7edc8f90e45a3ebad1c94 diff --git a/metadata/md5-cache/dev-python/rackspace-novaclient-9999 b/metadata/md5-cache/dev-python/rackspace-novaclient-9999 index 5e7a91763be5..6cf93046613e 100644 --- a/metadata/md5-cache/dev-python/rackspace-novaclient-9999 +++ b/metadata/md5-cache/dev-python/rackspace-novaclient-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/python-novaclient[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rackspace-auth-openstack[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/os-diskconfig-python-novaclient-ext[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rax-backup-schedule-python-novaclient-ext[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/os-networksv2-python-novaclient-ext[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rax-default-network-flags-python-novaclient-ext[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a7f6cd06e7d4217d6958686e6ea68e97 diff --git a/metadata/md5-cache/dev-python/rarfile-2.6 b/metadata/md5-cache/dev-python/rarfile-2.6 index 166f8d642062..ffe89da58a0d 100644 --- a/metadata/md5-cache/dev-python/rarfile-2.6 +++ b/metadata/md5-cache/dev-python/rarfile-2.6 @@ -10,5 +10,5 @@ RDEPEND=compressed? ( || ( app-arch/unrar app-arch/rar ) ) python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/r/rarfile/rarfile-2.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8b716d53ebdb690ba60001068db9821d diff --git a/metadata/md5-cache/dev-python/rax-backup-schedule-python-novaclient-ext-0.1.2 b/metadata/md5-cache/dev-python/rax-backup-schedule-python-novaclient-ext-0.1.2 index d643be19c917..1c8085b112db 100644 --- a/metadata/md5-cache/dev-python/rax-backup-schedule-python-novaclient-ext-0.1.2 +++ b/metadata/md5-cache/dev-python/rax-backup-schedule-python-novaclient-ext-0.1.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/rax_backup_schedule_python_novaclient_ext/rax_backup_schedule_python_novaclient_ext-0.1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=68ccf477a806e3086d6aa51ef4a78598 diff --git a/metadata/md5-cache/dev-python/rax-backup-schedule-python-novaclient-ext-9999 b/metadata/md5-cache/dev-python/rax-backup-schedule-python-novaclient-ext-9999 index d8dc41a8bbfd..7b7e55350cb2 100644 --- a/metadata/md5-cache/dev-python/rax-backup-schedule-python-novaclient-ext-9999 +++ b/metadata/md5-cache/dev-python/rax-backup-schedule-python-novaclient-ext-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9b9425bf0f0aba226462078d2eb4af25 diff --git a/metadata/md5-cache/dev-python/rax-default-network-flags-python-novaclient-ext-0.1.3 b/metadata/md5-cache/dev-python/rax-default-network-flags-python-novaclient-ext-0.1.3 index 38d6ae1db02d..ed8132c6d6e1 100644 --- a/metadata/md5-cache/dev-python/rax-default-network-flags-python-novaclient-ext-0.1.3 +++ b/metadata/md5-cache/dev-python/rax-default-network-flags-python-novaclient-ext-0.1.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/rax_default_network_flags_python_novaclient_ext/rax_default_network_flags_python_novaclient_ext-0.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4bcf001efc43ae55078a3c3e1487134c diff --git a/metadata/md5-cache/dev-python/rax-default-network-flags-python-novaclient-ext-9999 b/metadata/md5-cache/dev-python/rax-default-network-flags-python-novaclient-ext-9999 index e13729ec904b..5593656b28ff 100644 --- a/metadata/md5-cache/dev-python/rax-default-network-flags-python-novaclient-ext-9999 +++ b/metadata/md5-cache/dev-python/rax-default-network-flags-python-novaclient-ext-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=24ded36e7d2ae41ba1f0ad1829edd506 diff --git a/metadata/md5-cache/dev-python/rdflib-3.2.3-r1 b/metadata/md5-cache/dev-python/rdflib-3.2.3-r1 index 3d197909ce3e..88e6dcef1ec1 100644 --- a/metadata/md5-cache/dev-python/rdflib-3.2.3-r1 +++ b/metadata/md5-cache/dev-python/rdflib-3.2.3-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/isodate[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/r/rdflib/rdflib-3.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=390ad984c4171e791ba242182f919820 diff --git a/metadata/md5-cache/dev-python/rdflib-4.0 b/metadata/md5-cache/dev-python/rdflib-4.0 index b920764861ce..4aba5a93d6a3 100644 --- a/metadata/md5-cache/dev-python/rdflib-4.0 +++ b/metadata/md5-cache/dev-python/rdflib-4.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/isodate[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/r/rdflib/rdflib-4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=311a1e3eac7abb70cf0196ccf18c7f73 diff --git a/metadata/md5-cache/dev-python/rdflib-4.0.1 b/metadata/md5-cache/dev-python/rdflib-4.0.1 index 1cf9614dff58..c8d308628ef8 100644 --- a/metadata/md5-cache/dev-python/rdflib-4.0.1 +++ b/metadata/md5-cache/dev-python/rdflib-4.0.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/isodate[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/r/rdflib/rdflib-4.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=61f5b7ed8a100d1e3c2f86959658f108 diff --git a/metadata/md5-cache/dev-python/recaptcha-client-1.0.6-r1 b/metadata/md5-cache/dev-python/recaptcha-client-1.0.6-r1 index ed1428c03e86..be32005eb869 100644 --- a/metadata/md5-cache/dev-python/recaptcha-client-1.0.6-r1 +++ b/metadata/md5-cache/dev-python/recaptcha-client-1.0.6-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pycrypto[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/r/recaptcha-client/recaptcha-client-1.0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eb733630ce508aa75d6b247a53d03bec diff --git a/metadata/md5-cache/dev-python/redis-py-2.7.2-r1 b/metadata/md5-cache/dev-python/redis-py-2.7.2-r1 index b15a9b6934fb..dc4dc0317fdb 100644 --- a/metadata/md5-cache/dev-python/redis-py-2.7.2-r1 +++ b/metadata/md5-cache/dev-python/redis-py-2.7.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/r/redis/redis-2.7.2.tar.gz -> redis-py-2.7.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d9bf264399cf5332d4204dac8c97e2af diff --git a/metadata/md5-cache/dev-python/redis-py-2.7.4 b/metadata/md5-cache/dev-python/redis-py-2.7.4 index c5ab272b69e9..b296df9f6587 100644 --- a/metadata/md5-cache/dev-python/redis-py-2.7.4 +++ b/metadata/md5-cache/dev-python/redis-py-2.7.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/r/redis/redis-2.7.4.tar.gz -> redis-py-2.7.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2dfab14b1221b109e9b316bb47fbd061 diff --git a/metadata/md5-cache/dev-python/redis-py-2.7.5 b/metadata/md5-cache/dev-python/redis-py-2.7.5 index c67b218f4cad..3f160f4ec124 100644 --- a/metadata/md5-cache/dev-python/redis-py-2.7.5 +++ b/metadata/md5-cache/dev-python/redis-py-2.7.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/r/redis/redis-2.7.5.tar.gz -> redis-py-2.7.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d4b15f2d74ea124c353bbe370e52e7ac diff --git a/metadata/md5-cache/dev-python/redis-py-2.7.6 b/metadata/md5-cache/dev-python/redis-py-2.7.6 index 3e3f32488b19..255a479a5af3 100644 --- a/metadata/md5-cache/dev-python/redis-py-2.7.6 +++ b/metadata/md5-cache/dev-python/redis-py-2.7.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/r/redis/redis-2.7.6.tar.gz -> redis-py-2.7.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=91f641b3dccb3dd599ba2c38bfa46a71 diff --git a/metadata/md5-cache/dev-python/reportlab-2.6 b/metadata/md5-cache/dev-python/reportlab-2.6 index 1964b120f006..f55ec267c52a 100644 --- a/metadata/md5-cache/dev-python/reportlab-2.6 +++ b/metadata/md5-cache/dev-python/reportlab-2.6 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-imaging media-fonts/ttf-bitstream-vera media-libs/libart_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.reportlab.com/ftp/reportlab-2.6.tar.gz http://www.reportlab.com/ftp/fonts/pfbfer-20070710.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bb5f15a0bc31183013947987cd119c0e diff --git a/metadata/md5-cache/dev-python/repoze-lru-0.6-r1 b/metadata/md5-cache/dev-python/repoze-lru-0.6-r1 index fe42bd091487..e69bf5839485 100644 --- a/metadata/md5-cache/dev-python/repoze-lru-0.6-r1 +++ b/metadata/md5-cache/dev-python/repoze-lru-0.6-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/r/repoze.lru/repoze.lru-0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e63290ec6b2148981c028e54fb711b10 diff --git a/metadata/md5-cache/dev-python/requests-0.14.2-r1 b/metadata/md5-cache/dev-python/requests-0.14.2-r1 index 774a9ee5f2be..fb983d25727d 100644 --- a/metadata/md5-cache/dev-python/requests-0.14.2-r1 +++ b/metadata/md5-cache/dev-python/requests-0.14.2-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/r/requests/requests-0.14.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b341f12afe4d5b419e3316b733f0ef9a diff --git a/metadata/md5-cache/dev-python/requests-1.2.2 b/metadata/md5-cache/dev-python/requests-1.2.2 index aad4997462b9..adf6e5ecb5fb 100644 --- a/metadata/md5-cache/dev-python/requests-1.2.2 +++ b/metadata/md5-cache/dev-python/requests-1.2.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/r/requests/requests-1.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f609c40d7afe9a742ec3f17dc89738de diff --git a/metadata/md5-cache/dev-python/requests-1.2.3 b/metadata/md5-cache/dev-python/requests-1.2.3 index fc730ea0b577..15b9c705a0ab 100644 --- a/metadata/md5-cache/dev-python/requests-1.2.3 +++ b/metadata/md5-cache/dev-python/requests-1.2.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/r/requests/requests-1.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc5ebbea628a0971f43fff7600b98f7b diff --git a/metadata/md5-cache/dev-python/requests-2.0.0 b/metadata/md5-cache/dev-python/requests-2.0.0 index 2db14c3c0877..afe33d2aa752 100644 --- a/metadata/md5-cache/dev-python/requests-2.0.0 +++ b/metadata/md5-cache/dev-python/requests-2.0.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/r/requests/requests-2.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=613a18a668effec6492431379190c400 diff --git a/metadata/md5-cache/dev-python/requests-cache-0.3.0 b/metadata/md5-cache/dev-python/requests-cache-0.3.0 index 54cdfaf0b48f..8be7380d7447 100644 --- a/metadata/md5-cache/dev-python/requests-cache-0.3.0 +++ b/metadata/md5-cache/dev-python/requests-cache-0.3.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-1.1.0 python_targets_python2_6? ( >=dev-lang/pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/r/requests-cache/requests-cache-0.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=21332840e38da3bf742e31012b79ebdf diff --git a/metadata/md5-cache/dev-python/requests-cache-0.4.0 b/metadata/md5-cache/dev-python/requests-cache-0.4.0 index 627b329afa21..c8fd015ed00b 100644 --- a/metadata/md5-cache/dev-python/requests-cache-0.4.0 +++ b/metadata/md5-cache/dev-python/requests-cache-0.4.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-1.1.0 python_targets_python2_6? ( >=dev-lang/pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/r/requests-cache/requests-cache-0.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d5cda33fb8f51eba600a1abe2b531ab8 diff --git a/metadata/md5-cache/dev-python/requests-cache-0.4.2 b/metadata/md5-cache/dev-python/requests-cache-0.4.2 index b4015b475928..f8bd54997e4f 100644 --- a/metadata/md5-cache/dev-python/requests-cache-0.4.2 +++ b/metadata/md5-cache/dev-python/requests-cache-0.4.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-1.1.0 python_targets_python2_6? ( >=dev-lang/pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/r/requests-cache/requests-cache-0.4.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=669906d1356807937fa83dab18b1b3af diff --git a/metadata/md5-cache/dev-python/requests-cache-0.4.3 b/metadata/md5-cache/dev-python/requests-cache-0.4.3 index bdf68e82b33e..d96b43c9f912 100644 --- a/metadata/md5-cache/dev-python/requests-cache-0.4.3 +++ b/metadata/md5-cache/dev-python/requests-cache-0.4.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-1.1.0 python_targets_python2_6? ( >=dev-lang/pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/r/requests-cache/requests-cache-0.4.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=21f1446230e57e9ce1456b82b833498e diff --git a/metadata/md5-cache/dev-python/requests-oauthlib-0.3.3 b/metadata/md5-cache/dev-python/requests-oauthlib-0.3.3 index aa8682e8d3c2..3c3ff10e2def 100644 --- a/metadata/md5-cache/dev-python/requests-oauthlib-0.3.3 +++ b/metadata/md5-cache/dev-python/requests-oauthlib-0.3.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-1.0.0[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/requests/requests-oauthlib/archive/v0.3.3.tar.gz -> requests-oauthlib-0.3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e97e15f1ed63e2db6f73ba204fa1adb1 diff --git a/metadata/md5-cache/dev-python/restkit-4.2.1-r1 b/metadata/md5-cache/dev-python/restkit-4.2.1-r1 index a27a17a989d3..f4eb6f80c013 100644 --- a/metadata/md5-cache/dev-python/restkit-4.2.1-r1 +++ b/metadata/md5-cache/dev-python/restkit-4.2.1-r1 @@ -10,5 +10,5 @@ RDEPEND=cli? ( dev-python/ipython dev-python/setuptools[python_targets_python2_6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/r/restkit/restkit-4.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=66574a1b7c2a6a41ff0323eeee1b4ba8 diff --git a/metadata/md5-cache/dev-python/robotframework-2.7.6 b/metadata/md5-cache/dev-python/robotframework-2.7.6 index 5f658b667a99..935db1152317 100644 --- a/metadata/md5-cache/dev-python/robotframework-2.7.6 +++ b/metadata/md5-cache/dev-python/robotframework-2.7.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://robotframework.googlecode.com/files/robotframework-2.7.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a9cd282d230fbbf68b654b3f269e829b diff --git a/metadata/md5-cache/dev-python/robotframework-2.7.7 b/metadata/md5-cache/dev-python/robotframework-2.7.7 index 2994b3a9da65..75fa366e67ca 100644 --- a/metadata/md5-cache/dev-python/robotframework-2.7.7 +++ b/metadata/md5-cache/dev-python/robotframework-2.7.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://robotframework.googlecode.com/files/robotframework-2.7.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=65436419f200a46c3e79fe66f6f63a17 diff --git a/metadata/md5-cache/dev-python/robotframework-2.8.1 b/metadata/md5-cache/dev-python/robotframework-2.8.1 index 0b05234a9f4f..575219b6829a 100644 --- a/metadata/md5-cache/dev-python/robotframework-2.8.1 +++ b/metadata/md5-cache/dev-python/robotframework-2.8.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://robotframework.googlecode.com/files/robotframework-2.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0c3f62f740d8caf45f39fabb4f625b9e diff --git a/metadata/md5-cache/dev-python/robotframework-selenium2library-1.1.0 b/metadata/md5-cache/dev-python/robotframework-selenium2library-1.1.0 index f1d9bc7932a2..b1ff5cb11172 100644 --- a/metadata/md5-cache/dev-python/robotframework-selenium2library-1.1.0 +++ b/metadata/md5-cache/dev-python/robotframework-selenium2library-1.1.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/selenium-2.12.0[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/robotframework-selenium2library/robotframework-selenium2library-1.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2730c7defdd912eab2e321430f034549 diff --git a/metadata/md5-cache/dev-python/robotframework-selenium2library-1.2.0 b/metadata/md5-cache/dev-python/robotframework-selenium2library-1.2.0 index 7d87c3984c2a..eb85a56ef5a4 100644 --- a/metadata/md5-cache/dev-python/robotframework-selenium2library-1.2.0 +++ b/metadata/md5-cache/dev-python/robotframework-selenium2library-1.2.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/selenium-2.12.0[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/robotframework-selenium2library/robotframework-selenium2library-1.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=03eabb4774d200638ef6dd747ac131c0 diff --git a/metadata/md5-cache/dev-python/robotframework-selenium2library-1.4.0 b/metadata/md5-cache/dev-python/robotframework-selenium2library-1.4.0 index 7de151df9068..01067a0669d0 100644 --- a/metadata/md5-cache/dev-python/robotframework-selenium2library-1.4.0 +++ b/metadata/md5-cache/dev-python/robotframework-selenium2library-1.4.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/selenium-2.12.0[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/robotframework-selenium2library/robotframework-selenium2library-1.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=247ca82c2492173e2fa92e68d817f777 diff --git a/metadata/md5-cache/dev-python/robotframework-selenium2library-9999 b/metadata/md5-cache/dev-python/robotframework-selenium2library-9999 index bcde434b75cd..bfcbef8155bd 100644 --- a/metadata/md5-cache/dev-python/robotframework-selenium2library-9999 +++ b/metadata/md5-cache/dev-python/robotframework-selenium2library-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/selenium-2.12.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/decorator-3.3.2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/robotframework-2.6.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0b4cbc0f5e773824e45055ab209916c4 diff --git a/metadata/md5-cache/dev-python/robotframework-sshlibrary-1.1 b/metadata/md5-cache/dev-python/robotframework-sshlibrary-1.1 index 94c4be1d3190..bbc964776a17 100644 --- a/metadata/md5-cache/dev-python/robotframework-sshlibrary-1.1 +++ b/metadata/md5-cache/dev-python/robotframework-sshlibrary-1.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/paramiko[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://robotframework-sshlibrary.googlecode.com/files/robotframework-sshlibrary-1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=76e4b1312e4e21c0e31fdd8504e036d1 diff --git a/metadata/md5-cache/dev-python/roman-2.0.0 b/metadata/md5-cache/dev-python/roman-2.0.0 index f01810648db8..fb78653ed0e5 100644 --- a/metadata/md5-cache/dev-python/roman-2.0.0 +++ b/metadata/md5-cache/dev-python/roman-2.0.0 @@ -10,5 +10,5 @@ RDEPEND=!=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/rope/rope-0.9.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15ae8e4e9e1ad23092de733c59e46b76 diff --git a/metadata/md5-cache/dev-python/ropemode-0.2-r1 b/metadata/md5-cache/dev-python/ropemode-0.2-r1 index 49221e5d5a6f..7730f4a1b2f5 100644 --- a/metadata/md5-cache/dev-python/ropemode-0.2-r1 +++ b/metadata/md5-cache/dev-python/ropemode-0.2-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/rope-0.9.2[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/ropemode/ropemode-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=50934563c6c5f019ca2fcc6aa0171880 diff --git a/metadata/md5-cache/dev-python/routes-1.12.3-r1 b/metadata/md5-cache/dev-python/routes-1.12.3-r1 index bb9cd9476fa2..b1a36a6a56a5 100644 --- a/metadata/md5-cache/dev-python/routes-1.12.3-r1 +++ b/metadata/md5-cache/dev-python/routes-1.12.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/R/Routes/Routes-1.12.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=87e9f1d24c39ee1ddcea90160eba65be diff --git a/metadata/md5-cache/dev-python/routes-1.13-r1 b/metadata/md5-cache/dev-python/routes-1.13-r1 index 174217d89c38..e85915038192 100644 --- a/metadata/md5-cache/dev-python/routes-1.13-r1 +++ b/metadata/md5-cache/dev-python/routes-1.13-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/webob[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/R/Routes/Routes-1.13.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f9cd2c6a71225632dff96dd307bfb23b diff --git a/metadata/md5-cache/dev-python/rpy-2.3.6 b/metadata/md5-cache/dev-python/rpy-2.3.6 index 9fa519ad0a6f..b4e0f9b34f2e 100644 --- a/metadata/md5-cache/dev-python/rpy-2.3.6 +++ b/metadata/md5-cache/dev-python/rpy-2.3.6 @@ -10,5 +10,5 @@ RDEPEND=>=dev-lang/R-2.8 dev-python/numpy[python_targets_python2_7(-)?,-python_s REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/rpy2/rpy2-2.3.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3c9fac72781a097115f8db1442fb6d91 diff --git a/metadata/md5-cache/dev-python/rst2pdf-0.93-r1 b/metadata/md5-cache/dev-python/rst2pdf-0.93-r1 index d6323152407c..866697f25c4d 100644 --- a/metadata/md5-cache/dev-python/rst2pdf-0.93-r1 +++ b/metadata/md5-cache/dev-python/rst2pdf-0.93-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/docutils[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://rst2pdf.googlecode.com/files/rst2pdf-0.93.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9a939077fc6950e6a7c6d97a041773d0 diff --git a/metadata/md5-cache/dev-python/ruledispatch-0.5_pre2306-r2 b/metadata/md5-cache/dev-python/ruledispatch-0.5_pre2306-r2 index 081e81e69b7a..7c1d2f30c0e3 100644 --- a/metadata/md5-cache/dev-python/ruledispatch-0.5_pre2306-r2 +++ b/metadata/md5-cache/dev-python/ruledispatch-0.5_pre2306-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyprotocols-1.0_pre2306[python_targets_python2_6(-)?,python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/RuleDispatch-0.5a0.dev-r2306.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f393ce108e5851b9518117c163398b2a diff --git a/metadata/md5-cache/dev-python/scientificpython-2.9.2 b/metadata/md5-cache/dev-python/scientificpython-2.9.2 index a2a80a08be5d..80b3821b18e2 100644 --- a/metadata/md5-cache/dev-python/scientificpython-2.9.2 +++ b/metadata/md5-cache/dev-python/scientificpython-2.9.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://sourcesup.cru.fr/frs/download.php/4153/ScientificPython-2.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=81ae126ab5814c6d4a0a1cc0376a8fbd diff --git a/metadata/md5-cache/dev-python/scimath-4.1.2-r1 b/metadata/md5-cache/dev-python/scimath-4.1.2-r1 index ed7fff386853..3d3d2db7c917 100644 --- a/metadata/md5-cache/dev-python/scimath-4.1.2-r1 +++ b/metadata/md5-cache/dev-python/scimath-4.1.2-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/traits-4.1[python_targets_python2_7(-)?,-python_single_targ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/scimath-4.1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=1b84419df6e765a4d3bcdef8833482e9 diff --git a/metadata/md5-cache/dev-python/scrapy-0.16.4 b/metadata/md5-cache/dev-python/scrapy-0.16.4 index eb805f66829b..64401ec8a1bb 100644 --- a/metadata/md5-cache/dev-python/scrapy-0.16.4 +++ b/metadata/md5-cache/dev-python/scrapy-0.16.4 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libxml2[python,python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/S/Scrapy/Scrapy-0.16.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0ae6c4f679a59489460b8e90bca78b32 diff --git a/metadata/md5-cache/dev-python/scrapy-0.17.0 b/metadata/md5-cache/dev-python/scrapy-0.17.0 index b2f987d93545..cab99c631e79 100644 --- a/metadata/md5-cache/dev-python/scrapy-0.17.0 +++ b/metadata/md5-cache/dev-python/scrapy-0.17.0 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libxml2[python,python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/scrapy/scrapy/archive/0.17.0.tar.gz -> scrapy-0.17.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=b2ae48c17ffb4f0e9f9ef441d47c6346 diff --git a/metadata/md5-cache/dev-python/selenium-2.29.0 b/metadata/md5-cache/dev-python/selenium-2.29.0 index f23cf38fc02c..bf83a42957d7 100644 --- a/metadata/md5-cache/dev-python/selenium-2.29.0 +++ b/metadata/md5-cache/dev-python/selenium-2.29.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/s/selenium/selenium-2.29.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b36ea4146e32f03312926c5225606224 diff --git a/metadata/md5-cache/dev-python/send2trash-1.2.0 b/metadata/md5-cache/dev-python/send2trash-1.2.0 index 3d829fe48bd7..32360ca222cb 100644 --- a/metadata/md5-cache/dev-python/send2trash-1.2.0 +++ b/metadata/md5-cache/dev-python/send2trash-1.2.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/S/Send2Trash/Send2Trash-1.2.0.tar.gz -> send2trash-1.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=03dc77cf017648af33aa8272b8504d00 diff --git a/metadata/md5-cache/dev-python/serpent-1.2 b/metadata/md5-cache/dev-python/serpent-1.2 index d6cc86b84d0d..74feed22d65b 100644 --- a/metadata/md5-cache/dev-python/serpent-1.2 +++ b/metadata/md5-cache/dev-python/serpent-1.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/serpent/serpent-1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=095ab415482c9cc6415ec5764ccadc5f diff --git a/metadata/md5-cache/dev-python/serpent-1.3 b/metadata/md5-cache/dev-python/serpent-1.3 index fe8bf65db4c7..eb97f6c93e74 100644 --- a/metadata/md5-cache/dev-python/serpent-1.3 +++ b/metadata/md5-cache/dev-python/serpent-1.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/serpent/serpent-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e1be1d72df208f703e7a8b9190c74354 diff --git a/metadata/md5-cache/dev-python/serpent-1.4 b/metadata/md5-cache/dev-python/serpent-1.4 index 85dec9dfca9a..31ca972c4b3f 100644 --- a/metadata/md5-cache/dev-python/serpent-1.4 +++ b/metadata/md5-cache/dev-python/serpent-1.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/serpent/serpent-1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0e9d048ebbe82868d96ac6d596c41fc0 diff --git a/metadata/md5-cache/dev-python/setproctitle-1.1.6-r1 b/metadata/md5-cache/dev-python/setproctitle-1.1.6-r1 index b055baf20388..95eee1caa845 100644 --- a/metadata/md5-cache/dev-python/setproctitle-1.1.6-r1 +++ b/metadata/md5-cache/dev-python/setproctitle-1.1.6-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/s/setproctitle/setproctitle-1.1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=449658e198ae85a2451ecc8353024806 diff --git a/metadata/md5-cache/dev-python/setproctitle-1.1.7 b/metadata/md5-cache/dev-python/setproctitle-1.1.7 index cb7268cbf175..ff31a1cbcbbc 100644 --- a/metadata/md5-cache/dev-python/setproctitle-1.1.7 +++ b/metadata/md5-cache/dev-python/setproctitle-1.1.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/s/setproctitle/setproctitle-1.1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f39276190d9e063d8315f2c70f862da9 diff --git a/metadata/md5-cache/dev-python/setuptools-0.6.30-r1 b/metadata/md5-cache/dev-python/setuptools-0.6.30-r1 index 6e57d9b64af3..e1dd9810df4a 100644 --- a/metadata/md5-cache/dev-python/setuptools-0.6.30-r1 +++ b/metadata/md5-cache/dev-python/setuptools-0.6.30-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/d/distribute/distribute-0.6.30.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d3c96ce3f8577cc20c1df55a77b7347d diff --git a/metadata/md5-cache/dev-python/setuptools-0.6.33 b/metadata/md5-cache/dev-python/setuptools-0.6.33 index 2966dd7f63e1..cf9288048729 100644 --- a/metadata/md5-cache/dev-python/setuptools-0.6.33 +++ b/metadata/md5-cache/dev-python/setuptools-0.6.33 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/d/distribute/distribute-0.6.33.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=22c76d4cd41fbd057d84ccbef9ab72d2 diff --git a/metadata/md5-cache/dev-python/setuptools-0.6.45-r1 b/metadata/md5-cache/dev-python/setuptools-0.6.45-r1 index 8044ed5cecce..7f2ff90bb151 100644 --- a/metadata/md5-cache/dev-python/setuptools-0.6.45-r1 +++ b/metadata/md5-cache/dev-python/setuptools-0.6.45-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/d/distribute/distribute-0.6.45.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=285e4a2eec4e73124e512ef54642bf07 diff --git a/metadata/md5-cache/dev-python/setuptools-0.8-r1 b/metadata/md5-cache/dev-python/setuptools-0.8-r1 index 04618280bc89..b5bd388a851c 100644 --- a/metadata/md5-cache/dev-python/setuptools-0.8-r1 +++ b/metadata/md5-cache/dev-python/setuptools-0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-0.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=24cf8744afdbbf78f44c76f326603c39 diff --git a/metadata/md5-cache/dev-python/setuptools-0.9.8-r1 b/metadata/md5-cache/dev-python/setuptools-0.9.8-r1 index c781e6dd2498..6a2fea34f9b3 100644 --- a/metadata/md5-cache/dev-python/setuptools-0.9.8-r1 +++ b/metadata/md5-cache/dev-python/setuptools-0.9.8-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-0.9.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b60b23cb338a54da3e9f64e1d96dc1e8 diff --git a/metadata/md5-cache/dev-python/setuptools-1.0 b/metadata/md5-cache/dev-python/setuptools-1.0 index df64550c68cf..b90bd3c81548 100644 --- a/metadata/md5-cache/dev-python/setuptools-1.0 +++ b/metadata/md5-cache/dev-python/setuptools-1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=75df7b40489dbbe71faefa7974b49b02 diff --git a/metadata/md5-cache/dev-python/setuptools-1.1 b/metadata/md5-cache/dev-python/setuptools-1.1 index d5a614ab7b16..6aafa411f445 100644 --- a/metadata/md5-cache/dev-python/setuptools-1.1 +++ b/metadata/md5-cache/dev-python/setuptools-1.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b078c60d72c1791074e1f1ef5551c776 diff --git a/metadata/md5-cache/dev-python/setuptools-1.1.1 b/metadata/md5-cache/dev-python/setuptools-1.1.1 index bcc053dd81d7..8b85e0555798 100644 --- a/metadata/md5-cache/dev-python/setuptools-1.1.1 +++ b/metadata/md5-cache/dev-python/setuptools-1.1.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-1.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5cbf5b52e2fc881637fd9bbc869bb368 diff --git a/metadata/md5-cache/dev-python/setuptools-1.1.3 b/metadata/md5-cache/dev-python/setuptools-1.1.3 index f1477685183d..44ed3a9358e0 100644 --- a/metadata/md5-cache/dev-python/setuptools-1.1.3 +++ b/metadata/md5-cache/dev-python/setuptools-1.1.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-1.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6d9712a1f9835f461fa1f3ba099ca9e6 diff --git a/metadata/md5-cache/dev-python/setuptools-1.1.5 b/metadata/md5-cache/dev-python/setuptools-1.1.5 index fd6223fe61dc..48e1de2542c1 100644 --- a/metadata/md5-cache/dev-python/setuptools-1.1.5 +++ b/metadata/md5-cache/dev-python/setuptools-1.1.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-1.1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e597d080e1568bea9016837c45656987 diff --git a/metadata/md5-cache/dev-python/setuptools-1.1.6 b/metadata/md5-cache/dev-python/setuptools-1.1.6 index 5ee42f0143d9..131c238ce74e 100644 --- a/metadata/md5-cache/dev-python/setuptools-1.1.6 +++ b/metadata/md5-cache/dev-python/setuptools-1.1.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools/setuptools-1.1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=08ebb85c921aee1f7eef74f98b1ef5bb diff --git a/metadata/md5-cache/dev-python/setuptools-9999 b/metadata/md5-cache/dev-python/setuptools-9999 index cb31b9a01845..c6185a9a7cb8 100644 --- a/metadata/md5-cache/dev-python/setuptools-9999 +++ b/metadata/md5-cache/dev-python/setuptools-9999 @@ -8,5 +8,5 @@ LICENSE=PSF-2 RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6bca8f76920cdb86f5b73cf96248a49c diff --git a/metadata/md5-cache/dev-python/setuptools-git-1.0 b/metadata/md5-cache/dev-python/setuptools-git-1.0 index 039ebd2bab47..97a270de3b2b 100644 --- a/metadata/md5-cache/dev-python/setuptools-git-1.0 +++ b/metadata/md5-cache/dev-python/setuptools-git-1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools-git/setuptools-git-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38d58d3a2c2dc5fe6cd5ba4e7d8aaebf diff --git a/metadata/md5-cache/dev-python/setuptools-git-1.0_beta1 b/metadata/md5-cache/dev-python/setuptools-git-1.0_beta1 index 4eb116df020b..a4f132b32944 100644 --- a/metadata/md5-cache/dev-python/setuptools-git-1.0_beta1 +++ b/metadata/md5-cache/dev-python/setuptools-git-1.0_beta1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools-git/setuptools-git-1.0b1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c3f15fd5eafd592ef2ba02b0c4a74fd2 diff --git a/metadata/md5-cache/dev-python/setuptools_hg-0.4-r1 b/metadata/md5-cache/dev-python/setuptools_hg-0.4-r1 index b5c2c9ab510e..2ae73b22c8d6 100644 --- a/metadata/md5-cache/dev-python/setuptools_hg-0.4-r1 +++ b/metadata/md5-cache/dev-python/setuptools_hg-0.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-vcs/mercurial python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/setuptools_hg/setuptools_hg-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=979c59a5fe91870f41449ecd49c48ee6 diff --git a/metadata/md5-cache/dev-python/sh-1.07 b/metadata/md5-cache/dev-python/sh-1.07 index 40c9eeb5f04a..eaea5d57fdc8 100644 --- a/metadata/md5-cache/dev-python/sh-1.07 +++ b/metadata/md5-cache/dev-python/sh-1.07 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/amoffat/sh/archive/1.07.tar.gz -> sh-1.07.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=195f695c9ba80d54d78703421e79b590 diff --git a/metadata/md5-cache/dev-python/sh-1.08 b/metadata/md5-cache/dev-python/sh-1.08 index 2bd43077b997..a1711b43eb9e 100644 --- a/metadata/md5-cache/dev-python/sh-1.08 +++ b/metadata/md5-cache/dev-python/sh-1.08 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/amoffat/sh/archive/1.08.tar.gz -> sh-1.08.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=52d72139b455ff146d30523e651c80dd diff --git a/metadata/md5-cache/dev-python/simplecv-1.3 b/metadata/md5-cache/dev-python/simplecv-1.3 index eb3e2f82f0b3..4a5a66b5b095 100644 --- a/metadata/md5-cache/dev-python/simplecv-1.3 +++ b/metadata/md5-cache/dev-python/simplecv-1.3 @@ -10,5 +10,5 @@ RDEPEND=>=media-libs/opencv-2.2 dev-python/numpy[python_targets_python2_7(-)?,-p REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/sightmachine/SimpleCV/archive/1.3.tar.gz -> simplecv-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=c37c0a26f579d1ce353c358845cd4e5e diff --git a/metadata/md5-cache/dev-python/simplegeneric-0.8.1-r1 b/metadata/md5-cache/dev-python/simplegeneric-0.8.1-r1 index 77cca068c6bd..c750b83811c5 100644 --- a/metadata/md5-cache/dev-python/simplegeneric-0.8.1-r1 +++ b/metadata/md5-cache/dev-python/simplegeneric-0.8.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/simplegeneric/simplegeneric-0.8.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c6d4b04a0cebe00f0cd6671ebad99a56 diff --git a/metadata/md5-cache/dev-python/simplegui-0.1.0 b/metadata/md5-cache/dev-python/simplegui-0.1.0 index ba7a15d487e3..499f2a92bb80 100644 --- a/metadata/md5-cache/dev-python/simplegui-0.1.0 +++ b/metadata/md5-cache/dev-python/simplegui-0.1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[tk] ) dev-pyt REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://static.florian-berger.de/simplegui-0.1.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d1d151c6d1e31873d5debb274c5476c7 diff --git a/metadata/md5-cache/dev-python/simplejson-3.0.7 b/metadata/md5-cache/dev-python/simplejson-3.0.7 index 7207ee33d7d0..fd3c178a7d78 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.0.7 +++ b/metadata/md5-cache/dev-python/simplejson-3.0.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.0.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dbef4ebaf8737f4d37be1305a2151b06 diff --git a/metadata/md5-cache/dev-python/simplejson-3.1.3 b/metadata/md5-cache/dev-python/simplejson-3.1.3 index ce24ce219f99..4d617ecfaaf3 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.1.3 +++ b/metadata/md5-cache/dev-python/simplejson-3.1.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e4e53cc850f012b5e5e58443f03091f3 diff --git a/metadata/md5-cache/dev-python/simplejson-3.2.0 b/metadata/md5-cache/dev-python/simplejson-3.2.0 index 0d38fd69898b..6576e2c0ef43 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.2.0 +++ b/metadata/md5-cache/dev-python/simplejson-3.2.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3587d8cecb0a6470efc1dc33b533f8a3 diff --git a/metadata/md5-cache/dev-python/simplejson-3.3.0 b/metadata/md5-cache/dev-python/simplejson-3.3.0 index a6f1125ec495..e63b60747a0a 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.3.0 +++ b/metadata/md5-cache/dev-python/simplejson-3.3.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=70b5d16233b33d7faa0ed2051f003b46 diff --git a/metadata/md5-cache/dev-python/simplejson-3.3.1 b/metadata/md5-cache/dev-python/simplejson-3.3.1 index b64a86c0147d..c24f02ae7fae 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.3.1 +++ b/metadata/md5-cache/dev-python/simplejson-3.3.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc9332dd89aa958efc9c14e5374b3123 diff --git a/metadata/md5-cache/dev-python/simples3-1.0 b/metadata/md5-cache/dev-python/simples3-1.0 index 4d20bbf53c79..16a8f77f3222 100644 --- a/metadata/md5-cache/dev-python/simples3-1.0 +++ b/metadata/md5-cache/dev-python/simples3-1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/simples3/simples3-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7c1c2924dcd57e29e53bcbd8c334a2c7 diff --git a/metadata/md5-cache/dev-python/simpy-2.3.1-r1 b/metadata/md5-cache/dev-python/simpy-2.3.1-r1 index 2157bcc2e975..3d6315fe915a 100644 --- a/metadata/md5-cache/dev-python/simpy-2.3.1-r1 +++ b/metadata/md5-cache/dev-python/simpy-2.3.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[tk] ) python_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/simpy/simpy/SimPy-2.3/SimPy-2.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5fd1000f2b3c84c1818e7239d595a472 diff --git a/metadata/md5-cache/dev-python/sip-4.14.6 b/metadata/md5-cache/dev-python/sip-4.15.3 similarity index 91% rename from metadata/md5-cache/dev-python/sip-4.14.6 rename to metadata/md5-cache/dev-python/sip-4.15.3 index 4d39edb76133..aa5fc5b32777 100644 --- a/metadata/md5-cache/dev-python/sip-4.14.6 +++ b/metadata/md5-cache/dev-python/sip-4.15.3 @@ -4,11 +4,11 @@ DESCRIPTION=Python extension module generator for C and C++ libraries EAPI=5 HOMEPAGE=http://www.riverbankcomputing.co.uk/software/sip/intro http://pypi.python.org/pypi/SIP IUSE=debug doc python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=|| ( GPL-2 GPL-3 sip ) RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) -SLOT=0/9 -SRC_URI=mirror://sourceforge/pyqt/sip-4.14.6.tar.gz +SLOT=0/10 +SRC_URI=mirror://sourceforge/pyqt/sip-4.15.3.tar.gz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=946a9864726fc860c545b5532aa9bcfe +_md5_=0ef1278444cc3f57caaf1854cda20e59 diff --git a/metadata/md5-cache/dev-python/six-1.2.0-r1 b/metadata/md5-cache/dev-python/six-1.2.0-r1 index 8baf6075ff59..65a38472bc18 100644 --- a/metadata/md5-cache/dev-python/six-1.2.0-r1 +++ b/metadata/md5-cache/dev-python/six-1.2.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/six/six-1.2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=713592ef72fb88d8d8f97e9fd796dc96 diff --git a/metadata/md5-cache/dev-python/six-1.3.0 b/metadata/md5-cache/dev-python/six-1.3.0 index 0bac85abbd55..0a21da597580 100644 --- a/metadata/md5-cache/dev-python/six-1.3.0 +++ b/metadata/md5-cache/dev-python/six-1.3.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/six/six-1.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0dfd459e5ee4a78bf93be6c51edc8140 diff --git a/metadata/md5-cache/dev-python/six-1.4.0 b/metadata/md5-cache/dev-python/six-1.4.0 index 14f0fae5f2de..9debfdee0e5f 100644 --- a/metadata/md5-cache/dev-python/six-1.4.0 +++ b/metadata/md5-cache/dev-python/six-1.4.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/six/six-1.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0a604e0341e60c96d92a66038e1617de diff --git a/metadata/md5-cache/dev-python/six-1.4.1 b/metadata/md5-cache/dev-python/six-1.4.1 index 6cd1d79ba514..356f3faf61af 100644 --- a/metadata/md5-cache/dev-python/six-1.4.1 +++ b/metadata/md5-cache/dev-python/six-1.4.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/six/six-1.4.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c2253b5c3f0e3727f268f76525588aba diff --git a/metadata/md5-cache/dev-python/six-9999 b/metadata/md5-cache/dev-python/six-9999 index 50ce7b8f2264..a4fdd6edb1d0 100644 --- a/metadata/md5-cache/dev-python/six-9999 +++ b/metadata/md5-cache/dev-python/six-9999 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ca8fe3df2e3d741147aee4ea2edd6e7 diff --git a/metadata/md5-cache/dev-python/skype4py-1.0.32.1-r1 b/metadata/md5-cache/dev-python/skype4py-1.0.32.1-r1 index bd6044cd0470..858c60ade2ca 100644 --- a/metadata/md5-cache/dev-python/skype4py-1.0.32.1-r1 +++ b/metadata/md5-cache/dev-python/skype4py-1.0.32.1-r1 @@ -10,5 +10,5 @@ RDEPEND=net-im/skype python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/S/Skype4Py/Skype4Py-1.0.32.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ac187bb3e129ab9fcba33b8296a6038b diff --git a/metadata/md5-cache/dev-python/skype4py-1.0.34 b/metadata/md5-cache/dev-python/skype4py-1.0.34 index 9a5976d40644..4ef0f32b414a 100644 --- a/metadata/md5-cache/dev-python/skype4py-1.0.34 +++ b/metadata/md5-cache/dev-python/skype4py-1.0.34 @@ -10,5 +10,5 @@ RDEPEND=net-im/skype || ( dev-python/dbus-python[python_targets_python2_6(-)?,py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/awahlig/skype4py/archive/1.0.34.tar.gz -> skype4py-1.0.34.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4932328f2fe24e9889edabeff4bcfc35 diff --git a/metadata/md5-cache/dev-python/skype4py-1.0.35 b/metadata/md5-cache/dev-python/skype4py-1.0.35 index 570b7cc9af62..008883785ad2 100644 --- a/metadata/md5-cache/dev-python/skype4py-1.0.35 +++ b/metadata/md5-cache/dev-python/skype4py-1.0.35 @@ -10,5 +10,5 @@ RDEPEND=net-im/skype || ( dev-python/dbus-python[python_targets_python2_6(-)?,py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/awahlig/skype4py/archive/1.0.35.tar.gz -> skype4py-1.0.35.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9c56e1e03dc92bce8dea6b63707e9180 diff --git a/metadata/md5-cache/dev-python/sleekxmpp-1.1.11 b/metadata/md5-cache/dev-python/sleekxmpp-1.1.11 index b408006ca720..c3ee0664556f 100644 --- a/metadata/md5-cache/dev-python/sleekxmpp-1.1.11 +++ b/metadata/md5-cache/dev-python/sleekxmpp-1.1.11 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/gnupg python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/s/sleekxmpp/sleekxmpp-1.1.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9e8c84858f173d1bd43204b3241f20ef diff --git a/metadata/md5-cache/dev-python/slowaes-0.1 b/metadata/md5-cache/dev-python/slowaes-0.1 index dfbdb15de569..1001462aae6a 100644 --- a/metadata/md5-cache/dev-python/slowaes-0.1 +++ b/metadata/md5-cache/dev-python/slowaes-0.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/slowaes/slowaes-0.1a1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ddd93d5480c4ad7e340bdc81878d74c5 diff --git a/metadata/md5-cache/dev-python/slowaes-0.1-r1 b/metadata/md5-cache/dev-python/slowaes-0.1-r1 index e7fcf2d3b006..9abb40bfc886 100644 --- a/metadata/md5-cache/dev-python/slowaes-0.1-r1 +++ b/metadata/md5-cache/dev-python/slowaes-0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/slowaes/slowaes-0.1a1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1b0fa13e0c39d7297e79f3d341c3f61b diff --git a/metadata/md5-cache/dev-python/smmap-0.8.2-r1 b/metadata/md5-cache/dev-python/smmap-0.8.2-r1 index 0eeab892789a..8278dbc35ced 100644 --- a/metadata/md5-cache/dev-python/smmap-0.8.2-r1 +++ b/metadata/md5-cache/dev-python/smmap-0.8.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/smmap/smmap-0.8.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6d6f07893473d279b11fe36f8c289c17 diff --git a/metadata/md5-cache/dev-python/snakeoil-0.5.3 b/metadata/md5-cache/dev-python/snakeoil-0.5.3 index 7edfa2a5c29c..5f0cc4b59bb6 100644 --- a/metadata/md5-cache/dev-python/snakeoil-0.5.3 +++ b/metadata/md5-cache/dev-python/snakeoil-0.5.3 @@ -10,5 +10,5 @@ RDEPEND=!=dev-lang/python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://snakeoil.googlecode.com/files/snakeoil-0.5.3.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=19f38d416d921566e35f0afffe8eefbf diff --git a/metadata/md5-cache/dev-python/snakeoil-9999 b/metadata/md5-cache/dev-python/snakeoil-9999 index ca26a588cb74..27d5a8898151 100644 --- a/metadata/md5-cache/dev-python/snakeoil-9999 +++ b/metadata/md5-cache/dev-python/snakeoil-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=!=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc67db0d5ba60850de2d5cc3eed19977 diff --git a/metadata/md5-cache/dev-python/soappy-0.12.5-r2 b/metadata/md5-cache/dev-python/soappy-0.12.5-r2 index a0720b979fd0..f89f7a63025a 100644 --- a/metadata/md5-cache/dev-python/soappy-0.12.5-r2 +++ b/metadata/md5-cache/dev-python/soappy-0.12.5-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/fpconst[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/S/SOAPpy/SOAPpy-0.12.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f9b7ff31deeeccd8a88caa003185c1f3 diff --git a/metadata/md5-cache/dev-python/socketpool-0.5.2 b/metadata/md5-cache/dev-python/socketpool-0.5.2 index 4b64076b56a9..b57330db4dd2 100644 --- a/metadata/md5-cache/dev-python/socketpool-0.5.2 +++ b/metadata/md5-cache/dev-python/socketpool-0.5.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/gevent python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/socketpool/socketpool-0.5.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dd2acf76391dc9cea04e5a4b84f74022 diff --git a/metadata/md5-cache/dev-python/socketpool-0.5.2-r1 b/metadata/md5-cache/dev-python/socketpool-0.5.2-r1 index 09715ff81a2b..0bfd28b741a6 100644 --- a/metadata/md5-cache/dev-python/socketpool-0.5.2-r1 +++ b/metadata/md5-cache/dev-python/socketpool-0.5.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/gevent python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/socketpool/socketpool-0.5.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce0da06c180253f33751541b6502345f diff --git a/metadata/md5-cache/dev-python/south-0.7.5-r1 b/metadata/md5-cache/dev-python/south-0.7.5-r1 index eae8dcb461e9..d262ff4671fa 100644 --- a/metadata/md5-cache/dev-python/south-0.7.5-r1 +++ b/metadata/md5-cache/dev-python/south-0.7.5-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://bitbucket.org/andrewgodwin/south/get/0.7.5.tar.gz -> south-0.7.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f39301ac62cbaceca6fca1fa97278b24 diff --git a/metadata/md5-cache/dev-python/south-0.7.6 b/metadata/md5-cache/dev-python/south-0.7.6 index 141503bd2cb3..8d4366c7401d 100644 --- a/metadata/md5-cache/dev-python/south-0.7.6 +++ b/metadata/md5-cache/dev-python/south-0.7.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://bitbucket.org/andrewgodwin/south/get/0.7.6.tar.gz -> south-0.7.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1500be466a9de7329c9eebeb1202cd52 diff --git a/metadata/md5-cache/dev-python/south-0.8.1 b/metadata/md5-cache/dev-python/south-0.8.1 index 8eefd71c7203..9950da4e3ee6 100644 --- a/metadata/md5-cache/dev-python/south-0.8.1 +++ b/metadata/md5-cache/dev-python/south-0.8.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/django[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://bitbucket.org/andrewgodwin/south/get/0.8.1.tar.gz -> south-0.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=cc7ae053a128d248d8992b473328264a diff --git a/metadata/md5-cache/dev-python/soya-0.14-r1 b/metadata/md5-cache/dev-python/soya-0.14-r1 index 3afec7e1e8d5..08cc3d3e514d 100644 --- a/metadata/md5-cache/dev-python/soya-0.14-r1 +++ b/metadata/md5-cache/dev-python/soya-0.14-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-games/ode-0.11.1 dev-python/editobj virtual/python-imaging[python_t REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.gna.org/soya/Soya-0.14.tar.bz2 doc? ( http://download.gna.org/soya/SoyaTutorial-0.14.tar.bz2 ) examples? ( http://download.gna.org/soya/SoyaTutorial-0.14.tar.bz2 ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=028b220f6899b06a8b2f7d8b4de0d936 diff --git a/metadata/md5-cache/dev-python/sparql-wrapper-1.5.2 b/metadata/md5-cache/dev-python/sparql-wrapper-1.5.2 index 9c9ad5486ceb..44fa752bc9a3 100644 --- a/metadata/md5-cache/dev-python/sparql-wrapper-1.5.2 +++ b/metadata/md5-cache/dev-python/sparql-wrapper-1.5.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/rdflib[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/S/SPARQLWrapper/SPARQLWrapper-1.5.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e86a4b65bcbc579c5a8f83f61b4b3e2e diff --git a/metadata/md5-cache/dev-python/speaklater-1.3-r1 b/metadata/md5-cache/dev-python/speaklater-1.3-r1 index c676701cd0a7..7dbef1b7d0b6 100644 --- a/metadata/md5-cache/dev-python/speaklater-1.3-r1 +++ b/metadata/md5-cache/dev-python/speaklater-1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/speaklater/speaklater-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fb2d2a5ded4c2a296141a443dcc5f182 diff --git a/metadata/md5-cache/dev-python/sphinx-1.1.3-r5 b/metadata/md5-cache/dev-python/sphinx-1.1.3-r5 index 0920a42527dc..e15bf669516c 100644 --- a/metadata/md5-cache/dev-python/sphinx-1.1.3-r5 +++ b/metadata/md5-cache/dev-python/sphinx-1.1.3-r5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/docutils-0.7[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/S/Sphinx/Sphinx-1.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f74202f6afc6895a0ac0e146490a6764 diff --git a/metadata/md5-cache/dev-python/sphinx-1.1.3-r6 b/metadata/md5-cache/dev-python/sphinx-1.1.3-r6 index 2b474fb7d6d5..57b4f5d74df2 100644 --- a/metadata/md5-cache/dev-python/sphinx-1.1.3-r6 +++ b/metadata/md5-cache/dev-python/sphinx-1.1.3-r6 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/docutils-0.7[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/S/Sphinx/Sphinx-1.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d1f69f240801d01c5c2d9060ae978d40 diff --git a/metadata/md5-cache/dev-python/sphinx-1.1.3-r7 b/metadata/md5-cache/dev-python/sphinx-1.1.3-r7 index 29c2a9e077ae..e84242bd2a06 100644 --- a/metadata/md5-cache/dev-python/sphinx-1.1.3-r7 +++ b/metadata/md5-cache/dev-python/sphinx-1.1.3-r7 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/docutils-0.7[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/S/Sphinx/Sphinx-1.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d74610f67ee765135f274eb42cdf4b15 diff --git a/metadata/md5-cache/dev-python/sphinx-1.2_pre20130530 b/metadata/md5-cache/dev-python/sphinx-1.2_pre20130530 index 3ba37cbab252..0fc57fcdae1a 100644 --- a/metadata/md5-cache/dev-python/sphinx-1.2_pre20130530 +++ b/metadata/md5-cache/dev-python/sphinx-1.2_pre20130530 @@ -9,5 +9,5 @@ RDEPEND=>=dev-python/docutils-0.10[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~xarthisius/distfiles/Sphinx-1.2_pre20130530.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=3c5a2dfb93f4c5d2b0b559a02cba6567 diff --git a/metadata/md5-cache/dev-python/sphinxcontrib-httpdomain-1.1.8 b/metadata/md5-cache/dev-python/sphinxcontrib-httpdomain-1.1.8 index 6f320ced9f4e..f29fa442b578 100644 --- a/metadata/md5-cache/dev-python/sphinxcontrib-httpdomain-1.1.8 +++ b/metadata/md5-cache/dev-python/sphinxcontrib-httpdomain-1.1.8 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/sphinx-1.1[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.1.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d9946a14570177872469028e3bdd9c88 diff --git a/metadata/md5-cache/dev-python/sphinxcontrib-httpdomain-1.1.9 b/metadata/md5-cache/dev-python/sphinxcontrib-httpdomain-1.1.9 index 39982fc48ddd..363f0b62eba0 100644 --- a/metadata/md5-cache/dev-python/sphinxcontrib-httpdomain-1.1.9 +++ b/metadata/md5-cache/dev-python/sphinxcontrib-httpdomain-1.1.9 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/sphinx-1.1[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/sphinxcontrib-httpdomain/sphinxcontrib-httpdomain-1.1.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0afaa7ffe5c0bf4f2a314371a0f22896 diff --git a/metadata/md5-cache/dev-python/sphinxcontrib-issuetracker-0.11-r1 b/metadata/md5-cache/dev-python/sphinxcontrib-issuetracker-0.11-r1 index 2db41cbe890b..fa167375b734 100644 --- a/metadata/md5-cache/dev-python/sphinxcontrib-issuetracker-0.11-r1 +++ b/metadata/md5-cache/dev-python/sphinxcontrib-issuetracker-0.11-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-0.13[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/sphinxcontrib-issuetracker/sphinxcontrib-issuetracker-0.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1e1259976106ddd3770f7affe94e140d diff --git a/metadata/md5-cache/dev-python/sphinxtogithub-1.0.0 b/metadata/md5-cache/dev-python/sphinxtogithub-1.0.0 index bf9928f51900..94b9b2da3300 100644 --- a/metadata/md5-cache/dev-python/sphinxtogithub-1.0.0 +++ b/metadata/md5-cache/dev-python/sphinxtogithub-1.0.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/sphinx-1.1[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/sphinxtogithub/sphinxtogithub-1.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=641d3eadf50d48100192bec170cf460a diff --git a/metadata/md5-cache/dev-python/spyder-2.2.1 b/metadata/md5-cache/dev-python/spyder-2.2.1 index f8f47a3d9664..8cc3237d3c61 100644 --- a/metadata/md5-cache/dev-python/spyder-2.2.1 +++ b/metadata/md5-cache/dev-python/spyder-2.2.1 @@ -10,5 +10,5 @@ RDEPEND=|| ( dev-python/PyQt4[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://spyderlib.googlecode.com/files/spyder-2.2.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ecf81424ace9ed048afb78bb0215bbc2 diff --git a/metadata/md5-cache/dev-python/sqlalchemy-0.7.10 b/metadata/md5-cache/dev-python/sqlalchemy-0.7.10 index 18c8a4bd46fe..dec29de8ee90 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-0.7.10 +++ b/metadata/md5-cache/dev-python/sqlalchemy-0.7.10 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/S/SQLAlchemy/SQLAlchemy-0.7.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0abccf3a815a7900b4baed8b0b9c98bd diff --git a/metadata/md5-cache/dev-python/sqlalchemy-0.7.9-r1 b/metadata/md5-cache/dev-python/sqlalchemy-0.7.9-r1 index 42d27339dfe4..60576623966f 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-0.7.9-r1 +++ b/metadata/md5-cache/dev-python/sqlalchemy-0.7.9-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/S/SQLAlchemy/SQLAlchemy-0.7.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e77c4882a04b135b757883156fcd398e diff --git a/metadata/md5-cache/dev-python/sqlalchemy-0.8.0 b/metadata/md5-cache/dev-python/sqlalchemy-0.8.0 index d792d22bffc3..8fe45145b756 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-0.8.0 +++ b/metadata/md5-cache/dev-python/sqlalchemy-0.8.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/S/SQLAlchemy/SQLAlchemy-0.8.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=662989a1147e7bd4734085e837226a6a diff --git a/metadata/md5-cache/dev-python/sqlalchemy-0.8.1 b/metadata/md5-cache/dev-python/sqlalchemy-0.8.1 index b67e1ac8d726..f4a5b0bfc4a3 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-0.8.1 +++ b/metadata/md5-cache/dev-python/sqlalchemy-0.8.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/S/SQLAlchemy/SQLAlchemy-0.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=267e45fe52aa9c7456237defd06ec3a7 diff --git a/metadata/md5-cache/dev-python/sqlalchemy-0.8.2 b/metadata/md5-cache/dev-python/sqlalchemy-0.8.2 index af23a41db24a..2a38e8f13ab3 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-0.8.2 +++ b/metadata/md5-cache/dev-python/sqlalchemy-0.8.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/S/SQLAlchemy/SQLAlchemy-0.8.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a18237fbea3bd4b4f88f95389516a8a2 diff --git a/metadata/md5-cache/dev-python/sqlalchemy-migrate-0.7.2-r1 b/metadata/md5-cache/dev-python/sqlalchemy-migrate-0.7.2-r1 index fd1de34da74f..defdcb144f26 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-migrate-0.7.2-r1 +++ b/metadata/md5-cache/dev-python/sqlalchemy-migrate-0.7.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/decorator[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://sqlalchemy-migrate.googlecode.com/files/sqlalchemy-migrate-0.7.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aad9a227ec67b25a53b012c0a4a3bd9f diff --git a/metadata/md5-cache/dev-python/sqlite3dbm-0.1.4-r1 b/metadata/md5-cache/dev-python/sqlite3dbm-0.1.4-r1 index b7adf4b15eba..0ec5828e7c82 100644 --- a/metadata/md5-cache/dev-python/sqlite3dbm-0.1.4-r1 +++ b/metadata/md5-cache/dev-python/sqlite3dbm-0.1.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[sqlite] ) pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/Yelp/sqlite3dbm/archive/v0.1.4.tar.gz -> sqlite3dbm-0.1.4-git.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dd09a9486acf7e2d6f45744981382691 diff --git a/metadata/md5-cache/dev-python/sqlitecachec-1.1.4-r1 b/metadata/md5-cache/dev-python/sqlitecachec-1.1.4-r1 index d39da67aa8d0..ac63c2416394 100644 --- a/metadata/md5-cache/dev-python/sqlitecachec-1.1.4-r1 +++ b/metadata/md5-cache/dev-python/sqlitecachec-1.1.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-db/sqlite:3 dev-libs/glib:2 dev-libs/libxml2 python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://yum.baseurl.org/download/yum-metadata-parser/yum-metadata-parser-1.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7e50e7a7039030d383869a4dcbb0983a diff --git a/metadata/md5-cache/dev-python/sqlobject-1.4.1-r1 b/metadata/md5-cache/dev-python/sqlobject-1.4.1-r1 index 730c175cd803..64f57a48d6b6 100644 --- a/metadata/md5-cache/dev-python/sqlobject-1.4.1-r1 +++ b/metadata/md5-cache/dev-python/sqlobject-1.4.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/formencode-0.2.2[python_targets_python2_6(-)?,python_target REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/S/SQLObject/SQLObject-1.4.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ac0c7ba16008a743fb8ffb1d0fe82353 diff --git a/metadata/md5-cache/dev-python/ssh-1.8.0-r1 b/metadata/md5-cache/dev-python/ssh-1.8.0-r1 index 042fa5e35527..be302c4c5474 100644 --- a/metadata/md5-cache/dev-python/ssh-1.8.0-r1 +++ b/metadata/md5-cache/dev-python/ssh-1.8.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycrypto-2.1[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/ssh/ssh-1.8.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e81f9a1c6557591ac52ff954e95a094c diff --git a/metadata/md5-cache/dev-python/starcluster-0.93.3-r1 b/metadata/md5-cache/dev-python/starcluster-0.93.3-r1 index 10fcb6a788c4..ab1863e3ce0a 100644 --- a/metadata/md5-cache/dev-python/starcluster-0.93.3-r1 +++ b/metadata/md5-cache/dev-python/starcluster-0.93.3-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/ssh-1.7.13[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/S/StarCluster/StarCluster-0.93.3.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bf59aa168f958635338470f8a0c09774 diff --git a/metadata/md5-cache/dev-python/statsmodels-0.5.0 b/metadata/md5-cache/dev-python/statsmodels-0.5.0 index e2478dd0a590..8c4daa1c8525 100644 --- a/metadata/md5-cache/dev-python/statsmodels-0.5.0 +++ b/metadata/md5-cache/dev-python/statsmodels-0.5.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pandas[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/s/statsmodels/statsmodels-0.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=691131814f1fe6e142ae43837b12e801 diff --git a/metadata/md5-cache/dev-python/stevedore-0.10 b/metadata/md5-cache/dev-python/stevedore-0.10 index 4f3bc172f314..7172359ff0b7 100644 --- a/metadata/md5-cache/dev-python/stevedore-0.10 +++ b/metadata/md5-cache/dev-python/stevedore-0.10 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/stevedore/stevedore-0.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1a8d0cdafbb803542cca6d0a4e8a99fc diff --git a/metadata/md5-cache/dev-python/stevedore-0.11 b/metadata/md5-cache/dev-python/stevedore-0.11 index 7abae69e981a..8efdafc42e43 100644 --- a/metadata/md5-cache/dev-python/stevedore-0.11 +++ b/metadata/md5-cache/dev-python/stevedore-0.11 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/stevedore/stevedore-0.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=58b22596cedcbca664dd3cd28d546b09 diff --git a/metadata/md5-cache/dev-python/stevedore-0.12 b/metadata/md5-cache/dev-python/stevedore-0.12 index 814431ae8cd4..c1287cf8d259 100644 --- a/metadata/md5-cache/dev-python/stevedore-0.12 +++ b/metadata/md5-cache/dev-python/stevedore-0.12 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/stevedore/stevedore-0.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=420258bad4a6cbe8d0b3448e6f13b0bc diff --git a/metadata/md5-cache/dev-python/stevedore-0.9.1 b/metadata/md5-cache/dev-python/stevedore-0.9.1 index 8fbf6fbfbcd1..2d8b1a8a137f 100644 --- a/metadata/md5-cache/dev-python/stevedore-0.9.1 +++ b/metadata/md5-cache/dev-python/stevedore-0.9.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/stevedore/stevedore-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=34f84e2bb6414f3f159266334e101b12 diff --git a/metadata/md5-cache/dev-python/stsci-distutils-0.3.2-r1 b/metadata/md5-cache/dev-python/stsci-distutils-0.3.2-r1 index 29687046fffb..64cb65256c6b 100644 --- a/metadata/md5-cache/dev-python/stsci-distutils-0.3.2-r1 +++ b/metadata/md5-cache/dev-python/stsci-distutils-0.3.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/stsci.distutils/stsci.distutils-0.3.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=beaa8981a3f8118f64c56911019afbf0 diff --git a/metadata/md5-cache/dev-python/stsci-distutils-0.3.4 b/metadata/md5-cache/dev-python/stsci-distutils-0.3.4 index 5dfcb53c08c1..9467930e129f 100644 --- a/metadata/md5-cache/dev-python/stsci-distutils-0.3.4 +++ b/metadata/md5-cache/dev-python/stsci-distutils-0.3.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/s/stsci.distutils/stsci.distutils-0.3.4.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b9b184574b64506ce4662abbf610f4f6 diff --git a/metadata/md5-cache/dev-python/subvertpy-0.9.1 b/metadata/md5-cache/dev-python/subvertpy-0.9.1 index 878f2f296658..8c639d7f42d9 100644 --- a/metadata/md5-cache/dev-python/subvertpy-0.9.1 +++ b/metadata/md5-cache/dev-python/subvertpy-0.9.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/subversion-1.4 python_targets_python2_6? ( >=dev-lang/python-2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://samba.org/~jelmer/subvertpy/subvertpy-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7ce98ce94c9e95a09714d02e8d4e7144 diff --git a/metadata/md5-cache/dev-python/suds-0.4-r1 b/metadata/md5-cache/dev-python/suds-0.4-r1 index a8364ced8cdb..c49fd09e49db 100644 --- a/metadata/md5-cache/dev-python/suds-0.4-r1 +++ b/metadata/md5-cache/dev-python/suds-0.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/suds/suds-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=913a7fd89be99d8fa55c5bb2fc599470 diff --git a/metadata/md5-cache/dev-python/sudsds-1.0.1-r1 b/metadata/md5-cache/dev-python/sudsds-1.0.1-r1 index f784ec1b0cad..b8f6ca2de954 100644 --- a/metadata/md5-cache/dev-python/sudsds-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/sudsds-1.0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.nic.cz/public_media/datove_schranky/releases/src/sudsds-1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6611e23b3d2f66082a0b7c5f0cc8401c diff --git a/metadata/md5-cache/dev-python/symboltype-1.0 b/metadata/md5-cache/dev-python/symboltype-1.0 index 5f78ee03c1fe..357c1bdb1ada 100644 --- a/metadata/md5-cache/dev-python/symboltype-1.0 +++ b/metadata/md5-cache/dev-python/symboltype-1.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/S/SymbolType/SymbolType-1.0.zip -> symboltype-1.0.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ef3e35191905873504088357535f2898 diff --git a/metadata/md5-cache/dev-python/sympy-0.7.2-r1 b/metadata/md5-cache/dev-python/sympy-0.7.2-r1 index acbb1fd05c16..e9464e84cf23 100644 --- a/metadata/md5-cache/dev-python/sympy-0.7.2-r1 +++ b/metadata/md5-cache/dev-python/sympy-0.7.2-r1 @@ -10,5 +10,5 @@ RDEPEND=mathml? ( dev-libs/libxml2:2[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=python_targets_python2_6? ( http://sympy.googlecode.com/files/sympy-0.7.2.tar.gz ) python_targets_python2_7? ( http://sympy.googlecode.com/files/sympy-0.7.2.tar.gz ) python_targets_python3_2? ( http://sympy.googlecode.com/files/sympy-0.7.2-py3.2.tar.gz ) python_targets_python3_3? ( http://sympy.googlecode.com/files/sympy-0.7.2-py3.2.tar.gz ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=257fc936eec68717ac7fbe4c437a8e09 diff --git a/metadata/md5-cache/dev-python/sympy-0.7.3 b/metadata/md5-cache/dev-python/sympy-0.7.3 index 47fa1d126ae6..b295cb56ff44 100644 --- a/metadata/md5-cache/dev-python/sympy-0.7.3 +++ b/metadata/md5-cache/dev-python/sympy-0.7.3 @@ -10,5 +10,5 @@ RDEPEND=mathml? ( dev-libs/libxml2:2[python_targets_python2_6(-)?,python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=python_targets_python2_6? ( https://github.com/sympy/sympy/releases/download/sympy-0.7.3/sympy-0.7.3.tar.gz ) python_targets_python2_7? ( https://github.com/sympy/sympy/releases/download/sympy-0.7.3/sympy-0.7.3.tar.gz ) python_targets_python3_2? ( https://github.com/sympy/sympy/releases/download/sympy-0.7.3/sympy-0.7.3-py3.2.tar.gz ) python_targets_python3_3? ( https://github.com/sympy/sympy/releases/download/sympy-0.7.3/sympy-0.7.3-py3.2.tar.gz ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5fb9babf018fb2df9a095cda1ec69d94 diff --git a/metadata/md5-cache/dev-python/tagpy-2013.1 b/metadata/md5-cache/dev-python/tagpy-2013.1 index e8b0a2a17d68..81fe9cd1a673 100644 --- a/metadata/md5-cache/dev-python/tagpy-2013.1 +++ b/metadata/md5-cache/dev-python/tagpy-2013.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/boost-1.49.0[python] >=media-libs/taglib-1.7.2 python_targets REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/t/tagpy/tagpy-2013.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=411d6185a14b823222ee9ec643691b4c diff --git a/metadata/md5-cache/dev-python/tdaemon-0.1.6 b/metadata/md5-cache/dev-python/tdaemon-0.1.6 index 4f8b5631ce86..b9cdf6f00ba0 100644 --- a/metadata/md5-cache/dev-python/tdaemon-0.1.6 +++ b/metadata/md5-cache/dev-python/tdaemon-0.1.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/notify-python[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/tampakrap/tdaemon/archive/v0.1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4e2e2bf55a7df5c5a93e60bbc125cd68 diff --git a/metadata/md5-cache/dev-python/tempita-0.5.1-r1 b/metadata/md5-cache/dev-python/tempita-0.5.1-r1 index 128ec6411819..7e2fb87bb342 100644 --- a/metadata/md5-cache/dev-python/tempita-0.5.1-r1 +++ b/metadata/md5-cache/dev-python/tempita-0.5.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/T/Tempita/Tempita-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=32358fd0eca973ddcce664fc3d150b32 diff --git a/metadata/md5-cache/dev-python/termcolor-1.1.0-r1 b/metadata/md5-cache/dev-python/termcolor-1.1.0-r1 index a8e1ec11d702..1ebbe168fe53 100644 --- a/metadata/md5-cache/dev-python/termcolor-1.1.0-r1 +++ b/metadata/md5-cache/dev-python/termcolor-1.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/t/termcolor/termcolor-1.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8c6d4188e7f826329c5787b8f28bdc0a diff --git a/metadata/md5-cache/dev-python/testfixtures-3.0.0 b/metadata/md5-cache/dev-python/testfixtures-3.0.0 index 58351a96afa2..8f88d6a38b65 100644 --- a/metadata/md5-cache/dev-python/testfixtures-3.0.0 +++ b/metadata/md5-cache/dev-python/testfixtures-3.0.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/t/testfixtures/testfixtures-3.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3d64829273b167c2d647072cf3e11128 diff --git a/metadata/md5-cache/dev-python/testify-0.2.10 b/metadata/md5-cache/dev-python/testify-0.2.10 index cf8db3376c77..6987ce65366a 100644 --- a/metadata/md5-cache/dev-python/testify-0.2.10 +++ b/metadata/md5-cache/dev-python/testify-0.2.10 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/Yelp/testify/tarball/0.2.10 -> testify-0.2.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=d0d52df7ba5a3c1e326045d16567039e diff --git a/metadata/md5-cache/dev-python/testrepository-0.0.17 b/metadata/md5-cache/dev-python/testrepository-0.0.17 index 2ba66cb8d36b..0d9e221a958a 100644 --- a/metadata/md5-cache/dev-python/testrepository-0.0.17 +++ b/metadata/md5-cache/dev-python/testrepository-0.0.17 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/t/testrepository/testrepository-0.0.17.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c71d1d407f4bc4e82fc8aecd83f4ab95 diff --git a/metadata/md5-cache/dev-python/testresources-0.2.7 b/metadata/md5-cache/dev-python/testresources-0.2.7 index 00d5c49d7868..3d8d10af7f49 100644 --- a/metadata/md5-cache/dev-python/testresources-0.2.7 +++ b/metadata/md5-cache/dev-python/testresources-0.2.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/t/testresources/testresources-0.2.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=792d496641281f4322a382a8620a2534 diff --git a/metadata/md5-cache/dev-python/testscenarios-0.4 b/metadata/md5-cache/dev-python/testscenarios-0.4 index 02a1eb2fc927..22bb7e8b6b95 100644 --- a/metadata/md5-cache/dev-python/testscenarios-0.4 +++ b/metadata/md5-cache/dev-python/testscenarios-0.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/t/testscenarios/testscenarios-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2a3133bcbb2913853e0440a38149d52f diff --git a/metadata/md5-cache/dev-python/testtools-0.9.24-r1 b/metadata/md5-cache/dev-python/testtools-0.9.24-r1 index d1a1d45de3ae..894b752a827c 100644 --- a/metadata/md5-cache/dev-python/testtools-0.9.24-r1 +++ b/metadata/md5-cache/dev-python/testtools-0.9.24-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://launchpad.net/testtools/0.9/0.9.24/+download/testtools-0.9.24.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4983a14e77b01aea1064d9a16c7e8297 diff --git a/metadata/md5-cache/dev-python/testtools-0.9.32 b/metadata/md5-cache/dev-python/testtools-0.9.32 index f9a0a01c237b..62a52afd257a 100644 --- a/metadata/md5-cache/dev-python/testtools-0.9.32 +++ b/metadata/md5-cache/dev-python/testtools-0.9.32 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://launchpad.net/testtools/trunk/0.9.32/+download/testtools-0.9.32.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=727f373246504c8a2382c6286dfd78b5 diff --git a/metadata/md5-cache/dev-python/timelib-0.2.4-r1 b/metadata/md5-cache/dev-python/timelib-0.2.4-r1 index 5ffe53336e9f..59e2ed2cea5b 100644 --- a/metadata/md5-cache/dev-python/timelib-0.2.4-r1 +++ b/metadata/md5-cache/dev-python/timelib-0.2.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/t/timelib/timelib-0.2.4.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a267c9fb3b54f805c9510a30e84db91f diff --git a/metadata/md5-cache/dev-python/tinycss-0.2-r2 b/metadata/md5-cache/dev-python/tinycss-0.2-r2 index d2477186e1b8..a311f1d1e80a 100644 --- a/metadata/md5-cache/dev-python/tinycss-0.2-r2 +++ b/metadata/md5-cache/dev-python/tinycss-0.2-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/lxml[python_targets_python2_7(-)?,python_targets_python3_2(-) REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/t/tinycss/tinycss-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d4c8da00909159c67b5da76eaef7cb9d diff --git a/metadata/md5-cache/dev-python/tinycss-0.3 b/metadata/md5-cache/dev-python/tinycss-0.3 index 563b71f590cb..0308de2b3300 100644 --- a/metadata/md5-cache/dev-python/tinycss-0.3 +++ b/metadata/md5-cache/dev-python/tinycss-0.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/lxml[python_targets_python2_7(-)?,python_targets_python3_2(-) REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/t/tinycss/tinycss-0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3222c34df9f865b92bdab0597c94f93f diff --git a/metadata/md5-cache/dev-python/tlslite-0.4.3-r1 b/metadata/md5-cache/dev-python/tlslite-0.4.3-r1 index 43db0a12cb62..79ed6916a125 100644 --- a/metadata/md5-cache/dev-python/tlslite-0.4.3-r1 +++ b/metadata/md5-cache/dev-python/tlslite-0.4.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://github.com/trevp/tlslite/downloads/tlslite-0.4.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d98e66a76cdbc8c62781b7a1496f96a6 diff --git a/metadata/md5-cache/dev-python/tracing-0.7-r1 b/metadata/md5-cache/dev-python/tracing-0.7-r1 index ecb63b754f89..233de54cab23 100644 --- a/metadata/md5-cache/dev-python/tracing-0.7-r1 +++ b/metadata/md5-cache/dev-python/tracing-0.7-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/p/python-tracing/python-tracing_0.7.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bf9bce3c8ff06ddcd0a0a2073da69bf9 diff --git a/metadata/md5-cache/dev-python/tracing-0.8 b/metadata/md5-cache/dev-python/tracing-0.8 index 6a0c1e2c24cc..f3bcc3649da6 100644 --- a/metadata/md5-cache/dev-python/tracing-0.8 +++ b/metadata/md5-cache/dev-python/tracing-0.8 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/p/python-tracing/python-tracing_0.8.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=308e2a555194bd9a164918a410a1dc2c diff --git a/metadata/md5-cache/dev-python/traits-4.3.0-r1 b/metadata/md5-cache/dev-python/traits-4.3.0-r1 index 160b0b5d9444..ead07ea9d96a 100644 --- a/metadata/md5-cache/dev-python/traits-4.3.0-r1 +++ b/metadata/md5-cache/dev-python/traits-4.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ETS/traits-4.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=50a6199b2a23e30ccfd90d7696d964fc diff --git a/metadata/md5-cache/dev-python/traitsui-4.3.0-r1 b/metadata/md5-cache/dev-python/traitsui-4.3.0-r1 index ed0a9fcdfbe7..1f04b61214bc 100644 --- a/metadata/md5-cache/dev-python/traitsui-4.3.0-r1 +++ b/metadata/md5-cache/dev-python/traitsui-4.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyface[python_targets_python2_7(-)?,-python_single_target_pyt REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.enthought.com/repo/ets/traitsui-4.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=25eba9120c4b92266ff3863dbe17f99c diff --git a/metadata/md5-cache/dev-python/translationstring-1.1-r1 b/metadata/md5-cache/dev-python/translationstring-1.1-r1 index bb61c22bd3d7..55be849517d6 100644 --- a/metadata/md5-cache/dev-python/translationstring-1.1-r1 +++ b/metadata/md5-cache/dev-python/translationstring-1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/t/translationstring/translationstring-1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d3eb3a9fdb95acd5cb019dc7d2842d3f diff --git a/metadata/md5-cache/dev-python/transmissionrpc-0.10 b/metadata/md5-cache/dev-python/transmissionrpc-0.10 index 51cd31d96724..d96ead9a973a 100644 --- a/metadata/md5-cache/dev-python/transmissionrpc-0.10 +++ b/metadata/md5-cache/dev-python/transmissionrpc-0.10 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/six-1.1.0[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/t/transmissionrpc/transmissionrpc-0.10.tar.gz https://bitbucket.org/blueluna/transmissionrpc/src/release-0.10/test/data/ubuntu-12.04.2-alternate-amd64.iso.torrent -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ab9ba775cfe48aebcb239ba9cd766905 diff --git a/metadata/md5-cache/dev-python/transmissionrpc-0.9 b/metadata/md5-cache/dev-python/transmissionrpc-0.9 index df8a9a50be2f..3d8fe8368af4 100644 --- a/metadata/md5-cache/dev-python/transmissionrpc-0.9 +++ b/metadata/md5-cache/dev-python/transmissionrpc-0.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/t/transmissionrpc/transmissionrpc-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15f277258a1ca0bf6b5bca64dfcbd60a diff --git a/metadata/md5-cache/dev-python/transmissionrpc-9999 b/metadata/md5-cache/dev-python/transmissionrpc-9999 index f5bc28776867..5301f14d1042 100644 --- a/metadata/md5-cache/dev-python/transmissionrpc-9999 +++ b/metadata/md5-cache/dev-python/transmissionrpc-9999 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=>=dev-python/six-1.1.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9acb09b2694a47f6ce3259228418a467 diff --git a/metadata/md5-cache/dev-python/ttfquery-1.0.5-r1 b/metadata/md5-cache/dev-python/ttfquery-1.0.5-r1 index 0e77fa0cb4ab..62661e8205c0 100644 --- a/metadata/md5-cache/dev-python/ttfquery-1.0.5-r1 +++ b/metadata/md5-cache/dev-python/ttfquery-1.0.5-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/fonttools dev-python/numpy python_targets_python2_6? ( >=dev- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/T/TTFQuery/TTFQuery-1.0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=264b0820c06b3cde990faf48f1fd0eb2 diff --git a/metadata/md5-cache/dev-python/ttystatus-0.22 b/metadata/md5-cache/dev-python/ttystatus-0.22 index b9f5fdcab55f..8be4a6648d58 100644 --- a/metadata/md5-cache/dev-python/ttystatus-0.22 +++ b/metadata/md5-cache/dev-python/ttystatus-0.22 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/p/python-ttystatus/python-ttystatus_0.22.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a9f6d84d1b9f933503e3fe04a4f345aa diff --git a/metadata/md5-cache/dev-python/ttystatus-0.23 b/metadata/md5-cache/dev-python/ttystatus-0.23 index ffcb87373900..b7b05b0fefb1 100644 --- a/metadata/md5-cache/dev-python/ttystatus-0.23 +++ b/metadata/md5-cache/dev-python/ttystatus-0.23 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/p/python-ttystatus/python-ttystatus_0.23.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=72472604ed8b1f8baff8a1a3cd580693 diff --git a/metadata/md5-cache/dev-python/turbojson-1.3-r1 b/metadata/md5-cache/dev-python/turbojson-1.3-r1 index 00630158265f..ee1a7e3a8e58 100644 --- a/metadata/md5-cache/dev-python/turbojson-1.3-r1 +++ b/metadata/md5-cache/dev-python/turbojson-1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/decoratortools-1.4[python_targets_python2_6(-)?,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/T/TurboJson/TurboJson-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c0870c00c610ab6b668872028980b816 diff --git a/metadata/md5-cache/dev-python/tweepy-2.0 b/metadata/md5-cache/dev-python/tweepy-2.0 index 11cea05129fb..7fbfde496cf9 100644 --- a/metadata/md5-cache/dev-python/tweepy-2.0 +++ b/metadata/md5-cache/dev-python/tweepy-2.0 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=https://github.com/tweepy/tweepy/tarball/2.0 -> tweepy-2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=71e8b998e3013a1b2d160b3bacd3db13 diff --git a/metadata/md5-cache/dev-python/twill-0.9-r1 b/metadata/md5-cache/dev-python/twill-0.9-r1 index 7ca9659df27b..80dcc1257bcd 100644 --- a/metadata/md5-cache/dev-python/twill-0.9-r1 +++ b/metadata/md5-cache/dev-python/twill-0.9-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://darcs.idyll.org/~t/projects/twill-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0a28366b9265fe2f60ca68f775bbb2e8 diff --git a/metadata/md5-cache/dev-python/twisted-conch-13.0.0-r1 b/metadata/md5-cache/dev-python/twisted-conch-13.0.0-r1 index e87c3f2da698..3526d1360797 100644 --- a/metadata/md5-cache/dev-python/twisted-conch-13.0.0-r1 +++ b/metadata/md5-cache/dev-python/twisted-conch-13.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/twisted-core-13.0*[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedConch/13.0/TwistedConch-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d32746342f963acce6f3827a27d09ee6 diff --git a/metadata/md5-cache/dev-python/twisted-core-13.0.0-r3 b/metadata/md5-cache/dev-python/twisted-core-13.0.0-r3 index b75eb7785366..aaa120e77d86 100644 --- a/metadata/md5-cache/dev-python/twisted-core-13.0.0-r3 +++ b/metadata/md5-cache/dev-python/twisted-core-13.0.0-r3 @@ -10,5 +10,5 @@ RDEPEND=net-zope/zope-interface[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedCore/13.0/TwistedCore-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=54b59068af003fc2e2e20acd2a75d3d0 diff --git a/metadata/md5-cache/dev-python/twisted-lore-13.0.0-r1 b/metadata/md5-cache/dev-python/twisted-lore-13.0.0-r1 index 8631b9e1dab1..f9d41139812c 100644 --- a/metadata/md5-cache/dev-python/twisted-lore-13.0.0-r1 +++ b/metadata/md5-cache/dev-python/twisted-lore-13.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/twisted-core-13.0*[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedLore/13.0/TwistedLore-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5d5b67e25137f95efafe0f11ca12b7f7 diff --git a/metadata/md5-cache/dev-python/twisted-mail-13.0.0-r1 b/metadata/md5-cache/dev-python/twisted-mail-13.0.0-r1 index d8d9d4fae6d6..c2cbcdb0dcd0 100644 --- a/metadata/md5-cache/dev-python/twisted-mail-13.0.0-r1 +++ b/metadata/md5-cache/dev-python/twisted-mail-13.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/twisted-core-13.0*[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedMail/13.0/TwistedMail-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f8b0376c57b0154aa896a49f2be89fa0 diff --git a/metadata/md5-cache/dev-python/twisted-names-13.0.0-r1 b/metadata/md5-cache/dev-python/twisted-names-13.0.0-r1 index cca4f26150ed..e8d3315184da 100644 --- a/metadata/md5-cache/dev-python/twisted-names-13.0.0-r1 +++ b/metadata/md5-cache/dev-python/twisted-names-13.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/twisted-core-13.0*[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedNames/13.0/TwistedNames-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f2b36788c0de73624ce4be113ee8b0f9 diff --git a/metadata/md5-cache/dev-python/twisted-news-13.0.0-r1 b/metadata/md5-cache/dev-python/twisted-news-13.0.0-r1 index 482c05505352..778d7da1e1d3 100644 --- a/metadata/md5-cache/dev-python/twisted-news-13.0.0-r1 +++ b/metadata/md5-cache/dev-python/twisted-news-13.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/twisted-core-13.0*[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedNews/13.0/TwistedNews-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5682272cddab9aeaca94d3b860cf33e2 diff --git a/metadata/md5-cache/dev-python/twisted-pair-13.0.0-r1 b/metadata/md5-cache/dev-python/twisted-pair-13.0.0-r1 index 1cb10063367d..d4a3997e8769 100644 --- a/metadata/md5-cache/dev-python/twisted-pair-13.0.0-r1 +++ b/metadata/md5-cache/dev-python/twisted-pair-13.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/twisted-core-13.0*[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedPair/13.0/TwistedPair-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=ed7356e47d347e99992fc6ad6f254fcc diff --git a/metadata/md5-cache/dev-python/twisted-runner-13.0.0-r1 b/metadata/md5-cache/dev-python/twisted-runner-13.0.0-r1 index 2b1a3fb99cd2..03b61073c5cd 100644 --- a/metadata/md5-cache/dev-python/twisted-runner-13.0.0-r1 +++ b/metadata/md5-cache/dev-python/twisted-runner-13.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/twisted-core-13.0*[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedRunner/13.0/TwistedRunner-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=7fe832b08e66d096d6525d77b8bd1401 diff --git a/metadata/md5-cache/dev-python/twisted-web-13.0.0-r1 b/metadata/md5-cache/dev-python/twisted-web-13.0.0-r1 index addc97998a1e..17863ba765d4 100644 --- a/metadata/md5-cache/dev-python/twisted-web-13.0.0-r1 +++ b/metadata/md5-cache/dev-python/twisted-web-13.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/twisted-core-13.0*[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedWeb/13.0/TwistedWeb-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=644b93af93e73d879e9c19c8615a9178 diff --git a/metadata/md5-cache/dev-python/twisted-words-13.0.0-r1 b/metadata/md5-cache/dev-python/twisted-words-13.0.0-r1 index 3dfb8115eb73..96a49b0d44bc 100644 --- a/metadata/md5-cache/dev-python/twisted-words-13.0.0-r1 +++ b/metadata/md5-cache/dev-python/twisted-words-13.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/twisted-core-13.0*[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://twistedmatrix.com/Releases/TwistedWords/13.0/TwistedWords-13.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=ad26726b43873b2633868e693722c977 diff --git a/metadata/md5-cache/dev-python/twitter-1.10.0 b/metadata/md5-cache/dev-python/twitter-1.10.0 index 97340fe7f077..92821d1f1ad8 100644 --- a/metadata/md5-cache/dev-python/twitter-1.10.0 +++ b/metadata/md5-cache/dev-python/twitter-1.10.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/t/twitter/twitter-1.10.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5272120e69d5b7316416f280ee56eb06 diff --git a/metadata/md5-cache/dev-python/twitter-1.9.2-r1 b/metadata/md5-cache/dev-python/twitter-1.9.2-r1 index 231969b8237b..0ff9ac045bfa 100644 --- a/metadata/md5-cache/dev-python/twitter-1.9.2-r1 +++ b/metadata/md5-cache/dev-python/twitter-1.9.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/t/twitter/twitter-1.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b8d388fad22c06f1b2865acee81b7ba0 diff --git a/metadata/md5-cache/dev-python/twitter-1.9.4 b/metadata/md5-cache/dev-python/twitter-1.9.4 index 4c6b7f958c10..5096ed3f9b91 100644 --- a/metadata/md5-cache/dev-python/twitter-1.9.4 +++ b/metadata/md5-cache/dev-python/twitter-1.9.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/t/twitter/twitter-1.9.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=14fb3f3b5b99aea6a5d9e7d2e2717d90 diff --git a/metadata/md5-cache/dev-python/twython-3.0.0 b/metadata/md5-cache/dev-python/twython-3.0.0 index 94c5b0835ce0..c26894f1ce09 100644 --- a/metadata/md5-cache/dev-python/twython-3.0.0 +++ b/metadata/md5-cache/dev-python/twython-3.0.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-1.2.3[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/t/twython/twython-3.0.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ff359b63424ea292106fc07b72bd62f0 diff --git a/metadata/md5-cache/dev-python/txAMQP-0.6.2 b/metadata/md5-cache/dev-python/txAMQP-0.6.2 index 55f12d541b2c..40e11c1ca25d 100644 --- a/metadata/md5-cache/dev-python/txAMQP-0.6.2 +++ b/metadata/md5-cache/dev-python/txAMQP-0.6.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/twisted-core python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/t/txAMQP/txAMQP-0.6.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e98a9c982581336fd65db6ef8215773a diff --git a/metadata/md5-cache/dev-python/ujson-1.30-r1 b/metadata/md5-cache/dev-python/ujson-1.30-r1 index bd117a4c110f..b57a0dfd1a43 100644 --- a/metadata/md5-cache/dev-python/ujson-1.30-r1 +++ b/metadata/md5-cache/dev-python/ujson-1.30-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/u/ujson/ujson-1.30.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f6af189b864d70749bb8bfaa928d99bc diff --git a/metadata/md5-cache/dev-python/ujson-1.33 b/metadata/md5-cache/dev-python/ujson-1.33 index 44b9f340d9a5..346607fb0105 100644 --- a/metadata/md5-cache/dev-python/ujson-1.33 +++ b/metadata/md5-cache/dev-python/ujson-1.33 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/u/ujson/ujson-1.33.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bb1ed3079f6ec301467970f866cb55fa diff --git a/metadata/md5-cache/dev-python/unidecode-0.04.9-r1 b/metadata/md5-cache/dev-python/unidecode-0.04.9-r1 index bfbe44be8b70..c7b53fde5cd0 100644 --- a/metadata/md5-cache/dev-python/unidecode-0.04.9-r1 +++ b/metadata/md5-cache/dev-python/unidecode-0.04.9-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/U/Unidecode/Unidecode-0.04.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=366a98670d5664bb77d6160a12e9ebd7 diff --git a/metadata/md5-cache/dev-python/unittest2-0.5.1-r1 b/metadata/md5-cache/dev-python/unittest2-0.5.1-r1 index cfd9116fe43f..c0dd8c21e830 100644 --- a/metadata/md5-cache/dev-python/unittest2-0.5.1-r1 +++ b/metadata/md5-cache/dev-python/unittest2-0.5.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/u/unittest2/unittest2-0.5.1.tar.gz mirror://pypi/u/unittest2/unittest2py3k-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5f69500336258fdfcd0cac838e1cd80f diff --git a/metadata/md5-cache/dev-python/unittest2-0.5.1-r2 b/metadata/md5-cache/dev-python/unittest2-0.5.1-r2 index 175ddd25f84f..339b2b5cfe6e 100644 --- a/metadata/md5-cache/dev-python/unittest2-0.5.1-r2 +++ b/metadata/md5-cache/dev-python/unittest2-0.5.1-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/u/unittest2/unittest2-0.5.1.tar.gz mirror://pypi/u/unittest2/unittest2py3k-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8a28655a04cea56949d58d848230f863 diff --git a/metadata/md5-cache/dev-python/urlgrabber-3.9.1-r2 b/metadata/md5-cache/dev-python/urlgrabber-3.9.1-r2 index 1153e4ebd09d..ac3b4ecf4548 100644 --- a/metadata/md5-cache/dev-python/urlgrabber-3.9.1-r2 +++ b/metadata/md5-cache/dev-python/urlgrabber-3.9.1-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pycurl[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://urlgrabber.baseurl.org/download/urlgrabber-3.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ee328342126b7dd8ba6b59d4aac8eaa6 diff --git a/metadata/md5-cache/dev-python/urllib3-1.5-r1 b/metadata/md5-cache/dev-python/urllib3-1.5-r1 index bf83f37f596a..f6fe60d0b3d6 100644 --- a/metadata/md5-cache/dev-python/urllib3-1.5-r1 +++ b/metadata/md5-cache/dev-python/urllib3-1.5-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/u/urllib3/urllib3-1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6f78e5de6015bcd32a5a8a64c22e1b54 diff --git a/metadata/md5-cache/dev-python/urllib3-1.6 b/metadata/md5-cache/dev-python/urllib3-1.6 index dd1601cd24df..56a13f722bb3 100644 --- a/metadata/md5-cache/dev-python/urllib3-1.6 +++ b/metadata/md5-cache/dev-python/urllib3-1.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/u/urllib3/urllib3-1.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b4a321f520969a8788e168d7fdff91b6 diff --git a/metadata/md5-cache/dev-python/urllib3-1.7 b/metadata/md5-cache/dev-python/urllib3-1.7 index edb46c0a03c9..660bc11183fb 100644 --- a/metadata/md5-cache/dev-python/urllib3-1.7 +++ b/metadata/md5-cache/dev-python/urllib3-1.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/u/urllib3/urllib3-1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e434a4dbcbe4a71eb7732aadc162cd98 diff --git a/metadata/md5-cache/dev-python/urllib3-1.7.1 b/metadata/md5-cache/dev-python/urllib3-1.7.1 index 1a9b74ef8eed..ca77343b1ede 100644 --- a/metadata/md5-cache/dev-python/urllib3-1.7.1 +++ b/metadata/md5-cache/dev-python/urllib3-1.7.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/u/urllib3/urllib3-1.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b75154e7f3f13e453c5d32b94c43eb76 diff --git a/metadata/md5-cache/dev-python/urwid-1.1.1-r1 b/metadata/md5-cache/dev-python/urwid-1.1.1-r1 index d805c217f175..37ed07697da2 100644 --- a/metadata/md5-cache/dev-python/urwid-1.1.1-r1 +++ b/metadata/md5-cache/dev-python/urwid-1.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[ncurses] ) py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=http://excess.org/urwid/urwid-1.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=18d1c73848984d432c691cd83120f63e diff --git a/metadata/md5-cache/dev-python/utidylib-0.2-r2 b/metadata/md5-cache/dev-python/utidylib-0.2-r2 index 57b2a66c7141..5ab1afb2a604 100644 --- a/metadata/md5-cache/dev-python/utidylib-0.2-r2 +++ b/metadata/md5-cache/dev-python/utidylib-0.2-r2 @@ -10,5 +10,5 @@ RDEPEND=app-text/htmltidy python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://berlios/utidylib/uTidylib-0.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=21beddff513f9e08445f10e531f0c4ab diff --git a/metadata/md5-cache/dev-python/vatnumber-1.0-r1 b/metadata/md5-cache/dev-python/vatnumber-1.0-r1 index 158f2f8d0e50..7f7e367097fc 100644 --- a/metadata/md5-cache/dev-python/vatnumber-1.0-r1 +++ b/metadata/md5-cache/dev-python/vatnumber-1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=vies? ( dev-python/suds ) python_targets_python2_6? ( >=dev-lang/python- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://vatnumber.googlecode.com/files/vatnumber-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=65069364c2e1ff25b4cd6d226fc71e6a diff --git a/metadata/md5-cache/dev-python/vatnumber-1.1 b/metadata/md5-cache/dev-python/vatnumber-1.1 index e56b6a0c0ff7..f55046dde565 100644 --- a/metadata/md5-cache/dev-python/vatnumber-1.1 +++ b/metadata/md5-cache/dev-python/vatnumber-1.1 @@ -10,5 +10,5 @@ RDEPEND=vies? ( dev-python/suds ) python_targets_python2_6? ( >=dev-lang/python- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://vatnumber.googlecode.com/files/vatnumber-1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e0b2de49aa4ad5cd2c9ae31245929492 diff --git a/metadata/md5-cache/dev-python/versiontools-1.9.1-r1 b/metadata/md5-cache/dev-python/versiontools-1.9.1-r1 index 4cfa1af3c820..fd6dd7eeaa83 100644 --- a/metadata/md5-cache/dev-python/versiontools-1.9.1-r1 +++ b/metadata/md5-cache/dev-python/versiontools-1.9.1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/v/versiontools/versiontools-1.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2a8246de062ca6e0b86465ed285a2b14 diff --git a/metadata/md5-cache/dev-python/vertex-0.3.0-r1 b/metadata/md5-cache/dev-python/vertex-0.3.0-r1 index c0f5a575f2db..82af18257016 100644 --- a/metadata/md5-cache/dev-python/vertex-0.3.0-r1 +++ b/metadata/md5-cache/dev-python/vertex-0.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/openssl >=dev-python/epsilon-0.6.0-r1[python_targets_python2_6( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/V/Vertex/Vertex-0.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 twisted-r1 bde9a73867c7a158256f71398888feee user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=142d6da45de5cf6ba778a4f8ce1824e4 diff --git a/metadata/md5-cache/dev-python/virtualenv-1.10-r1 b/metadata/md5-cache/dev-python/virtualenv-1.10-r1 index a90f66f49a57..5eca3abbccda 100644 --- a/metadata/md5-cache/dev-python/virtualenv-1.10-r1 +++ b/metadata/md5-cache/dev-python/virtualenv-1.10-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/pypa/virtualenv/tarball/1.10 -> virtualenv-1.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=7c1a0ebce3dfa006ef7664bec85e3aa5 diff --git a/metadata/md5-cache/dev-python/virtualenv-1.10.1 b/metadata/md5-cache/dev-python/virtualenv-1.10.1 index f5a1e935157f..32a3a0b3c2e6 100644 --- a/metadata/md5-cache/dev-python/virtualenv-1.10.1 +++ b/metadata/md5-cache/dev-python/virtualenv-1.10.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/pypa/virtualenv/archive/1.10.1.tar.gz -> virtualenv-1.10.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5e3bbfb5292270e81c7e648103a38ddf diff --git a/metadata/md5-cache/dev-python/virtualenv-1.9.1-r1 b/metadata/md5-cache/dev-python/virtualenv-1.9.1-r1 index 79abbdcb3df3..1247a7c069f1 100644 --- a/metadata/md5-cache/dev-python/virtualenv-1.9.1-r1 +++ b/metadata/md5-cache/dev-python/virtualenv-1.9.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=https://github.com/pypa/virtualenv/tarball/1.9.1 -> virtualenv-1.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=f639fe165b05ce972aa44269c9ae0aa0 diff --git a/metadata/md5-cache/dev-python/virtualenv-clone-0.2.4-r1 b/metadata/md5-cache/dev-python/virtualenv-clone-0.2.4-r1 index 4fd464fb81a9..f52769c3c8d8 100644 --- a/metadata/md5-cache/dev-python/virtualenv-clone-0.2.4-r1 +++ b/metadata/md5-cache/dev-python/virtualenv-clone-0.2.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/v/virtualenv-clone/virtualenv-clone-0.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6772a4f5444d84c96a367d14adb536aa diff --git a/metadata/md5-cache/dev-python/vo-0.8-r1 b/metadata/md5-cache/dev-python/vo-0.8-r1 index 07d80417cf8a..96ba48669e27 100644 --- a/metadata/md5-cache/dev-python/vo-0.8-r1 +++ b/metadata/md5-cache/dev-python/vo-0.8-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://stsdas.stsci.edu/astrolib/vo-0.8.tar.gz test? ( http://svn6.assembla.com/svn/astrolib/trunk/vo/test/wfpc2_all.xml.gz ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=11daf6eb52ddbc593286041efcb90740 diff --git a/metadata/md5-cache/dev-python/vobject-0.8.1c-r1 b/metadata/md5-cache/dev-python/vobject-0.8.1c-r1 index 678ed94011f4..9f36981ddb6e 100644 --- a/metadata/md5-cache/dev-python/vobject-0.8.1c-r1 +++ b/metadata/md5-cache/dev-python/vobject-0.8.1c-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/python-dateutil[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://vobject.skyhouseconsulting.com/vobject-0.8.1c.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=575d36a0e758110b52575732f23c1077 diff --git a/metadata/md5-cache/dev-python/w3lib-1.2-r1 b/metadata/md5-cache/dev-python/w3lib-1.2-r1 index 8e8222d0256a..875fd7af6df3 100644 --- a/metadata/md5-cache/dev-python/w3lib-1.2-r1 +++ b/metadata/md5-cache/dev-python/w3lib-1.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/w/w3lib/w3lib-1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8e3d6676dd990cc90082ae707e0b0ecf diff --git a/metadata/md5-cache/dev-python/w3lib-1.3 b/metadata/md5-cache/dev-python/w3lib-1.3 index bac9b2dda945..98d6dcf711ba 100644 --- a/metadata/md5-cache/dev-python/w3lib-1.3 +++ b/metadata/md5-cache/dev-python/w3lib-1.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/w/w3lib/w3lib-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b3d8db6d7f2599f80efcd2c29fac592e diff --git a/metadata/md5-cache/dev-python/waitress-0.8.2 b/metadata/md5-cache/dev-python/waitress-0.8.2 index f2caed22dabc..b0547bb08d67 100644 --- a/metadata/md5-cache/dev-python/waitress-0.8.2 +++ b/metadata/md5-cache/dev-python/waitress-0.8.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/w/waitress/waitress-0.8.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e90f4d6980e20039430c893929ddba55 diff --git a/metadata/md5-cache/dev-python/waitress-0.8.3 b/metadata/md5-cache/dev-python/waitress-0.8.3 index f33bc245875b..4a45d0528a28 100644 --- a/metadata/md5-cache/dev-python/waitress-0.8.3 +++ b/metadata/md5-cache/dev-python/waitress-0.8.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/w/waitress/waitress-0.8.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f541288d68b89626d30fa1e5ef156740 diff --git a/metadata/md5-cache/dev-python/waitress-0.8.5 b/metadata/md5-cache/dev-python/waitress-0.8.5 index 8893290d4b80..505af36aaa7e 100644 --- a/metadata/md5-cache/dev-python/waitress-0.8.5 +++ b/metadata/md5-cache/dev-python/waitress-0.8.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/w/waitress/waitress-0.8.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=82bfcac99046000737b2084d088f172f diff --git a/metadata/md5-cache/dev-python/waitress-0.8.6 b/metadata/md5-cache/dev-python/waitress-0.8.6 index fb85fd635e9b..2f79625703c9 100644 --- a/metadata/md5-cache/dev-python/waitress-0.8.6 +++ b/metadata/md5-cache/dev-python/waitress-0.8.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/w/waitress/waitress-0.8.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=27299ce5c52dc4efb1dc593568633a7a diff --git a/metadata/md5-cache/dev-python/waitress-0.8.7 b/metadata/md5-cache/dev-python/waitress-0.8.7 index 79fb88ea71e3..b02893c994ef 100644 --- a/metadata/md5-cache/dev-python/waitress-0.8.7 +++ b/metadata/md5-cache/dev-python/waitress-0.8.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/w/waitress/waitress-0.8.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6d56760dd340cf84b3b485992820a0b8 diff --git a/metadata/md5-cache/dev-python/warlock-0.7.0 b/metadata/md5-cache/dev-python/warlock-0.7.0 index 77a6973fe8a0..ad6b8f6f6fef 100644 --- a/metadata/md5-cache/dev-python/warlock-0.7.0 +++ b/metadata/md5-cache/dev-python/warlock-0.7.0 @@ -10,5 +10,5 @@ RDEPEND==dev-python/jsonpatch-0.10[python_targets_python2_7(-)?,-python_single_t REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/w/warlock/warlock-0.7.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0fcfd35d0175df817436bfc683808a9d diff --git a/metadata/md5-cache/dev-python/weasyprint-0.19.2 b/metadata/md5-cache/dev-python/weasyprint-0.19.2 index bf36049a73df..8cd3fe7489a2 100644 --- a/metadata/md5-cache/dev-python/weasyprint-0.19.2 +++ b/metadata/md5-cache/dev-python/weasyprint-0.19.2 @@ -10,5 +10,5 @@ RDEPEND=x11-libs/cairo x11-libs/pango media-gfx/cairosvg dev-python/cffi[python_ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/W/WeasyPrint/WeasyPrint-0.19.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f56e255047f5d1038221524783437c82 diff --git a/metadata/md5-cache/dev-python/webhelpers-1.3-r1 b/metadata/md5-cache/dev-python/webhelpers-1.3-r1 index b779e198b27f..cf8d449cf740 100644 --- a/metadata/md5-cache/dev-python/webhelpers-1.3-r1 +++ b/metadata/md5-cache/dev-python/webhelpers-1.3-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/markupsafe-0.9.2[python_targets_python2_6(-)?,python_target REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/WebHelpers/WebHelpers-1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6ad8158b51579f9e2fceccf3f463a69b diff --git a/metadata/md5-cache/dev-python/webob-1.0.8-r1 b/metadata/md5-cache/dev-python/webob-1.0.8-r1 index 8a99af8330cf..5345a7e0512c 100644 --- a/metadata/md5-cache/dev-python/webob-1.0.8-r1 +++ b/metadata/md5-cache/dev-python/webob-1.0.8-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebOb/WebOb-1.0.8.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1985f6107b00138e4fc6ec043cbdfb21 diff --git a/metadata/md5-cache/dev-python/webob-1.2.3-r1 b/metadata/md5-cache/dev-python/webob-1.2.3-r1 index 71e339409092..96f7d4937a5f 100644 --- a/metadata/md5-cache/dev-python/webob-1.2.3-r1 +++ b/metadata/md5-cache/dev-python/webob-1.2.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/WebOb/WebOb-1.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=571ef12c9f3f2ed74b0c099ffddf3bb3 diff --git a/metadata/md5-cache/dev-python/webpy-0.37-r1 b/metadata/md5-cache/dev-python/webpy-0.37-r1 index c7530cccde60..5dfe2e02a87a 100644 --- a/metadata/md5-cache/dev-python/webpy-0.37-r1 +++ b/metadata/md5-cache/dev-python/webpy-0.37-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.webpy.org/static/web.py-0.37.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=149161c1e82d01fe852d1012880facf0 diff --git a/metadata/md5-cache/dev-python/websockify-0.3.0 b/metadata/md5-cache/dev-python/websockify-0.3.0 index 508048ba5fbf..fdf8d0447110 100644 --- a/metadata/md5-cache/dev-python/websockify-0.3.0 +++ b/metadata/md5-cache/dev-python/websockify-0.3.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/kanaka/websockify/archive/v0.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=606663b620fb4a0ea4a4ec1fe4f8abaa diff --git a/metadata/md5-cache/dev-python/websockify-0.4.1 b/metadata/md5-cache/dev-python/websockify-0.4.1 index ce2eea50dd36..b453437a1ea2 100644 --- a/metadata/md5-cache/dev-python/websockify-0.4.1 +++ b/metadata/md5-cache/dev-python/websockify-0.4.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/kanaka/websockify/archive/v0.4.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=db728b04a508f05af78521896d8cce6a diff --git a/metadata/md5-cache/dev-python/websockify-0.5.1 b/metadata/md5-cache/dev-python/websockify-0.5.1 index df98c83a000c..df2cded3e3fa 100644 --- a/metadata/md5-cache/dev-python/websockify-0.5.1 +++ b/metadata/md5-cache/dev-python/websockify-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/kanaka/websockify/archive/v0.5.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c6c31e4e90fb5e12bbdc767175b5e774 diff --git a/metadata/md5-cache/dev-python/webtest-1.3.3-r1 b/metadata/md5-cache/dev-python/webtest-1.3.3-r1 index d93547a3c4a6..3ef35b0a5200 100644 --- a/metadata/md5-cache/dev-python/webtest-1.3.3-r1 +++ b/metadata/md5-cache/dev-python/webtest-1.3.3-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-1.3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d5f8186c9b89f09634d308dc8f2c5f31 diff --git a/metadata/md5-cache/dev-python/webtest-1.4.3-r1 b/metadata/md5-cache/dev-python/webtest-1.4.3-r1 index 563123ca13d8..4b8fc03140b7 100644 --- a/metadata/md5-cache/dev-python/webtest-1.4.3-r1 +++ b/metadata/md5-cache/dev-python/webtest-1.4.3-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/webob-0.9.2[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-1.4.3.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2046cfbe0deb9238de5f3afab70fe8cf diff --git a/metadata/md5-cache/dev-python/webtest-2.0.1 b/metadata/md5-cache/dev-python/webtest-2.0.1 index 7c220ac66320..cea601f0d333 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.1 +++ b/metadata/md5-cache/dev-python/webtest-2.0.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/webob-0.9.2[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.1.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=002d25d83afa304ae497c4eb9ab3497c diff --git a/metadata/md5-cache/dev-python/webtest-2.0.2 b/metadata/md5-cache/dev-python/webtest-2.0.2 index 4e122d869b91..6aa6a4b0655e 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.2 +++ b/metadata/md5-cache/dev-python/webtest-2.0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8dde6531e4faac8dc5c18f0a5c8d4b40 diff --git a/metadata/md5-cache/dev-python/webtest-2.0.3 b/metadata/md5-cache/dev-python/webtest-2.0.3 index 145f088d6517..cd472e1a820a 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.3 +++ b/metadata/md5-cache/dev-python/webtest-2.0.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.3.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8ad194484240db46a5b013cd54f856e0 diff --git a/metadata/md5-cache/dev-python/webtest-2.0.4 b/metadata/md5-cache/dev-python/webtest-2.0.4 index b28856fe0792..8eee87f2633f 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.4 +++ b/metadata/md5-cache/dev-python/webtest-2.0.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.4.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e3ce5f390a6a772fa2b756d2b369a3da diff --git a/metadata/md5-cache/dev-python/webtest-2.0.5 b/metadata/md5-cache/dev-python/webtest-2.0.5 index 48a78ff0f343..b5b7b0d10c2c 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.5 +++ b/metadata/md5-cache/dev-python/webtest-2.0.5 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.5.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=56b8b3af24933f44338c8e5add2e36d4 diff --git a/metadata/md5-cache/dev-python/webtest-2.0.6 b/metadata/md5-cache/dev-python/webtest-2.0.6 index 0a0260070b36..ae4469140643 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.6 +++ b/metadata/md5-cache/dev-python/webtest-2.0.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.6.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc04897c4c7b403a206fb7d6b9c5231a diff --git a/metadata/md5-cache/dev-python/webtest-2.0.7-r1 b/metadata/md5-cache/dev-python/webtest-2.0.7-r1 index d40e1cc3308d..ec27bed64611 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.7-r1 +++ b/metadata/md5-cache/dev-python/webtest-2.0.7-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.7.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b5f70805ee80939b1154fd48c0dfac34 diff --git a/metadata/md5-cache/dev-python/webtest-2.0.9 b/metadata/md5-cache/dev-python/webtest-2.0.9 index e09696388b9e..03438a7aef8c 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.9 +++ b/metadata/md5-cache/dev-python/webtest-2.0.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.9.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=554b67f05a84e45980e0a9f46c2e0782 diff --git a/metadata/md5-cache/dev-python/wehjit-0.2.2-r1 b/metadata/md5-cache/dev-python/wehjit-0.2.2-r1 index 188e7813fea9..bef243ea27c5 100644 --- a/metadata/md5-cache/dev-python/wehjit-0.2.2-r1 +++ b/metadata/md5-cache/dev-python/wehjit-0.2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/genshi dev-python/assets[python_targets_python2_6(-)?,python_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://jderose.fedorapeople.org/wehjit/0.2.2/wehjit-0.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bf29f8e9b040c3c5bb7ab5c49252e53d diff --git a/metadata/md5-cache/dev-python/werkzeug-0.9.1 b/metadata/md5-cache/dev-python/werkzeug-0.9.1 index fb01822b900e..5752a6a6dbc1 100644 --- a/metadata/md5-cache/dev-python/werkzeug-0.9.1 +++ b/metadata/md5-cache/dev-python/werkzeug-0.9.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/Werkzeug/Werkzeug-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=71f9c67278fac2965e08bdef8da791e0 diff --git a/metadata/md5-cache/dev-python/werkzeug-0.9.2 b/metadata/md5-cache/dev-python/werkzeug-0.9.2 index 38d2f9f8bffa..accd3f14ac9a 100644 --- a/metadata/md5-cache/dev-python/werkzeug-0.9.2 +++ b/metadata/md5-cache/dev-python/werkzeug-0.9.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/Werkzeug/Werkzeug-0.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d4b39164e33d73ed29191d80df187c88 diff --git a/metadata/md5-cache/dev-python/werkzeug-0.9.3 b/metadata/md5-cache/dev-python/werkzeug-0.9.3 index 3843971e129e..57f6bec5dcc8 100644 --- a/metadata/md5-cache/dev-python/werkzeug-0.9.3 +++ b/metadata/md5-cache/dev-python/werkzeug-0.9.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/Werkzeug/Werkzeug-0.9.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b3fe92bbd625b7025bdfd46434e4f81d diff --git a/metadata/md5-cache/dev-python/werkzeug-0.9.4 b/metadata/md5-cache/dev-python/werkzeug-0.9.4 index 71ee2792f24c..0f35a5f9a639 100644 --- a/metadata/md5-cache/dev-python/werkzeug-0.9.4 +++ b/metadata/md5-cache/dev-python/werkzeug-0.9.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/Werkzeug/Werkzeug-0.9.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=359225b6f1a7d8071b5511d3ca7a917d diff --git a/metadata/md5-cache/dev-python/whirlpool-0.3-r1 b/metadata/md5-cache/dev-python/whirlpool-0.3-r1 index e5c2233e4dd1..1f4e744a291b 100644 --- a/metadata/md5-cache/dev-python/whirlpool-0.3-r1 +++ b/metadata/md5-cache/dev-python/whirlpool-0.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/W/Whirlpool/Whirlpool-0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=beb5bdb232484bac922e03f578ec24f7 diff --git a/metadata/md5-cache/dev-python/whisper-0.9.10-r1 b/metadata/md5-cache/dev-python/whisper-0.9.10-r1 index 46d675ff20d3..005e49a04393 100644 --- a/metadata/md5-cache/dev-python/whisper-0.9.10-r1 +++ b/metadata/md5-cache/dev-python/whisper-0.9.10-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/w/whisper/whisper-0.9.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ff95861c152be9858b36cbeb4bf620e7 diff --git a/metadata/md5-cache/dev-python/whisper-0.9.12 b/metadata/md5-cache/dev-python/whisper-0.9.12 index 113c92200022..c114813dfc51 100644 --- a/metadata/md5-cache/dev-python/whisper-0.9.12 +++ b/metadata/md5-cache/dev-python/whisper-0.9.12 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/w/whisper/whisper-0.9.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=32dca0df81023011d103ef60e6cb02c6 diff --git a/metadata/md5-cache/dev-python/whoosh-2.5.3 b/metadata/md5-cache/dev-python/whoosh-2.5.3 index 54d5615cb350..1328d5be2c38 100644 --- a/metadata/md5-cache/dev-python/whoosh-2.5.3 +++ b/metadata/md5-cache/dev-python/whoosh-2.5.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/Whoosh/Whoosh-2.5.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=af09446038741f0ab0c3772acbcf588c diff --git a/metadata/md5-cache/dev-python/whoosh-2.5.4 b/metadata/md5-cache/dev-python/whoosh-2.5.4 index f38b5f606a4a..ad200a090c64 100644 --- a/metadata/md5-cache/dev-python/whoosh-2.5.4 +++ b/metadata/md5-cache/dev-python/whoosh-2.5.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/Whoosh/Whoosh-2.5.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5c2303c1777563ca9810b437772ba6ae diff --git a/metadata/md5-cache/dev-python/workerpool-0.9.2-r1 b/metadata/md5-cache/dev-python/workerpool-0.9.2-r1 index 3723816ea717..549d7cf73711 100644 --- a/metadata/md5-cache/dev-python/workerpool-0.9.2-r1 +++ b/metadata/md5-cache/dev-python/workerpool-0.9.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/w/workerpool/workerpool-0.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e7dba85dde77bdfe446bc676b7de1fc3 diff --git a/metadata/md5-cache/dev-python/ws4py-0.2.4-r1 b/metadata/md5-cache/dev-python/ws4py-0.2.4-r1 index d85090187547..c261905d8508 100644 --- a/metadata/md5-cache/dev-python/ws4py-0.2.4-r1 +++ b/metadata/md5-cache/dev-python/ws4py-0.2.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[threads?] ) p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/Lawouach/WebSocket-for-Python/tarball/v0.2.4 -> ws4py-0.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=08563a1b9160376c822714aa0730ecd2 diff --git a/metadata/md5-cache/dev-python/wsgiintercept-0.5.1 b/metadata/md5-cache/dev-python/wsgiintercept-0.5.1 index 55d82898fbc8..e606da5ae16f 100644 --- a/metadata/md5-cache/dev-python/wsgiintercept-0.5.1 +++ b/metadata/md5-cache/dev-python/wsgiintercept-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/w/wsgi_intercept/wsgi_intercept-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=80a8fde38531c25f2ecfe5be3967efd8 diff --git a/metadata/md5-cache/dev-python/wsgilog-0.3-r1 b/metadata/md5-cache/dev-python/wsgilog-0.3-r1 index f9ed5565f2aa..96a3add220da 100644 --- a/metadata/md5-cache/dev-python/wsgilog-0.3-r1 +++ b/metadata/md5-cache/dev-python/wsgilog-0.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/w/wsgilog/wsgilog-0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1a6875f7b76460eec6a0a2b2a6ba454c diff --git a/metadata/md5-cache/dev-python/wsgiproxy2-0.1 b/metadata/md5-cache/dev-python/wsgiproxy2-0.1 index 8fabd2923229..7f0719ffb74c 100644 --- a/metadata/md5-cache/dev-python/wsgiproxy2-0.1 +++ b/metadata/md5-cache/dev-python/wsgiproxy2-0.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WSGIProxy2/WSGIProxy2-0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2058ae3162e81e40979ccb9d9c1a0ce5 diff --git a/metadata/md5-cache/dev-python/wsgiproxy2-0.2 b/metadata/md5-cache/dev-python/wsgiproxy2-0.2 index 40e66da18e58..ef7c607de4d1 100644 --- a/metadata/md5-cache/dev-python/wsgiproxy2-0.2 +++ b/metadata/md5-cache/dev-python/wsgiproxy2-0.2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WSGIProxy2/WSGIProxy2-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e79bf7deb9c1568d59ba8e7abd9ca1a8 diff --git a/metadata/md5-cache/dev-python/wsgiproxy2-0.3 b/metadata/md5-cache/dev-python/wsgiproxy2-0.3 index 3dcab032b012..2df44a56ead2 100644 --- a/metadata/md5-cache/dev-python/wsgiproxy2-0.3 +++ b/metadata/md5-cache/dev-python/wsgiproxy2-0.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WSGIProxy2/WSGIProxy2-0.3.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2c260dafbb4925e25832af60f00bc3d3 diff --git a/metadata/md5-cache/dev-python/wstools-0.4-r1 b/metadata/md5-cache/dev-python/wstools-0.4-r1 index 73082e37f241..1428196cfa28 100644 --- a/metadata/md5-cache/dev-python/wstools-0.4-r1 +++ b/metadata/md5-cache/dev-python/wstools-0.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml(+)] ) pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/w/wstools/wstools-0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6001455cd27b3e217d997f9587702bd1 diff --git a/metadata/md5-cache/dev-python/wstools-0.4.3 b/metadata/md5-cache/dev-python/wstools-0.4.3 index ece52d4d9f69..ba8dc8c438ca 100644 --- a/metadata/md5-cache/dev-python/wstools-0.4.3 +++ b/metadata/md5-cache/dev-python/wstools-0.4.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml(+)] ) pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/w/wstools/wstools-0.4.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=910b35a56ce5f6b2e74ec826a677367b diff --git a/metadata/md5-cache/dev-python/wtf-peewee-0.1.3 b/metadata/md5-cache/dev-python/wtf-peewee-0.1.3 index dcc6a0e5e0e4..7f03ec384073 100644 --- a/metadata/md5-cache/dev-python/wtf-peewee-0.1.3 +++ b/metadata/md5-cache/dev-python/wtf-peewee-0.1.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/coleifer/wtf-peewee/archive/0.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6b2d080bc55171a4b62d0899dd4ba9df diff --git a/metadata/md5-cache/dev-python/wtf-peewee-0.1.4 b/metadata/md5-cache/dev-python/wtf-peewee-0.1.4 index 014345e3f76a..0f63fffb7f64 100644 --- a/metadata/md5-cache/dev-python/wtf-peewee-0.1.4 +++ b/metadata/md5-cache/dev-python/wtf-peewee-0.1.4 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/coleifer/wtf-peewee/archive/0.1.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=18d6224906b0a95bf1acf072a81ef7a4 diff --git a/metadata/md5-cache/dev-python/wtforms-1.0.3-r1 b/metadata/md5-cache/dev-python/wtforms-1.0.3-r1 index e40ef7a25f84..1be00f309719 100644 --- a/metadata/md5-cache/dev-python/wtforms-1.0.3-r1 +++ b/metadata/md5-cache/dev-python/wtforms-1.0.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/WTForms/WTForms-1.0.3.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fdd078fb1d6192609f731732fcb84862 diff --git a/metadata/md5-cache/dev-python/wtforms-1.0.4 b/metadata/md5-cache/dev-python/wtforms-1.0.4 index 89270f10f663..9ae9532acadc 100644 --- a/metadata/md5-cache/dev-python/wtforms-1.0.4 +++ b/metadata/md5-cache/dev-python/wtforms-1.0.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/WTForms/WTForms-1.0.4.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a83d8a10db4255d3061f343ae0b4f371 diff --git a/metadata/md5-cache/dev-python/wtforms-1.0.5 b/metadata/md5-cache/dev-python/wtforms-1.0.5 index ee29a798ce38..724534535a50 100644 --- a/metadata/md5-cache/dev-python/wtforms-1.0.5 +++ b/metadata/md5-cache/dev-python/wtforms-1.0.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/W/WTForms/WTForms-1.0.5.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c3fa32f9de7c8b716489b4a077819bea diff --git a/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r1 b/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r1 index 84420121d4fb..9ca71621754e 100644 --- a/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r1 +++ b/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=x11-libs/wxGTK-2.8.12.1:2.8[opengl?,tiff,X] dev-libs/glib:2 dev-python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=2.8 SRC_URI=mirror://sourceforge/wxpython/wxPython-src-2.8.12.1.tar.bz2 doc? ( mirror://sourceforge/wxpython/wxPython-docs-2.8.12.1.tar.bz2 mirror://sourceforge/wxpython/wxPython-newdocs-2.8.9.2.tar.bz2 ) examples? ( mirror://sourceforge/wxpython/wxPython-demo-2.8.12.1.tar.bz2 ) -_eclasses_=alternatives 326031758c86cd08f5844f475f03ac01 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets 3315ffba81a98dea5d9837edb418a587 +_eclasses_=alternatives 326031758c86cd08f5844f475f03ac01 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets 3315ffba81a98dea5d9837edb418a587 _md5_=d9a21017fb3229eea942868a897d1e80 diff --git a/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r2 b/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r2 new file mode 100644 index 000000000000..0265af5e4d7a --- /dev/null +++ b/metadata/md5-cache/dev-python/wxpython-2.8.12.1-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/wxGTK-2.8.12.1:2.8[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg x11-libs/gtk+:2 x11-libs/pango[X] cairo? ( >=dev-python/pycairo-1.8.4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) opengl? ( dev-python/pyopengl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) virtual/pkgconfig userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +DESCRIPTION=A blending of the wxWindows C++ class library with Python +EAPI=5 +HOMEPAGE=http://www.wxpython.org/ +IUSE=cairo doc examples opengl python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd +LICENSE=wxWinLL-3 +RDEPEND=dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/wxGTK-2.8.12.1:2.8[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg x11-libs/gtk+:2 x11-libs/pango[X] cairo? ( >=dev-python/pycairo-1.8.4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) opengl? ( dev-python/pyopengl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) +SLOT=2.8 +SRC_URI=mirror://sourceforge/wxpython/wxPython-src-2.8.12.1.tar.bz2 doc? ( mirror://sourceforge/wxpython/wxPython-docs-2.8.12.1.tar.bz2 mirror://sourceforge/wxpython/wxPython-newdocs-2.8.9.2.tar.bz2 ) examples? ( mirror://sourceforge/wxpython/wxPython-demo-2.8.12.1.tar.bz2 ) +_eclasses_=alternatives 326031758c86cd08f5844f475f03ac01 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets 3315ffba81a98dea5d9837edb418a587 +_md5_=77eb6fbeb4cb595a07213e614f06a5e9 diff --git a/metadata/md5-cache/dev-python/wxpython-2.9.4.1-r1 b/metadata/md5-cache/dev-python/wxpython-2.9.4.1-r1 index 3771ea0c9bff..952af527d77b 100644 --- a/metadata/md5-cache/dev-python/wxpython-2.9.4.1-r1 +++ b/metadata/md5-cache/dev-python/wxpython-2.9.4.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=x11-libs/wxGTK-2.9.4.1:2.9[opengl?,tiff,X] dev-libs/glib:2 dev-python/ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=2.9 SRC_URI=mirror://sourceforge/wxpython/wxPython-src-2.9.4.0.tar.bz2 examples? ( mirror://sourceforge/wxpython/wxPython-demo-2.9.4.0.tar.bz2 ) mirror://sourceforge/wxpython/wxPython-src-2.9.4.1.patch -_eclasses_=alternatives 326031758c86cd08f5844f475f03ac01 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets 3315ffba81a98dea5d9837edb418a587 +_eclasses_=alternatives 326031758c86cd08f5844f475f03ac01 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets 3315ffba81a98dea5d9837edb418a587 _md5_=e49d8357c67c25025a23614599d5b520 diff --git a/metadata/md5-cache/dev-python/wxpython-2.9.4.1-r2 b/metadata/md5-cache/dev-python/wxpython-2.9.4.1-r2 new file mode 100644 index 000000000000..b78ed3c14710 --- /dev/null +++ b/metadata/md5-cache/dev-python/wxpython-2.9.4.1-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/wxGTK-2.9.4.1:2.9[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg x11-libs/gtk+:2 x11-libs/pango[X] cairo? ( >=dev-python/pycairo-1.8.4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) opengl? ( dev-python/pyopengl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) virtual/pkgconfig userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +DESCRIPTION=A blending of the wxWindows C++ class library with Python +EAPI=5 +HOMEPAGE=http://www.wxpython.org/ +IUSE=cairo examples opengl python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd +LICENSE=wxWinLL-3 +RDEPEND=dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=x11-libs/wxGTK-2.9.4.1:2.9[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg x11-libs/gtk+:2 x11-libs/pango[X] cairo? ( >=dev-python/pycairo-1.8.4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) opengl? ( dev-python/pyopengl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) +SLOT=2.9 +SRC_URI=mirror://sourceforge/wxpython/wxPython-src-2.9.4.0.tar.bz2 examples? ( mirror://sourceforge/wxpython/wxPython-demo-2.9.4.0.tar.bz2 ) mirror://sourceforge/wxpython/wxPython-src-2.9.4.1.patch +_eclasses_=alternatives 326031758c86cd08f5844f475f03ac01 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets 3315ffba81a98dea5d9837edb418a587 +_md5_=eae618591f2528b1a8066e0c716976b9 diff --git a/metadata/md5-cache/dev-python/xhtml2pdf-0.0.5-r1 b/metadata/md5-cache/dev-python/xhtml2pdf-0.0.5-r1 index a23f2775687b..2ee904d7a808 100644 --- a/metadata/md5-cache/dev-python/xhtml2pdf-0.0.5-r1 +++ b/metadata/md5-cache/dev-python/xhtml2pdf-0.0.5-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/html5lib[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/x/xhtml2pdf/xhtml2pdf-0.0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=19a7386bf10d7a6be7008ea2063175e3 diff --git a/metadata/md5-cache/dev-python/xlrd-0.9.0 b/metadata/md5-cache/dev-python/xlrd-0.9.0 index 6754629fcbcc..0a337869ada0 100644 --- a/metadata/md5-cache/dev-python/xlrd-0.9.0 +++ b/metadata/md5-cache/dev-python/xlrd-0.9.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/x/xlrd/xlrd-0.9.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ff64c88615e17791f062cf67de82e638 diff --git a/metadata/md5-cache/dev-python/xlrd-0.9.2 b/metadata/md5-cache/dev-python/xlrd-0.9.2 index 5ebff00a65ef..56382f48b9c9 100644 --- a/metadata/md5-cache/dev-python/xlrd-0.9.2 +++ b/metadata/md5-cache/dev-python/xlrd-0.9.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/x/xlrd/xlrd-0.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=638bc4190b75185d201b76a1ff9bcbdd diff --git a/metadata/md5-cache/dev-python/xlwt-0.7.4-r1 b/metadata/md5-cache/dev-python/xlwt-0.7.4-r1 index 8fd45e4de67d..ad5ea00603e0 100644 --- a/metadata/md5-cache/dev-python/xlwt-0.7.4-r1 +++ b/metadata/md5-cache/dev-python/xlwt-0.7.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/x/xlwt/xlwt-0.7.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=59e22baf9a002e154a688c3b79399d01 diff --git a/metadata/md5-cache/dev-python/xlwt-0.7.5 b/metadata/md5-cache/dev-python/xlwt-0.7.5 index 6e563f36e16b..16ca1d9087a1 100644 --- a/metadata/md5-cache/dev-python/xlwt-0.7.5 +++ b/metadata/md5-cache/dev-python/xlwt-0.7.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/x/xlwt/xlwt-0.7.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=39766e6439a968da67c5e96f811647c1 diff --git a/metadata/md5-cache/dev-python/xmltodict-0.7.0 b/metadata/md5-cache/dev-python/xmltodict-0.7.0 index c8fb9868b2c5..562b7afe03d5 100644 --- a/metadata/md5-cache/dev-python/xmltodict-0.7.0 +++ b/metadata/md5-cache/dev-python/xmltodict-0.7.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/x/xmltodict/xmltodict-0.7.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e6b5e3945392005c0991016b083eee09 diff --git a/metadata/md5-cache/dev-python/xmltodict-0.8.1 b/metadata/md5-cache/dev-python/xmltodict-0.8.1 index c424618f640e..69ef08c5051e 100644 --- a/metadata/md5-cache/dev-python/xmltodict-0.8.1 +++ b/metadata/md5-cache/dev-python/xmltodict-0.8.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/x/xmltodict/xmltodict-0.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4d530928330e521c05ce6bd05fa53010 diff --git a/metadata/md5-cache/dev-python/xvfbwrapper-0.2.2 b/metadata/md5-cache/dev-python/xvfbwrapper-0.2.2 index 92de092cd53b..c00307c0154e 100644 --- a/metadata/md5-cache/dev-python/xvfbwrapper-0.2.2 +++ b/metadata/md5-cache/dev-python/xvfbwrapper-0.2.2 @@ -10,5 +10,5 @@ RDEPEND=x11-base/xorg-server[xvfb] python_targets_python2_7? ( >=dev-lang/python REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/x/xvfbwrapper/xvfbwrapper-0.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15f30f5f13a58011408006af26e40e24 diff --git a/metadata/md5-cache/dev-python/yapsy-1.10.1 b/metadata/md5-cache/dev-python/yapsy-1.10.1 index 279adea80ab1..dc9d25aff073 100644 --- a/metadata/md5-cache/dev-python/yapsy-1.10.1 +++ b/metadata/md5-cache/dev-python/yapsy-1.10.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/yapsy/Yapsy-1.10.1/Yapsy-1.10.1-pythons2n3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b57b9e6b294f9b1b823a0a50a40eeec5 diff --git a/metadata/md5-cache/dev-python/yapsy-1.10.2 b/metadata/md5-cache/dev-python/yapsy-1.10.2 index 799b2cfaa25f..91968df21c56 100644 --- a/metadata/md5-cache/dev-python/yapsy-1.10.2 +++ b/metadata/md5-cache/dev-python/yapsy-1.10.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targ REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/yapsy/Yapsy-1.10.2/Yapsy-1.10.2-pythons2n3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4c7b74bb405ecfc9795a0922fa334899 diff --git a/metadata/md5-cache/dev-python/yenc-0.4.0-r1 b/metadata/md5-cache/dev-python/yenc-0.4.0-r1 index 54d19604dea3..eb3ef8560df0 100644 --- a/metadata/md5-cache/dev-python/yenc-0.4.0-r1 +++ b/metadata/md5-cache/dev-python/yenc-0.4.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.golug.it/pub/yenc/yenc-0.4.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=52bd9ffc5276b768d05ed4b748ef7fcf diff --git a/metadata/md5-cache/dev-python/yolk-0.4.3-r1 b/metadata/md5-cache/dev-python/yolk-0.4.3-r1 index aa518fd2f0ef..75a0d62a04fa 100644 --- a/metadata/md5-cache/dev-python/yolk-0.4.3-r1 +++ b/metadata/md5-cache/dev-python/yolk-0.4.3-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools dev-python/yolk-portage python_targets_python2_6? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/y/yolk/yolk-0.4.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=01be0ddde65fc04f0257df0a86a4fe00 diff --git a/metadata/md5-cache/dev-python/yolk-portage-0.1-r1 b/metadata/md5-cache/dev-python/yolk-portage-0.1-r1 index ecb0cd2fa18d..e8c4400bf37b 100644 --- a/metadata/md5-cache/dev-python/yolk-portage-0.1-r1 +++ b/metadata/md5-cache/dev-python/yolk-portage-0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=app-portage/portage-utils-0.1.23 python_targets_python2_6? ( >=dev-lan REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/y/yolk-portage/yolk-portage-0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce6205b7cf5698cbd6569dbe1692dd07 diff --git a/metadata/md5-cache/dev-python/zbase32-1.1.5 b/metadata/md5-cache/dev-python/zbase32-1.1.5 index 90f8e0939fd6..9f6d4a8a58e5 100644 --- a/metadata/md5-cache/dev-python/zbase32-1.1.5 +++ b/metadata/md5-cache/dev-python/zbase32-1.1.5 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyutil[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/z/zbase32/zbase32-1.1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=77614b992c1ca1e2bef63c134156014f diff --git a/metadata/md5-cache/dev-python/zfec-1.4.24 b/metadata/md5-cache/dev-python/zfec-1.4.24 index 4df1067fc3ad..e7ac57c44747 100644 --- a/metadata/md5-cache/dev-python/zfec-1.4.24 +++ b/metadata/md5-cache/dev-python/zfec-1.4.24 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/z/zfec/zfec-1.4.24.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f92e9a60e025784ab2a3019d8a588ba0 diff --git a/metadata/md5-cache/dev-python/zsi-2.1_alpha1-r1 b/metadata/md5-cache/dev-python/zsi-2.1_alpha1-r1 index 41e2754ad9ca..b447155fae79 100644 --- a/metadata/md5-cache/dev-python/zsi-2.1_alpha1-r1 +++ b/metadata/md5-cache/dev-python/zsi-2.1_alpha1-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pywebsvcs/ZSI-2.1-a1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4679cee7035dd4b00b03c1ca8ffcb5b8 diff --git a/metadata/md5-cache/dev-qt/qt-creator-3.0.0_beta b/metadata/md5-cache/dev-qt/qt-creator-3.0.0_beta new file mode 100644 index 000000000000..623164a9ecdc --- /dev/null +++ b/metadata/md5-cache/dev-qt/qt-creator-3.0.0_beta @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND==dev-libs/botan-1.10*[threads] >=dev-qt/qtcore-4.8.0:4[ssl] >=dev-qt/qtdeclarative-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4 dev-qt/designer:4 ) ( >=dev-qt/qtgui-4.8.0:4 =dev-qt/qthelp-4.8.0:4[doc?] >=dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4 >=dev-qt/qtsvg-4.8.0:4 virtual/pkgconfig test? ( >=dev-qt/qttest-4.8.0:4 ) +DESCRIPTION=Lightweight IDE for C++/QML development centering around Qt +EAPI=5 +HOMEPAGE=http://qt-project.org/wiki/Category:Tools::QtCreator +IUSE=debug doc examples test android autotools baremetal bazaar clearcase cmake cvs fakevim git ios mercurial perforce python qnx subversion valgrind linguas_cs linguas_de linguas_fr linguas_ja linguas_pl linguas_ru linguas_sl linguas_zh_CN linguas_zh_TW +KEYWORDS=~amd64 ~arm ~ppc ~x86 +LICENSE=LGPL-2.1 +PDEPEND=autotools? ( sys-devel/autoconf ) bazaar? ( dev-vcs/bzr ) cmake? ( dev-util/cmake ) cvs? ( dev-vcs/cvs ) git? ( dev-vcs/git ) mercurial? ( dev-vcs/mercurial ) subversion? ( dev-vcs/subversion ) valgrind? ( dev-util/valgrind ) +RDEPEND==dev-libs/botan-1.10*[threads] >=dev-qt/qtcore-4.8.0:4[ssl] >=dev-qt/qtdeclarative-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4 dev-qt/designer:4 ) ( >=dev-qt/qtgui-4.8.0:4 =dev-qt/qthelp-4.8.0:4[doc?] >=dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4 >=dev-qt/qtsvg-4.8.0:4 >=sys-devel/gdb-7.2[client(+),python] examples? ( >=dev-qt/qtdemo-4.8.0:4 ) +SLOT=0 +SRC_URI=http://download.qt-project.org/development_releases/qtcreator/3.0/3.0.0-beta/qt-creator-3.0.0-beta-src.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 4878e7f88afc0ba0866ac112190b0fd4 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multilib 892e597faee02a5b94eb02ab512e7622 qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=e3a4ec49c91eb934375cab218e378f87 diff --git a/metadata/md5-cache/dev-ruby/activeldap-4.0.1 b/metadata/md5-cache/dev-ruby/activeldap-4.0.1 new file mode 100644 index 000000000000..c73829a4a84d --- /dev/null +++ b/metadata/md5-cache/dev-ruby/activeldap-4.0.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby19? ( >=dev-ruby/activemodel-4.0.0:4.0[ruby_targets_ruby19] dev-ruby/locale[ruby_targets_ruby19] dev-ruby/ruby-gettext[ruby_targets_ruby19] dev-ruby/gettext_i18n_rails[ruby_targets_ruby19] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby19] dev-ruby/ruby-net-ldap[ruby_targets_ruby19] ) ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ) +DESCRIPTION=Ruby/ActiveLDAP provides an activerecord inspired object oriented interface to LDAP +EAPI=5 +HOMEPAGE=https://github.com/activeldap/activeldap +IUSE=test elibc_FreeBSD ruby_targets_ruby19 test test +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=ruby_targets_ruby19? ( >=dev-ruby/activemodel-4.0.0:4.0[ruby_targets_ruby19] dev-ruby/locale[ruby_targets_ruby19] dev-ruby/ruby-gettext[ruby_targets_ruby19] dev-ruby/gettext_i18n_rails[ruby_targets_ruby19] || ( >=dev-ruby/ruby-ldap-0.8.2[ruby_targets_ruby19] dev-ruby/ruby-net-ldap[ruby_targets_ruby19] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ) +RESTRICT=test +SLOT=4 +SRC_URI=mirror://rubygems/activeldap-4.0.1.gem +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem 6e366daedf25d7020291916549562bbf ruby-ng 69c01a1b984ed066bc91b4397b002f6a toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=3e8c3f626b8b6d4891d543968da7bd7d diff --git a/metadata/md5-cache/dev-ruby/arel-4.0.1 b/metadata/md5-cache/dev-ruby/arel-4.0.1 new file mode 100644 index 000000000000..4aff3dd6ed19 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/arel-4.0.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby19? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby19] virtual/ruby-minitest[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/test-unit:2[ruby_targets_ruby20] virtual/ruby-minitest[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) test? ( ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ) +DESCRIPTION=Arel is a Relational Algebra for Ruby. +EAPI=5 +HOMEPAGE=http://github.com/rails/arel +IUSE=elibc_FreeBSD ruby_targets_ruby19 ruby_targets_ruby20 doc test test +KEYWORDS=~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) +REQUIRED_USE=|| ( ruby_targets_ruby19 ruby_targets_ruby20 ) +SLOT=4.0 +SRC_URI=mirror://rubygems/arel-4.0.1.gem +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem 6e366daedf25d7020291916549562bbf ruby-ng 69c01a1b984ed066bc91b4397b002f6a toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=a00f9b48d3b66eae1736d6f2cf36c4dd diff --git a/metadata/md5-cache/dev-ruby/cocaine-0.4.2 b/metadata/md5-cache/dev-ruby/cocaine-0.4.2 deleted file mode 100644 index 2d0eac4dbf31..000000000000 --- a/metadata/md5-cache/dev-ruby/cocaine-0.4.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare setup test unpack -DEPEND=ruby_targets_ruby18? ( test? ( dev-ruby/bourne[ruby_targets_ruby18] dev-ruby/mocha[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/bourne[ruby_targets_ruby19] dev-ruby/mocha[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( test? ( dev-ruby/bourne[ruby_targets_jruby] dev-ruby/mocha[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rspec:2[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rspec:2[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) -DESCRIPTION=A small library for doing command lines -EAPI=4 -HOMEPAGE=http://www.thoughtbot.com/projects/cocaine -IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby test test -KEYWORDS=~amd64 -LICENSE=MIT -RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) -REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby ) -SLOT=0 -SRC_URI=mirror://rubygems/cocaine-0.4.2.gem -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem 6e366daedf25d7020291916549562bbf ruby-ng 69c01a1b984ed066bc91b4397b002f6a toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=9b917ef434ffde6148d3df6e0bb81ef3 diff --git a/metadata/md5-cache/dev-ruby/cocaine-0.5.1 b/metadata/md5-cache/dev-ruby/cocaine-0.5.3 similarity index 94% rename from metadata/md5-cache/dev-ruby/cocaine-0.5.1 rename to metadata/md5-cache/dev-ruby/cocaine-0.5.3 index c41c957221bf..b57b92a68a7b 100644 --- a/metadata/md5-cache/dev-ruby/cocaine-0.5.1 +++ b/metadata/md5-cache/dev-ruby/cocaine-0.5.3 @@ -9,6 +9,6 @@ LICENSE=MIT RDEPEND=ruby_targets_ruby19? ( dev-ruby/climate_control:0[ruby_targets_ruby19] ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) REQUIRED_USE=|| ( ruby_targets_ruby19 ) SLOT=0 -SRC_URI=mirror://rubygems/cocaine-0.5.1.gem +SRC_URI=mirror://rubygems/cocaine-0.5.3.gem _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem 6e366daedf25d7020291916549562bbf ruby-ng 69c01a1b984ed066bc91b4397b002f6a toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=211cec2aa465b7b648cedbfa2b8a95e8 +_md5_=06320ab156bb770df30bfbd9deb36393 diff --git a/metadata/md5-cache/dev-ruby/map-6.5.1 b/metadata/md5-cache/dev-ruby/map-6.5.1 new file mode 100644 index 000000000000..0ec3c50bf94a --- /dev/null +++ b/metadata/md5-cache/dev-ruby/map-6.5.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DESCRIPTION=A string/symbol indifferent ordered hash that works in all rubies. +EAPI=5 +HOMEPAGE=http://github.com/ahoward/map +IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby test test +KEYWORDS=~amd64 ~x86 ~x86-fbsd +LICENSE=|| ( Ruby BSD-2 ) +RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +SLOT=0 +SRC_URI=mirror://rubygems/map-6.5.1.gem +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem 6e366daedf25d7020291916549562bbf ruby-ng 69c01a1b984ed066bc91b4397b002f6a toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=f0c73be032a90af259c9e52178329589 diff --git a/metadata/md5-cache/dev-ruby/mocha-0.13.3-r1 b/metadata/md5-cache/dev-ruby/mocha-0.13.3-r1 new file mode 100644 index 000000000000..0ff502467922 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/mocha-0.13.3-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby18? ( doc? ( dev-ruby/yard[ruby_targets_ruby18] ) test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/yard[ruby_targets_ruby19] ) test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/yard[ruby_targets_ruby20] ) test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/yard[ruby_targets_jruby] ) test? ( >=dev-ruby/test-unit-2.5.1-r1[ruby_targets_jruby] ) ) test? ( ruby_targets_ruby18? ( dev-ruby/metaclass[ruby_targets_ruby18] ) ruby_targets_ruby19? ( dev-ruby/metaclass[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/metaclass[ruby_targets_ruby20] ) ruby_targets_jruby? ( dev-ruby/metaclass[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DESCRIPTION=A Ruby library for 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_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby doc test test +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby18? ( dev-ruby/metaclass[ruby_targets_ruby18] ) ruby_targets_ruby19? ( dev-ruby/metaclass[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/metaclass[ruby_targets_ruby20] ) ruby_targets_jruby? ( dev-ruby/metaclass[ruby_targets_jruby] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +SLOT=0.13 +SRC_URI=mirror://rubygems/mocha-0.13.3.gem +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem 6e366daedf25d7020291916549562bbf ruby-ng 69c01a1b984ed066bc91b4397b002f6a toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=49ae84841efb36e10c41e768ecd245e3 diff --git a/metadata/md5-cache/dev-ruby/racc-1.4.10 b/metadata/md5-cache/dev-ruby/racc-1.4.10 new file mode 100644 index 000000000000..8a017f467007 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/racc-1.4.10 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby18? ( dev-ruby/rake[ruby_targets_ruby18] ) ruby_targets_ruby19? ( dev-ruby/rake[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/rake[ruby_targets_ruby20] ) ruby_targets_jruby? ( dev-ruby/rake[ruby_targets_jruby] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( doc? ( dev-ruby/rdoc[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rdoc[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( test? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( test? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_ruby20? ( test? ( dev-ruby/rake[ruby_targets_ruby20] ) ) ruby_targets_jruby? ( test? ( dev-ruby/rake[ruby_targets_jruby] ) ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) ) +DESCRIPTION=A LALR(1) parser generator for Ruby +EAPI=5 +HOMEPAGE=https://github.com/tenderlove/racc +IUSE=doc test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby doc test test +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=LGPL-2.1 +RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ruby20? ( virtual/rubygems[ruby_targets_ruby20] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) +REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 ruby_targets_jruby ) +SLOT=0 +SRC_URI=mirror://rubygems/racc-1.4.10.gem +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 ruby-fakegem 6e366daedf25d7020291916549562bbf ruby-ng 69c01a1b984ed066bc91b4397b002f6a toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=af2e85b7e4a80866b4c2a9f495cb04a1 diff --git a/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 b/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 index 7461cf9a850e..2034362edc6d 100644 --- a/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 +++ b/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targe RESTRICT=test SLOT=0 SRC_URI=http://www.speech.kth.se/snack/dist/snack2.2.10.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fe3de7d3766ebc887d1b43fd2294da1b diff --git a/metadata/md5-cache/dev-tex/biblatex-2.8 b/metadata/md5-cache/dev-tex/biblatex-2.8 new file mode 100644 index 000000000000..bf016e57f01c --- /dev/null +++ b/metadata/md5-cache/dev-tex/biblatex-2.8 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare unpack +DEPEND=dev-texlive/texlive-bibtexextra virtual/latex-base >=sys-apps/texinfo-4.2-r5 +DESCRIPTION=Reimplementation of the bibliographic facilities provided by LaTeX +EAPI=5 +HOMEPAGE=http://www.ctan.org/tex-archive/macros/latex/contrib/biblatex +IUSE=doc examples +KEYWORDS=~amd64 ~x86 +LICENSE=LPPL-1.3 +RDEPEND=dev-texlive/texlive-bibtexextra virtual/latex-base +SLOT=0 +SRC_URI=mirror://sourceforge/biblatex/biblatex-2.8.tds.tgz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 4878e7f88afc0ba0866ac112190b0fd4 latex-package 999c52f495ebb8dd3b69bda982bb2817 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=33fb0f22a9279f5861f34993d7beead1 diff --git a/metadata/md5-cache/dev-tex/dot2tex-2.8.7-r1 b/metadata/md5-cache/dev-tex/dot2tex-2.8.7-r1 index 8e5c26d5668a..566d2fe0a33f 100644 --- a/metadata/md5-cache/dev-tex/dot2tex-2.8.7-r1 +++ b/metadata/md5-cache/dev-tex/dot2tex-2.8.7-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyparsing[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://dot2tex.googlecode.com/files/dot2tex-2.8.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce41bc28f008edc13639ad9f9242799c diff --git a/metadata/md5-cache/dev-util/a8-0.11-r2 b/metadata/md5-cache/dev-util/a8-0.11-r2 index f00d497e03b7..bfb0733e49a1 100644 --- a/metadata/md5-cache/dev-util/a8-0.11-r2 +++ b/metadata/md5-cache/dev-util/a8-0.11-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/dbus-python-1[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/a/a8/a8-0.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15a4878f2038046258023e0129edee4a diff --git a/metadata/md5-cache/dev-util/catalyst-2.9999 b/metadata/md5-cache/dev-util/catalyst-2.9999 index 7e8b0250c155..82b0d3d24977 100644 --- a/metadata/md5-cache/dev-util/catalyst-2.9999 +++ b/metadata/md5-cache/dev-util/catalyst-2.9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-arch/lbzip2 app-crypt/shash virtual/cdrtools ccache? ( dev-util/ccache ) ia64? ( sys-fs/dosfstools ) kernel_linux? ( app-misc/zisofs-tools >=sys-fs/squashfs-tools-2.1 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3d7ded59c0f816d96d31330f647b36fc diff --git a/metadata/md5-cache/dev-util/cdiff-0.9 b/metadata/md5-cache/dev-util/cdiff-0.9 index 5f5c75e57270..419d7955f668 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.9 +++ b/metadata/md5-cache/dev-util/cdiff-0.9 @@ -10,5 +10,5 @@ RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_6(-)?,p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8977aededf6787d6b0334069c7414ee8 diff --git a/metadata/md5-cache/dev-util/cdiff-0.9.1 b/metadata/md5-cache/dev-util/cdiff-0.9.1 index 7f31cf956339..df8384cefb2f 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.9.1 +++ b/metadata/md5-cache/dev-util/cdiff-0.9.1 @@ -10,5 +10,5 @@ RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_6(-)?,p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3695bf8e65d3fa60ec85683c721bec09 diff --git a/metadata/md5-cache/dev-util/cdiff-0.9.2 b/metadata/md5-cache/dev-util/cdiff-0.9.2 index be911bee2152..4fb823b59fa4 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.9.2 +++ b/metadata/md5-cache/dev-util/cdiff-0.9.2 @@ -10,5 +10,5 @@ RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_6(-)?,p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.9.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8c7b61042ace54cea699408c310717c9 diff --git a/metadata/md5-cache/dev-util/cdiff-0.9.3 b/metadata/md5-cache/dev-util/cdiff-0.9.3 index baffd8f59e33..37dd29b485bb 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.9.3 +++ b/metadata/md5-cache/dev-util/cdiff-0.9.3 @@ -10,5 +10,5 @@ RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_6(-)?,p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.9.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=383d223e2f01e3f5977bba0345204aca diff --git a/metadata/md5-cache/dev-util/cdiff-9999 b/metadata/md5-cache/dev-util/cdiff-9999 index dba20647c94d..772e253f8654 100644 --- a/metadata/md5-cache/dev-util/cdiff-9999 +++ b/metadata/md5-cache/dev-util/cdiff-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-)] sys-apps/less python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0641936a8d82c5480324f96cfec8b209 diff --git a/metadata/md5-cache/dev-util/cligh-0.1_p20120630 b/metadata/md5-cache/dev-util/cligh-0.1_p20120630 index 9895ac46a846..9fae80ac28db 100644 --- a/metadata/md5-cache/dev-util/cligh-0.1_p20120630 +++ b/metadata/md5-cache/dev-util/cligh-0.1_p20120630 @@ -10,5 +10,5 @@ RDEPEND=dev-python/PyGithub[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/CMB/cligh/archive/401ce7405d3dc7a90bd519dce8ae9be3bdef43ac.tar.gz -> cligh-0.1_p20120630.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=933058601c78bf0b18ee1825e5e91a0c diff --git a/metadata/md5-cache/dev-util/cligh-0.2 b/metadata/md5-cache/dev-util/cligh-0.2 index bdc517bd2c30..eb411a11d537 100644 --- a/metadata/md5-cache/dev-util/cligh-0.2 +++ b/metadata/md5-cache/dev-util/cligh-0.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/PyGithub[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://the-brannons.com/software/cligh-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=69e32bba2e4d7e56ed2e6b9b9b3507f1 diff --git a/metadata/md5-cache/dev-util/cligh-9999 b/metadata/md5-cache/dev-util/cligh-9999 index 89b145ba510e..e548179e5c0e 100644 --- a/metadata/md5-cache/dev-util/cligh-9999 +++ b/metadata/md5-cache/dev-util/cligh-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-python/PyGithub[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyxdg[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c00e758a835b67552e8098a354f06932 diff --git a/metadata/md5-cache/dev-util/cmdtest-0.6 b/metadata/md5-cache/dev-util/cmdtest-0.6 index 989b03840ab4..d38aed6bb88b 100644 --- a/metadata/md5-cache/dev-util/cmdtest-0.6 +++ b/metadata/md5-cache/dev-util/cmdtest-0.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/c/cmdtest/cmdtest_0.6.orig.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce304dafd7f015aaab303494f326b38e diff --git a/metadata/md5-cache/dev-util/coccigrep-1.12 b/metadata/md5-cache/dev-util/coccigrep-1.12 index 47df8d942989..2cc778f96395 100644 --- a/metadata/md5-cache/dev-util/coccigrep-1.12 +++ b/metadata/md5-cache/dev-util/coccigrep-1.12 @@ -10,5 +10,5 @@ RDEPEND=dev-util/coccinelle[python] virtual/python-argparse[python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/regit/coccigrep/archive/v1.12.tar.gz -> coccigrep-1.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=2001e814399322feeacfe00c8bf9d776 diff --git a/metadata/md5-cache/dev-util/cppcheck-1.59-r1 b/metadata/md5-cache/dev-util/cppcheck-1.59-r1 index 6b14d1d2857c..9474dc1973e5 100644 --- a/metadata/md5-cache/dev-util/cppcheck-1.59-r1 +++ b/metadata/md5-cache/dev-util/cppcheck-1.59-r1 @@ -10,5 +10,5 @@ RDEPEND=htmlreport? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/cppcheck/cppcheck-1.59.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0ccb5cd6114869475ee66aef7d01bae2 diff --git a/metadata/md5-cache/dev-util/cppcheck-1.60.1 b/metadata/md5-cache/dev-util/cppcheck-1.60.1 index 65d8f7cfd642..4649e89da02d 100644 --- a/metadata/md5-cache/dev-util/cppcheck-1.60.1 +++ b/metadata/md5-cache/dev-util/cppcheck-1.60.1 @@ -10,5 +10,5 @@ RDEPEND=htmlreport? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/cppcheck/cppcheck-1.60.1.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=87a322d3c3a1cfa1a9ca31c8aeeccf09 diff --git a/metadata/md5-cache/dev-util/debootstrap-1.0.55 b/metadata/md5-cache/dev-util/debootstrap-1.0.55 new file mode 100644 index 000000000000..f59c6a588db4 --- /dev/null +++ b/metadata/md5-cache/dev-util/debootstrap-1.0.55 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install postinst unpack +DESCRIPTION=Debian/Ubuntu bootstrap scripts +EAPI=5 +HOMEPAGE=http://packages.qa.debian.org/d/debootstrap.html +KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux +LICENSE=MIT +RDEPEND=app-arch/dpkg net-misc/wget sys-devel/binutils +SLOT=0 +SRC_URI=mirror://debian/pool/main/d/debootstrap/debootstrap_1.0.55.tar.gz mirror://gentoo/devices.tar.gz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=bb32f10efdd393dbb6a392935a4e8d1a diff --git a/metadata/md5-cache/dev-util/gdbus-codegen-2.32.4-r1 b/metadata/md5-cache/dev-util/gdbus-codegen-2.32.4-r1 index e7c7d52964dd..874385f35108 100644 --- a/metadata/md5-cache/dev-util/gdbus-codegen-2.32.4-r1 +++ b/metadata/md5-cache/dev-util/gdbus-codegen-2.32.4-r1 @@ -11,5 +11,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml] ) python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://gnome/sources/glib/2.32/glib-2.32.4.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a590c4e70867cb87a2abe26672899c9f diff --git a/metadata/md5-cache/dev-util/gdbus-codegen-2.32.4-r2 b/metadata/md5-cache/dev-util/gdbus-codegen-2.32.4-r2 index 2e9aa3f9ae89..615d59f6c0bf 100644 --- a/metadata/md5-cache/dev-util/gdbus-codegen-2.32.4-r2 +++ b/metadata/md5-cache/dev-util/gdbus-codegen-2.32.4-r2 @@ -11,5 +11,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml] ) python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=mirror://gnome/sources/glib/2.32/glib-2.32.4.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=13204500aa0d78d48dbe0e2fdc781c47 diff --git a/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3 b/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3 index dcdee554db09..6aa81c2a1077 100644 --- a/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3 +++ b/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3 @@ -11,5 +11,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml] ) python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://gnome/sources/glib/2.34/glib-2.34.3.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=2b5f5a811d9bebfdf5ec8ddd8395beff diff --git a/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3-r1 b/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3-r1 index 2b45d7857ad5..27a514d01a4a 100644 --- a/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3-r1 +++ b/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3-r1 @@ -11,5 +11,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml] ) python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://gnome/sources/glib/2.34/glib-2.34.3.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a3e56e9a201b3c11c8a79af7d0e9c7d1 diff --git a/metadata/md5-cache/dev-util/gdbus-codegen-2.36.4 b/metadata/md5-cache/dev-util/gdbus-codegen-2.36.4 index da823f54005c..0e7cc27a78ef 100644 --- a/metadata/md5-cache/dev-util/gdbus-codegen-2.36.4 +++ b/metadata/md5-cache/dev-util/gdbus-codegen-2.36.4 @@ -11,5 +11,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml] ) python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://gnome/sources/glib/2.36/glib-2.36.4.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=7829a4512941f501babed5039127c0e8 diff --git a/metadata/md5-cache/dev-util/gdbus-codegen-2.36.4-r1 b/metadata/md5-cache/dev-util/gdbus-codegen-2.36.4-r1 index 0353b533c821..c3fe593f5606 100644 --- a/metadata/md5-cache/dev-util/gdbus-codegen-2.36.4-r1 +++ b/metadata/md5-cache/dev-util/gdbus-codegen-2.36.4-r1 @@ -11,5 +11,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[xml] ) python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://gnome/sources/glib/2.36/glib-2.36.4.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=3c4ae4a091860a38d4e84177424452fb diff --git a/metadata/md5-cache/dev-util/geany-1.23.1 b/metadata/md5-cache/dev-util/geany-1.23.1 index 722b843d3b5a..3f103b87e853 100644 --- a/metadata/md5-cache/dev-util/geany-1.23.1 +++ b/metadata/md5-cache/dev-util/geany-1.23.1 @@ -10,4 +10,4 @@ RDEPEND=>=x11-libs/gtk+-2.16:2 >=dev-libs/glib-2.20:2 vte? ( x11-libs/vte:0 ) SLOT=0 SRC_URI=http://download.geany.org/geany-1.23.1.tar.bz2 _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6104606a1e17e4822c37ce403d468a7e +_md5_=700008938c2eae6efaa96a24ae9ee41e diff --git a/metadata/md5-cache/dev-util/howdoi-1.1.3 b/metadata/md5-cache/dev-util/howdoi-1.1.3 index 26ad13a114da..f7c7ee71612f 100644 --- a/metadata/md5-cache/dev-util/howdoi-1.1.3 +++ b/metadata/md5-cache/dev-util/howdoi-1.1.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/howdoi/howdoi-1.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d8555bb7c8840496d8a7b8a336a8ca88 diff --git a/metadata/md5-cache/dev-util/ninja-ide-2.1.1-r3 b/metadata/md5-cache/dev-util/ninja-ide-2.1.1-r3 index 75812340fcbf..3dc3df0066b0 100644 --- a/metadata/md5-cache/dev-util/ninja-ide-2.1.1-r3 +++ b/metadata/md5-cache/dev-util/ninja-ide-2.1.1-r3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/PyQt4[webkit] dev-python/pyinotify virtual/python-argparse[py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/ninja-ide/ninja-ide/tarball/v2.1.1 -> ninja-ide-2.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=a703ce03eb1b734900bd9b9a3b1e55d5 diff --git a/metadata/md5-cache/dev-util/ninja-ide-2.1.1-r5 b/metadata/md5-cache/dev-util/ninja-ide-2.1.1-r5 index e19469d8291d..05516af80cf4 100644 --- a/metadata/md5-cache/dev-util/ninja-ide-2.1.1-r5 +++ b/metadata/md5-cache/dev-util/ninja-ide-2.1.1-r5 @@ -10,5 +10,5 @@ RDEPEND=dev-python/PyQt4[webkit,python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/ninja-ide/ninja-ide/tarball/v2.1.1 -> ninja-ide-2.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=ff6f11443d8b4f68b10a5e903acdd150 diff --git a/metadata/md5-cache/dev-util/ninja-ide-2.2 b/metadata/md5-cache/dev-util/ninja-ide-2.2 index 5fb6f126023c..d649fb975d68 100644 --- a/metadata/md5-cache/dev-util/ninja-ide-2.2 +++ b/metadata/md5-cache/dev-util/ninja-ide-2.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/PyQt4[webkit,python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/ninja-ide/ninja-ide/tarball/v2.2 -> ninja-ide-2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=483aba0cd7f9477f9d3c9bb3ee86bdd7 diff --git a/metadata/md5-cache/dev-util/ninja-ide-2.3 b/metadata/md5-cache/dev-util/ninja-ide-2.3 index 4d943e32b065..032f9a104cc2 100644 --- a/metadata/md5-cache/dev-util/ninja-ide-2.3 +++ b/metadata/md5-cache/dev-util/ninja-ide-2.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/PyQt4[X,declarative,webkit,python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/ninja-ide/ninja-ide/tarball/v2.3 -> ninja-ide-2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=20e4dd6cbfcd07b664cb7293df1c8653 diff --git a/metadata/md5-cache/dev-util/osc-0.140.1 b/metadata/md5-cache/dev-util/osc-0.140.1 index 4a1a16f311bb..70980e8c480c 100644 --- a/metadata/md5-cache/dev-util/osc-0.140.1 +++ b/metadata/md5-cache/dev-util/osc-0.140.1 @@ -11,5 +11,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=https://api.opensuse.org/public/source/openSUSE:Tools/osc/osc-0.140.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 obs-download 8b22473fde39f5051ce00b61062dd086 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 obs-download 8b22473fde39f5051ce00b61062dd086 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9a1ec61024271e3cb9de2e017160f85b diff --git a/metadata/md5-cache/dev-util/osc-9999 b/metadata/md5-cache/dev-util/osc-9999 index a97460c1f742..e8603ca27df1 100644 --- a/metadata/md5-cache/dev-util/osc-9999 +++ b/metadata/md5-cache/dev-util/osc-9999 @@ -9,5 +9,5 @@ PDEPEND=dev-python/urlgrabber[python_targets_python2_6(-)?,python_targets_python RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce2d67ad405d223ee86cf5076531b7c0 diff --git a/metadata/md5-cache/dev-util/rbtools-0.5.1 b/metadata/md5-cache/dev-util/rbtools-0.5.1 index 689e56c835cd..04ef537133ec 100644 --- a/metadata/md5-cache/dev-util/rbtools-0.5.1 +++ b/metadata/md5-cache/dev-util/rbtools-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://downloads.reviewboard.org/releases/RBTools/0.5/RBTools-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6a9623071ad35b9a43934c02a715b5d7 diff --git a/metadata/md5-cache/dev-util/rbtools-0.5.2 b/metadata/md5-cache/dev-util/rbtools-0.5.2 index 844d047efb01..7f21feae50e6 100644 --- a/metadata/md5-cache/dev-util/rbtools-0.5.2 +++ b/metadata/md5-cache/dev-util/rbtools-0.5.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://downloads.reviewboard.org/releases/RBTools/0.5/RBTools-0.5.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=139cb5de05ef55893473a518ff67e7e9 diff --git a/metadata/md5-cache/dev-util/reviewboard-1.7.12 b/metadata/md5-cache/dev-util/reviewboard-1.7.12 index 1c466dcffd4e..96e266390d24 100644 --- a/metadata/md5-cache/dev-util/reviewboard-1.7.12 +++ b/metadata/md5-cache/dev-util/reviewboard-1.7.12 @@ -11,5 +11,5 @@ REQUIRED_USE=doc? ( || ( codebase manual rnotes ) ) || ( python_targets_python2_ RESTRICT=test SLOT=0 SRC_URI=http://downloads.reviewboard.org/releases/ReviewBoard/1.7/ReviewBoard-1.7.12.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0fa3c1471c71befadbd9a97cdb78434e diff --git a/metadata/md5-cache/dev-util/reviewboard-1.7.7.1 b/metadata/md5-cache/dev-util/reviewboard-1.7.7.1 index a4e16f5c1d1f..dcdb46bc4bb6 100644 --- a/metadata/md5-cache/dev-util/reviewboard-1.7.7.1 +++ b/metadata/md5-cache/dev-util/reviewboard-1.7.7.1 @@ -11,5 +11,5 @@ REQUIRED_USE=doc? ( || ( codebase manual rnotes ) ) || ( python_targets_python2_ RESTRICT=test SLOT=0 SRC_URI=http://downloads.reviewboard.org/releases/ReviewBoard/1.7/ReviewBoard-1.7.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8620254de2da5a41d0e9fb3a47808f2d diff --git a/metadata/md5-cache/dev-util/reviewboard-1.7.7.1-r1 b/metadata/md5-cache/dev-util/reviewboard-1.7.7.1-r1 index b20565449209..f2934fc29c58 100644 --- a/metadata/md5-cache/dev-util/reviewboard-1.7.7.1-r1 +++ b/metadata/md5-cache/dev-util/reviewboard-1.7.7.1-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=doc? ( || ( codebase manual rnotes ) ) || ( python_targets_python2_ RESTRICT=test SLOT=0 SRC_URI=http://downloads.reviewboard.org/releases/ReviewBoard/1.7/ReviewBoard-1.7.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8c7a89be731c677004dfff34cc92d75a diff --git a/metadata/md5-cache/dev-util/scons-2.2.0-r1 b/metadata/md5-cache/dev-util/scons-2.2.0-r1 index 5a69179e9538..ec41830f0171 100644 --- a/metadata/md5-cache/dev-util/scons-2.2.0-r1 +++ b/metadata/md5-cache/dev-util/scons-2.2.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[threads(+)] ) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/scons/scons-2.2.0.tar.gz doc? ( http://www.scons.org/doc/2.2.0/PDF/scons-user.pdf -> scons-2.2.0-user.pdf http://www.scons.org/doc/2.2.0/HTML/scons-user.html -> scons-2.2.0-user.html ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2a31877ed34fe87b310aff7fbfff028f diff --git a/metadata/md5-cache/dev-util/scons-2.3.0 b/metadata/md5-cache/dev-util/scons-2.3.0 index 1977e3ce1434..1a736fb54376 100644 --- a/metadata/md5-cache/dev-util/scons-2.3.0 +++ b/metadata/md5-cache/dev-util/scons-2.3.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[threads(+)] ) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/scons/scons-2.3.0.tar.gz doc? ( http://www.scons.org/doc/2.3.0/PDF/scons-user.pdf -> scons-2.3.0-user.pdf http://www.scons.org/doc/2.3.0/HTML/scons-user.html -> scons-2.3.0-user.html ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ca18e422f17fa229504a5fff61347f44 diff --git a/metadata/md5-cache/dev-util/synopsis-0.13 b/metadata/md5-cache/dev-util/synopsis-0.13 index c541c348cf3a..1ee3eae61660 100644 --- a/metadata/md5-cache/dev-util/synopsis-0.13 +++ b/metadata/md5-cache/dev-util/synopsis-0.13 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/boehm-gc media-gfx/graphviz python_targets_python2_6? ( >=dev-l REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://synopsis.fresco.org/download/synopsis-0.13.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9a25e12cc5c31270d4ea1676ddd05931 diff --git a/metadata/md5-cache/dev-util/xxdiff-4.0_beta1_p20110426 b/metadata/md5-cache/dev-util/xxdiff-4.0_beta1_p20110426 index 494ef41d806c..e88b7708498d 100644 --- a/metadata/md5-cache/dev-util/xxdiff-4.0_beta1_p20110426 +++ b/metadata/md5-cache/dev-util/xxdiff-4.0_beta1_p20110426 @@ -10,5 +10,5 @@ RDEPEND=dev-qt/qtgui:4 python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2. REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gentoo/xxdiff-4.0_beta1_p20110426.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b qt4-r2 ce0c9abfee272185e03ab73f09f5fd69 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f944a45138c332cecea84aba82b1a7a1 diff --git a/metadata/md5-cache/dev-vcs/bzr-2.5.1-r1 b/metadata/md5-cache/dev-vcs/bzr-2.5.1-r1 index 9969d800feaf..f68991916718 100644 --- a/metadata/md5-cache/dev-vcs/bzr-2.5.1-r1 +++ b/metadata/md5-cache/dev-vcs/bzr-2.5.1-r1 @@ -10,5 +10,5 @@ RDEPEND=curl? ( dev-python/pycurl[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/bzr/2.5/2.5.1/+download/bzr-2.5.1.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b12d5b82ddcad4a07c1384090f13a10b diff --git a/metadata/md5-cache/dev-vcs/bzr-fastimport-0.13.0 b/metadata/md5-cache/dev-vcs/bzr-fastimport-0.13.0 index 4f4cbe70fa22..ca2818810771 100644 --- a/metadata/md5-cache/dev-vcs/bzr-fastimport-0.13.0 +++ b/metadata/md5-cache/dev-vcs/bzr-fastimport-0.13.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/bzr-1.18 >=dev-python/python-fastimport-0.9 python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/bzr-fastimport/trunk/0.13.0/+download/bzr-fastimport-0.13.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b3d19c2b2b34e00acc24af49e98d84e2 diff --git a/metadata/md5-cache/dev-vcs/bzr-rewrite-0.6.3 b/metadata/md5-cache/dev-vcs/bzr-rewrite-0.6.3 index 877e655d82b2..a8d95178260b 100644 --- a/metadata/md5-cache/dev-vcs/bzr-rewrite-0.6.3 +++ b/metadata/md5-cache/dev-vcs/bzr-rewrite-0.6.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/bzr-2.5.0 !dev-vcs/bzr-rebase ! git-cola-1.8.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=509055fc099198d508f7cc7dc2817fa0 diff --git a/metadata/md5-cache/dev-vcs/git-cola-1.8.3 b/metadata/md5-cache/dev-vcs/git-cola-1.8.3 index 9d903fb26af1..c06cca76cb9b 100644 --- a/metadata/md5-cache/dev-vcs/git-cola-1.8.3 +++ b/metadata/md5-cache/dev-vcs/git-cola-1.8.3 @@ -11,5 +11,5 @@ REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python RESTRICT=test SLOT=0 SRC_URI=https://github.com/git-cola/git-cola/archive/v1.8.3.tar.gz -> git-cola-1.8.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a306308dc86df17029ebcda50fa5ae8d diff --git a/metadata/md5-cache/dev-vcs/git-cola-1.8.5 b/metadata/md5-cache/dev-vcs/git-cola-1.8.5 index d098cb22945f..c9867c067e49 100644 --- a/metadata/md5-cache/dev-vcs/git-cola-1.8.5 +++ b/metadata/md5-cache/dev-vcs/git-cola-1.8.5 @@ -10,5 +10,5 @@ RDEPEND=dev-python/jsonpickle[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=https://github.com/git-cola/git-cola/archive/v1.8.5.tar.gz -> git-cola-1.8.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3c09a55ff43147af4b507926a5ac040c diff --git a/metadata/md5-cache/dev-vcs/hgsubversion-1.5 b/metadata/md5-cache/dev-vcs/hgsubversion-1.5 index b1d819c913e2..6d9b0d5e276c 100644 --- a/metadata/md5-cache/dev-vcs/hgsubversion-1.5 +++ b/metadata/md5-cache/dev-vcs/hgsubversion-1.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/mercurial-1.4[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/h/hgsubversion/hgsubversion-1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a0ea21cda63c0d8d93e96be55bcbba66 diff --git a/metadata/md5-cache/dev-vcs/hgview-1.7.1-r1 b/metadata/md5-cache/dev-vcs/hgview-1.7.1-r1 index a257fe4168b6..a259ab0bdd3f 100644 --- a/metadata/md5-cache/dev-vcs/hgview-1.7.1-r1 +++ b/metadata/md5-cache/dev-vcs/hgview-1.7.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/docutils[python_targets_python2_7(-)?,-python_single_target_p REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://ftp.logilab.org/pub/hgview/hgview-1.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=de3aefcf4f1f7b42d0912a441ebe0154 diff --git a/metadata/md5-cache/dev-vcs/mercurial-2.5.4 b/metadata/md5-cache/dev-vcs/mercurial-2.5.4 index bb6882bc270d..08b5ec603aa2 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-2.5.4 +++ b/metadata/md5-cache/dev-vcs/mercurial-2.5.4 @@ -10,5 +10,5 @@ RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://mercurial.selenic.com/release/mercurial-2.5.4.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0102cf5f3a4dd3e292283408cc015475 diff --git a/metadata/md5-cache/dev-vcs/mercurial-2.6.3 b/metadata/md5-cache/dev-vcs/mercurial-2.6.3 index 691589e593b2..c224a4ffe6e0 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-2.6.3 +++ b/metadata/md5-cache/dev-vcs/mercurial-2.6.3 @@ -10,5 +10,5 @@ RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://mercurial.selenic.com/release/mercurial-2.6.3.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0d217a1c9d851c51f7d2ec18ada824b8 diff --git a/metadata/md5-cache/dev-vcs/mercurial-2.7.1 b/metadata/md5-cache/dev-vcs/mercurial-2.7.1 index 26e253164862..d840437727d6 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-2.7.1 +++ b/metadata/md5-cache/dev-vcs/mercurial-2.7.1 @@ -10,5 +10,5 @@ RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://mercurial.selenic.com/release/mercurial-2.7.1.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d1bdb141bb1623d4fd89afa14799578d diff --git a/metadata/md5-cache/dev-vcs/mercurial-2.7.2 b/metadata/md5-cache/dev-vcs/mercurial-2.7.2 index 2ebc1f93ba13..fcfcd22cc736 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-2.7.2 +++ b/metadata/md5-cache/dev-vcs/mercurial-2.7.2 @@ -10,5 +10,5 @@ RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://mercurial.selenic.com/release/mercurial-2.7.2.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=476e74a9d3f126b80b7a8c33a64c41bd diff --git a/metadata/md5-cache/dev-vcs/mercurial-9999 b/metadata/md5-cache/dev-vcs/mercurial-9999 index 70a218d0db9e..a4cd357bf002 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-9999 +++ b/metadata/md5-cache/dev-vcs/mercurial-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) app-misc/ca-certificates python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[threads] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[threads] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=53092045518f145ed632569a2ca2ac22 diff --git a/metadata/md5-cache/dev-vcs/qbzr-0.23.1 b/metadata/md5-cache/dev-vcs/qbzr-0.23.1 index 58ce41b7a720..90727d5bb626 100644 --- a/metadata/md5-cache/dev-vcs/qbzr-0.23.1 +++ b/metadata/md5-cache/dev-vcs/qbzr-0.23.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/bzr-2.5 >=dev-python/PyQt4-4.1[X] python_targets_python2_6? ( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://edge.launchpad.net/qbzr/0.23/0.23.1/+download/qbzr-0.23.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=af6e99fc84736f255ec0e5eb961539df diff --git a/metadata/md5-cache/dev-vcs/stgit-0.16-r2 b/metadata/md5-cache/dev-vcs/stgit-0.16-r2 index f5269efe83be..b9c164fb4150 100644 --- a/metadata/md5-cache/dev-vcs/stgit-0.16-r2 +++ b/metadata/md5-cache/dev-vcs/stgit-0.16-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/git-1.6.3.3 python_targets_python2_7? ( >=dev-lang/python-2.7. REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.gna.org/stgit/stgit-0.16.tar.gz mirror://gentoo/stgit-0.16-missing-patches.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=464f681c601c1125111c3451697354a0 diff --git a/metadata/md5-cache/dev-vcs/subversion-1.7.13 b/metadata/md5-cache/dev-vcs/subversion-1.7.13 index 4410fc8138cc..0ba46d617e00 100644 --- a/metadata/md5-cache/dev-vcs/subversion-1.7.13 +++ b/metadata/md5-cache/dev-vcs/subversion-1.7.13 @@ -10,5 +10,5 @@ RDEPEND=>=dev-db/sqlite-3.6.18[threadsafe(+)] >=dev-libs/apr-1.3:1 >=dev-libs/ap REQUIRED_USE=ctypes-python? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) python? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) test? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) SLOT=0 SRC_URI=mirror://apache/subversion/subversion-1.7.13.tar.bz2 -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 d339dd40b2014cf1edba8592580eef42 db-use 1c719875d6599536f956fafea9e1f404 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd distutils-r1 2591a8991f563d02fe1c8781892dc279 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 d339dd40b2014cf1edba8592580eef42 db-use 1c719875d6599536f956fafea9e1f404 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 elisp-common 57a17c02cd0f6f0c423e3d6de5c83f13 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=cce88260d4b09175edbf70b291b1e78f diff --git a/metadata/md5-cache/dev-vcs/tortoisehg-2.7.2 b/metadata/md5-cache/dev-vcs/tortoisehg-2.7.2 index d8dbea1a28ae..53c0dfc0ee37 100644 --- a/metadata/md5-cache/dev-vcs/tortoisehg-2.7.2 +++ b/metadata/md5-cache/dev-vcs/tortoisehg-2.7.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-vcs/mercurial-2.4 =dev-vcs/mercurial-2.5 =dev-vcs/mercurial-2.5 =dev-vcs/mercurial-2.5 =dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b79d1c26069b391b1e4205c0f37c3059 diff --git a/metadata/md5-cache/games-action/slune-1.0.15-r1 b/metadata/md5-cache/games-action/slune-1.0.15-r1 index 87f4739612cc..3c07b80e423e 100644 --- a/metadata/md5-cache/games-action/slune-1.0.15-r1 +++ b/metadata/md5-cache/games-action/slune-1.0.15-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/opengl >=media-libs/libsdl-1.2.6 >=dev-python/soya-0.9 >=dev-pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.gna.org/slune/Slune-1.0.15.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cba605f0bffb1da6182095dc7cf71725 diff --git a/metadata/md5-cache/games-arcade/smc-1.9 b/metadata/md5-cache/games-arcade/smc-1.9 index d0cdd06f68a0..61b73d107586 100644 --- a/metadata/md5-cache/games-arcade/smc-1.9 +++ b/metadata/md5-cache/games-arcade/smc-1.9 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DEPEND==sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Secret Maryo Chronicles EAPI=4 HOMEPAGE=http://www.secretmaryo.org/ IUSE=music KEYWORDS=amd64 ppc x86 LICENSE=GPL-3 -RDEPEND==sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[sqlite] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +DESCRIPTION=A chess client for Gnome +EAPI=5 +HOMEPAGE=http://pychess.googlepages.com/home +IUSE=gstreamer python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-python/librsvg-python dev-python/pycairo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygobject:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygtk:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygtksourceview:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] gstreamer? ( dev-python/gst-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) dev-python/gconf-python x11-themes/gnome-icon-theme python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[sqlite] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[sqlite] ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) +SLOT=0 +SRC_URI=http://pychess.googlecode.com/files/pychess-0.10.1.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=852ffeaa465b87dbf85443c4ad3ff4ac diff --git a/metadata/md5-cache/games-board/pysolfc-2.0-r1 b/metadata/md5-cache/games-board/pysolfc-2.0-r1 index 576d6a85e06d..db54a8e5222b 100644 --- a/metadata/md5-cache/games-board/pysolfc-2.0-r1 +++ b/metadata/md5-cache/games-board/pysolfc-2.0-r1 @@ -10,5 +10,5 @@ RDEPEND=sound? ( dev-python/pygame ) !minimal? ( dev-python/imaging[tk] dev-tclt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pysolfc/PySolFC-2.0.tar.bz2 extra-cardsets? ( mirror://sourceforge/pysolfc/PySolFC-Cardsets-2.0.tar.bz2 ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e417186b19205e98d58bc734cf773034 diff --git a/metadata/md5-cache/games-board/pysolfc-2.0-r2 b/metadata/md5-cache/games-board/pysolfc-2.0-r2 index 5d1bb38a1522..f8bd3434261a 100644 --- a/metadata/md5-cache/games-board/pysolfc-2.0-r2 +++ b/metadata/md5-cache/games-board/pysolfc-2.0-r2 @@ -10,5 +10,5 @@ RDEPEND=sound? ( dev-python/pygame[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pysolfc/PySolFC-2.0.tar.bz2 extra-cardsets? ( mirror://sourceforge/pysolfc/PySolFC-Cardsets-2.0.tar.bz2 ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f7c1dd80ccdffb7ade7ffeaaec0b30fd diff --git a/metadata/md5-cache/games-emulation/gfceux-2.1.1-r1 b/metadata/md5-cache/games-emulation/gfceux-2.1.1-r1 index afea7627bf2d..383ca80131f9 100644 --- a/metadata/md5-cache/games-emulation/gfceux-2.1.1-r1 +++ b/metadata/md5-cache/games-emulation/gfceux-2.1.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygtk games-emulation/fceux python_targets_python2_6? ( >=dev REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/fceultra/fceux-2.1.1.src.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f854e4133a2987ab72b1d84fab0dcf28 diff --git a/metadata/md5-cache/games-engines/renpy-6.14.1-r1 b/metadata/md5-cache/games-engines/renpy-6.14.1-r1 index 7010150c8acc..9e2a798561cd 100644 --- a/metadata/md5-cache/games-engines/renpy-6.14.1-r1 +++ b/metadata/md5-cache/games-engines/renpy-6.14.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=app-admin/eselect-renpy-0.1 dev-libs/fribidi dev-python/pygame[X,pytho REQUIRED_USE=examples? ( development ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=6.14 SRC_URI=http://www.renpy.org/dl/6.14.1/renpy-6.14.1-source.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=ca17c5036db66caa2548fc1d6c5df1db diff --git a/metadata/md5-cache/games-engines/renpy-6.15.4 b/metadata/md5-cache/games-engines/renpy-6.15.4 index a29d339c0d1b..20c4ed18c60c 100644 --- a/metadata/md5-cache/games-engines/renpy-6.15.4 +++ b/metadata/md5-cache/games-engines/renpy-6.15.4 @@ -10,5 +10,5 @@ RDEPEND=>=app-admin/eselect-renpy-0.2 dev-libs/fribidi dev-python/pygame[X,pytho REQUIRED_USE=examples? ( development ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=6.15 SRC_URI=http://www.renpy.org/dl/6.15.4/renpy-6.15.4-source.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4076ed5fc13780a2e1338882059a90bc diff --git a/metadata/md5-cache/games-engines/renpy-6.15.7 b/metadata/md5-cache/games-engines/renpy-6.15.7 index 7d4734d8048e..ab5bd6997211 100644 --- a/metadata/md5-cache/games-engines/renpy-6.15.7 +++ b/metadata/md5-cache/games-engines/renpy-6.15.7 @@ -10,5 +10,5 @@ RDEPEND=>=app-admin/eselect-renpy-0.2 dev-libs/fribidi dev-python/pygame[X,pytho REQUIRED_USE=examples? ( development ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=6.15 SRC_URI=http://www.renpy.org/dl/6.15.7/renpy-6.15.7-source.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=60211da4d5e505b0e70b956fe447be52 diff --git a/metadata/md5-cache/games-kids/pytraffic-2.5.4-r1 b/metadata/md5-cache/games-kids/pytraffic-2.5.4-r1 index 161ab4c0201b..9f8df698e64c 100644 --- a/metadata/md5-cache/games-kids/pytraffic-2.5.4-r1 +++ b/metadata/md5-cache/games-kids/pytraffic-2.5.4-r1 @@ -10,5 +10,5 @@ RDEPEND=media-libs/libsdl:0[audio] media-libs/sdl-mixer dev-python/pygtk python_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://alpha.uhasselt.be/Research/Algebra/Members/pytraffic/pytraffic-2.5.4.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8debe17152bde1fbac8025a32c0a4106 diff --git a/metadata/md5-cache/games-mud/lyntin-4.2-r1 b/metadata/md5-cache/games-mud/lyntin-4.2-r1 index 1bd6e0983ff8..16d230863689 100644 --- a/metadata/md5-cache/games-mud/lyntin-4.2-r1 +++ b/metadata/md5-cache/games-mud/lyntin-4.2-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[tk?] ) python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/lyntin/lyntin-4.2.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b5e83fa2a9287d6413eace78584cb0e2 diff --git a/metadata/md5-cache/games-strategy/outerspace-0.5.68 b/metadata/md5-cache/games-strategy/outerspace-0.5.68 index ae9216e67447..8b5338088cbd 100644 --- a/metadata/md5-cache/games-strategy/outerspace-0.5.68 +++ b/metadata/md5-cache/games-strategy/outerspace-0.5.68 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pygame-1.7 python_targets_python2_6? ( >=dev-lang/python-2. REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/ospace/Client/0.5.68/Outer%20Space-0.5.68.tar.gz -> outerspace-0.5.68.tar.gz mirror://sourceforge/ospace/Client/0.5.68/outerspace_0.5.68-0ubuntu1_all.deb -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b826abc86a0e8a850a9992d7d6804bd4 diff --git a/metadata/md5-cache/games-util/nml-0.2.4-r1 b/metadata/md5-cache/games-util/nml-0.2.4-r1 index 4e8a8a6b18e1..b9fb32b96541 100644 --- a/metadata/md5-cache/games-util/nml-0.2.4-r1 +++ b/metadata/md5-cache/games-util/nml-0.2.4-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-imaging dev-python/ply python_targets_python2_6? ( >=dev- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://bundles.openttdcoop.org/nml/releases/0.2.4/nml-0.2.4.src.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6bd1b5eb60006234398d65a38dadd8d5 diff --git a/metadata/md5-cache/games-util/nml-0.2.4-r2 b/metadata/md5-cache/games-util/nml-0.2.4-r2 index aa498482ec95..7a3e396ad572 100644 --- a/metadata/md5-cache/games-util/nml-0.2.4-r2 +++ b/metadata/md5-cache/games-util/nml-0.2.4-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pillow[zlib,python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://bundles.openttdcoop.org/nml/releases/0.2.4/nml-0.2.4.src.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dcf07d0260c80896b5af38710baa4eab diff --git a/metadata/md5-cache/gnome-base/gnome-core-apps-3.8.0 b/metadata/md5-cache/gnome-base/gnome-core-apps-3.8.0 index 0ad77b150241..f836a2330b95 100644 --- a/metadata/md5-cache/gnome-base/gnome-core-apps-3.8.0 +++ b/metadata/md5-cache/gnome-base/gnome-core-apps-3.8.0 @@ -2,9 +2,9 @@ DEFINED_PHASES=- DESCRIPTION=Sub-meta package for the core applications integrated with GNOME 3 EAPI=5 HOMEPAGE=http://www.gnome.org/ -IUSE=+bluetooth +cdr cups +networkmanager +IUSE=+bluetooth +cdr cups KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=metapackage -RDEPEND=>=gnome-base/gnome-core-libs-3.8.0[cups?] >=gnome-base/gnome-session-3.8.0 >=gnome-base/gnome-menus-3.8.0:3 >=gnome-base/gnome-settings-daemon-3.8.0[cups?] >=gnome-base/gnome-control-center-3.8.0[cups?] >=app-crypt/gcr-3.8.0 >=gnome-base/nautilus-3.8.0 >=gnome-base/gnome-keyring-3.8.0 >=gnome-extra/evolution-data-server-3.8.0 >=app-crypt/seahorse-3.8.0 >=app-editors/gedit-3.8.0 >=app-text/evince-3.8.0 >=gnome-extra/gnome-contacts-3.8.0 >=media-gfx/eog-3.8.0 >=media-video/totem-3.8.0 >=net-im/empathy-3.8.0 >=x11-terms/gnome-terminal-3.8.0 >=gnome-extra/gnome-user-docs-3.8.0 >=gnome-extra/yelp-3.8.0 >=x11-themes/gtk-engines-2.20.2:2 >=x11-themes/gnome-icon-theme-3.8.0 >=x11-themes/gnome-icon-theme-symbolic-3.8.0 >=x11-themes/gnome-themes-standard-3.8.0 bluetooth? ( >=net-wireless/gnome-bluetooth-3.8.0 ) cdr? ( >=app-cdr/brasero-3.8.0 ) networkmanager? ( >=gnome-extra/nm-applet-0.9.8.0[bluetooth?] ) !gnome-base/gnome-applets +RDEPEND=>=gnome-base/gnome-core-libs-3.8.0[cups?] >=gnome-base/gnome-session-3.8.0 >=gnome-base/gnome-menus-3.8.0:3 >=gnome-base/gnome-settings-daemon-3.8.0[cups?] >=gnome-base/gnome-control-center-3.8.0[cups?] >=app-crypt/gcr-3.8.0 >=gnome-base/nautilus-3.8.0 >=gnome-base/gnome-keyring-3.8.0 >=gnome-extra/evolution-data-server-3.8.0 >=app-crypt/seahorse-3.8.0 >=app-editors/gedit-3.8.0 >=app-text/evince-3.8.0 >=gnome-extra/gnome-contacts-3.8.0 >=media-gfx/eog-3.8.0 >=media-video/totem-3.8.0 >=net-im/empathy-3.8.0 >=x11-terms/gnome-terminal-3.8.0 >=gnome-extra/gnome-user-docs-3.8.0 >=gnome-extra/yelp-3.8.0 >=x11-themes/gtk-engines-2.20.2:2 >=x11-themes/gnome-icon-theme-3.8.0 >=x11-themes/gnome-icon-theme-symbolic-3.8.0 >=x11-themes/gnome-themes-standard-3.8.0 bluetooth? ( >=net-wireless/gnome-bluetooth-3.8.0 ) cdr? ( >=app-cdr/brasero-3.8.0 ) !gnome-base/gnome-applets SLOT=3.0 -_md5_=38a24341d05130d37c649e560302d9bf +_md5_=e492e6646d638c0f140555cf4c23ef8f diff --git a/metadata/md5-cache/gnome-extra/gnome-activity-journal-0.8.0-r3 b/metadata/md5-cache/gnome-extra/gnome-activity-journal-0.8.0-r3 index 7e3773efb792..1dc9bbd4c038 100644 --- a/metadata/md5-cache/gnome-extra/gnome-activity-journal-0.8.0-r3 +++ b/metadata/md5-cache/gnome-extra/gnome-activity-journal-0.8.0-r3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/dbus-python dev-python/libgnome-python dev-python/gconf-pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/gnome-activity-journal/0.8/0.8.0/+download/gnome-activity-journal-0.8.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5a8dec08528600397ffc65d84992e111 diff --git a/metadata/md5-cache/gnome-extra/gnome-activity-journal-0.8.0-r4 b/metadata/md5-cache/gnome-extra/gnome-activity-journal-0.8.0-r4 index 95a0292eecc3..264873658017 100644 --- a/metadata/md5-cache/gnome-extra/gnome-activity-journal-0.8.0-r4 +++ b/metadata/md5-cache/gnome-extra/gnome-activity-journal-0.8.0-r4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/dbus-python dev-python/libgnome-python dev-python/gconf-pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/gnome-activity-journal/0.8/0.8.0/+download/gnome-activity-journal-0.8.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=e14bd5fb244bd13c5e5b7f044d77104c diff --git a/metadata/md5-cache/gnome-extra/gnome-clocks-0.1.5 b/metadata/md5-cache/gnome-extra/gnome-clocks-0.1.5 index 2c2a5540d25f..7651005e9261 100644 --- a/metadata/md5-cache/gnome-extra/gnome-clocks-0.1.5 +++ b/metadata/md5-cache/gnome-extra/gnome-clocks-0.1.5 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libgweather[introspection] dev-python/pycairo >=dev-python/pygo REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://gnome/sources/gnome-clocks/0.1/gnome-clocks-0.1.5.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=db3f8be1be59fbfce5ab7c4af4b32ac5 diff --git a/metadata/md5-cache/gnome-extra/zeitgeist-explorer-0.1.0 b/metadata/md5-cache/gnome-extra/zeitgeist-explorer-0.1.0 index e9c42b9c9b5b..028df7cb9b8d 100644 --- a/metadata/md5-cache/gnome-extra/zeitgeist-explorer-0.1.0 +++ b/metadata/md5-cache/gnome-extra/zeitgeist-explorer-0.1.0 @@ -10,5 +10,5 @@ RDEPEND=gnome-extra/zeitgeist x11-libs/gtk+:3[introspection] python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://launchpad.net/zeitgeist-explorer/0.1/0.1.0/+download/zeitgeist-explorer-0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b7e0999281eedf81e13d31a6fb15de0d diff --git a/metadata/md5-cache/gnome-extra/zeitgeist-explorer-0.2 b/metadata/md5-cache/gnome-extra/zeitgeist-explorer-0.2 index ea4c09ad3ca7..0b1ae4bcb297 100644 --- a/metadata/md5-cache/gnome-extra/zeitgeist-explorer-0.2 +++ b/metadata/md5-cache/gnome-extra/zeitgeist-explorer-0.2 @@ -10,5 +10,5 @@ RDEPEND=gnome-extra/zeitgeist x11-libs/gtk+:3[introspection] python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://launchpad.net/zeitgeist-explorer/0.x/0.2/+download/zeitgeist-explorer-0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d198e9abe5f14e177c1f21be654bf6f8 diff --git a/metadata/md5-cache/java-virtuals/ejb-api-0 b/metadata/md5-cache/java-virtuals/ejb-api-0 new file mode 100644 index 000000000000..6dcc20577e15 --- /dev/null +++ b/metadata/md5-cache/java-virtuals/ejb-api-0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install +DEPEND=>=dev-java/java-config-2.1.6 +DESCRIPTION=Virtual for Enterprise JavaBeans API (javax.ejb) +EAPI=5 +HOMEPAGE=http://www.gentoo.org +IUSE=elibc_FreeBSD +KEYWORDS=~amd64 +LICENSE=public-domain +RDEPEND=dev-java/glassfish-ejb-api:0 >=dev-java/java-config-2.1.6 +SLOT=0 +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 java-virtuals-2 348b5b41a30c0b4eee11e7a9343d53ce multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=c1571fe3bd0f14d6418b3177021692b7 diff --git a/metadata/md5-cache/java-virtuals/interceptor-api-0 b/metadata/md5-cache/java-virtuals/interceptor-api-0 new file mode 100644 index 000000000000..04a641d51601 --- /dev/null +++ b/metadata/md5-cache/java-virtuals/interceptor-api-0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install +DEPEND=>=dev-java/java-config-2.1.6 +DESCRIPTION=Virtual for Interceptor API (javax.interceptor) +EAPI=5 +HOMEPAGE=http://www.gentoo.org +IUSE=elibc_FreeBSD +KEYWORDS=~amd64 +LICENSE=public-domain +RDEPEND=dev-java/glassfish-interceptor-api:0 >=dev-java/java-config-2.1.6 +SLOT=0 +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 java-virtuals-2 348b5b41a30c0b4eee11e7a9343d53ce multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=56cafc37c5d615b7e96fb957ed04598b diff --git a/metadata/md5-cache/java-virtuals/xmlrpc-api-0 b/metadata/md5-cache/java-virtuals/xmlrpc-api-0 new file mode 100644 index 000000000000..ab9fd439eb61 --- /dev/null +++ b/metadata/md5-cache/java-virtuals/xmlrpc-api-0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install +DEPEND=>=dev-java/java-config-2.1.6 +DESCRIPTION=Virtual for XML RPC API (javax.xml.rpc) +EAPI=5 +HOMEPAGE=http://www.gentoo.org +IUSE=elibc_FreeBSD +KEYWORDS=~amd64 +LICENSE=public-domain +RDEPEND=dev-java/glassfish-xmlrpc-api:0 >=dev-java/java-config-2.1.6 +SLOT=0 +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 java-virtuals-2 348b5b41a30c0b4eee11e7a9343d53ce multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=9b271da1c43eb09f30dc3cf73f6691b2 diff --git a/metadata/md5-cache/kde-base/kdepim-runtime-4.11.2 b/metadata/md5-cache/kde-base/kdepim-runtime-4.11.2-r1 similarity index 98% rename from metadata/md5-cache/kde-base/kdepim-runtime-4.11.2 rename to metadata/md5-cache/kde-base/kdepim-runtime-4.11.2-r1 index c6d40aad4dc0..bbad360cc08b 100644 --- a/metadata/md5-cache/kde-base/kdepim-runtime-4.11.2 +++ b/metadata/md5-cache/kde-base/kdepim-runtime-4.11.2-r1 @@ -11,4 +11,4 @@ RESTRICT=test SLOT=4 SRC_URI=mirror://kde/stable/4.11.2/src/kdepim-runtime-4.11.2.tar.xz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 kde4-base 5ba60672833e2a1cafaa86c446439d47 kde4-functions 7fc09e82c0d1735f44aedfa8e5073065 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=7e60b03f222d50bfbefd4cbcd98fcc8a +_md5_=ba679927395bc799caffc3e0fde023ef diff --git a/metadata/md5-cache/kde-base/libplasmaclock-4.11.2 b/metadata/md5-cache/kde-base/libplasmaclock-4.11.2 index 206764c97016..1d62731e730e 100644 --- a/metadata/md5-cache/kde-base/libplasmaclock-4.11.2 +++ b/metadata/md5-cache/kde-base/libplasmaclock-4.11.2 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kephal-4.11.2:4[aqua=] >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.11.2:4[aqua=] +DEPEND=>=kde-base/kephal-4.11.2:4[aqua=] semantic-desktop? ( >=kde-base/kdepimlibs-4.11.2:4[aqua=] ) >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.11.2:4[aqua=] DESCRIPTION=Libraries for KDE Plasma's clocks EAPI=5 HOMEPAGE=http://www.kde.org/ -IUSE=debug aqua +IUSE=debug semantic-desktop aqua KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=>=kde-base/kephal-4.11.2:4[aqua=] >=kde-base/oxygen-icons-4.11.2:4[aqua=] dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.11.2:4[aqua=] +RDEPEND=>=kde-base/kephal-4.11.2:4[aqua=] semantic-desktop? ( >=kde-base/kdepimlibs-4.11.2:4[aqua=] ) >=kde-base/oxygen-icons-4.11.2:4[aqua=] dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.11.2:4[aqua=] SLOT=4 SRC_URI=mirror://kde/stable/4.11.2/src/kde-workspace-4.11.2.tar.xz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 kde4-base 5ba60672833e2a1cafaa86c446439d47 kde4-functions 7fc09e82c0d1735f44aedfa8e5073065 kde4-meta 18edb0c6f073508b5e55c4b75ea1d15a multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=d70a2ef43b7b3006dae487e6503db64f +_md5_=62917656d04dc4f1912dd065a720b16c diff --git a/metadata/md5-cache/kde-base/plasma-workspace-4.11.2-r1 b/metadata/md5-cache/kde-base/plasma-workspace-4.11.2-r1 index 733d0c412f4e..ae963b3c1ce9 100644 --- a/metadata/md5-cache/kde-base/plasma-workspace-4.11.2-r1 +++ b/metadata/md5-cache/kde-base/plasma-workspace-4.11.2-r1 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=dev-libs/libdbusmenu-qt >=dev-qt/qtcore-4.8.4-r3:4 !kde-misc/ktouchpadenabler >=kde-base/kactivities-4.11.2:4[aqua=] >=kde-base/kdelibs-4.11.2:4[aqua=,semantic-desktop?] >=kde-base/kdepimlibs-4.11.2:4[aqua=] >=kde-base/kephal-4.11.2:4[aqua=] >=kde-base/ksysguard-4.11.2:4[aqua=] >=kde-base/libkworkspace-4.11.2:4[aqua=] >=kde-base/libplasmaclock-4.11.2:4[aqua=] >=kde-base/libplasmagenericshell-4.11.2:4[aqua=] >=kde-base/libtaskmanager-4.11.2:4[aqua=] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender gps? ( >=sci-geosciences/gpsd-2.37 ) json? ( dev-libs/qjson ) python? ( python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/PyQt4-4.4.0[X,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=kde-base/pykde4-4.11.2:4[aqua=,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) qalculate? ( sci-libs/libqalculate ) semantic-desktop? ( dev-libs/soprano >=kde-base/nepomuk-core-4.11.2:4[aqua=] ) dev-libs/boost x11-proto/compositeproto x11-proto/damageproto x11-proto/fixesproto x11-proto/renderproto >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) 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-qt/qtdeclarative-4.8.0:4 >=dev-qt/qtopengl-4.8.0:4 dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.11.2:4[aqua=] +DEPEND=dev-libs/libdbusmenu-qt >=dev-qt/qtcore-4.8.4-r3:4 !kde-misc/ktouchpadenabler >=kde-base/kactivities-4.11.2:4[aqua=] >=kde-base/kdelibs-4.11.2:4[aqua=,semantic-desktop?] >=kde-base/kephal-4.11.2:4[aqua=] >=kde-base/ksysguard-4.11.2:4[aqua=] >=kde-base/libkworkspace-4.11.2:4[aqua=] >=kde-base/libplasmaclock-4.11.2:4[aqua=,semantic-desktop?] >=kde-base/libplasmagenericshell-4.11.2:4[aqua=] >=kde-base/libtaskmanager-4.11.2:4[aqua=] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender gps? ( >=sci-geosciences/gpsd-2.37 ) json? ( dev-libs/qjson ) python? ( python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/PyQt4-4.4.0[X,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=kde-base/pykde4-4.11.2:4[aqua=,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) qalculate? ( sci-libs/libqalculate ) semantic-desktop? ( dev-libs/soprano >=kde-base/kdepimlibs-4.11.2:4[aqua=] >=kde-base/nepomuk-core-4.11.2:4[aqua=] ) dev-libs/boost x11-proto/compositeproto x11-proto/damageproto x11-proto/fixesproto x11-proto/renderproto >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) 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-qt/qtdeclarative-4.8.0:4 >=dev-qt/qtopengl-4.8.0:4 dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.11.2:4[aqua=] DESCRIPTION=Plasma: KDE desktop framework EAPI=5 HOMEPAGE=http://www.kde.org/ IUSE=debug gps json python qalculate semantic-desktop python_targets_python2_6 python_targets_python2_7 python_single_target_python2_6 python_single_target_python2_7 +handbook aqua KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=dev-libs/libdbusmenu-qt >=dev-qt/qtcore-4.8.4-r3:4 !kde-misc/ktouchpadenabler >=kde-base/kactivities-4.11.2:4[aqua=] >=kde-base/kdelibs-4.11.2:4[aqua=,semantic-desktop?] >=kde-base/kdepimlibs-4.11.2:4[aqua=] >=kde-base/kephal-4.11.2:4[aqua=] >=kde-base/ksysguard-4.11.2:4[aqua=] >=kde-base/libkworkspace-4.11.2:4[aqua=] >=kde-base/libplasmaclock-4.11.2:4[aqua=] >=kde-base/libplasmagenericshell-4.11.2:4[aqua=] >=kde-base/libtaskmanager-4.11.2:4[aqua=] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender gps? ( >=sci-geosciences/gpsd-2.37 ) json? ( dev-libs/qjson ) python? ( python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/PyQt4-4.4.0[X,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=kde-base/pykde4-4.11.2:4[aqua=,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) qalculate? ( sci-libs/libqalculate ) semantic-desktop? ( dev-libs/soprano >=kde-base/nepomuk-core-4.11.2:4[aqua=] ) >=kde-base/plasma-runtime-4.11.2:4[aqua=] >=kde-base/oxygen-icons-4.11.2:4[aqua=] handbook? ( >=kde-base/kdelibs-4.11.2:4[aqua=,handbook] ) >=dev-qt/qtdeclarative-4.8.0:4 >=dev-qt/qtopengl-4.8.0:4 dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.11.2:4[aqua=] +RDEPEND=dev-libs/libdbusmenu-qt >=dev-qt/qtcore-4.8.4-r3:4 !kde-misc/ktouchpadenabler >=kde-base/kactivities-4.11.2:4[aqua=] >=kde-base/kdelibs-4.11.2:4[aqua=,semantic-desktop?] >=kde-base/kephal-4.11.2:4[aqua=] >=kde-base/ksysguard-4.11.2:4[aqua=] >=kde-base/libkworkspace-4.11.2:4[aqua=] >=kde-base/libplasmaclock-4.11.2:4[aqua=,semantic-desktop?] >=kde-base/libplasmagenericshell-4.11.2:4[aqua=] >=kde-base/libtaskmanager-4.11.2:4[aqua=] x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender gps? ( >=sci-geosciences/gpsd-2.37 ) json? ( dev-libs/qjson ) python? ( python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=dev-python/PyQt4-4.4.0[X,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] >=kde-base/pykde4-4.11.2:4[aqua=,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] ) qalculate? ( sci-libs/libqalculate ) semantic-desktop? ( dev-libs/soprano >=kde-base/kdepimlibs-4.11.2:4[aqua=] >=kde-base/nepomuk-core-4.11.2:4[aqua=] ) >=kde-base/plasma-runtime-4.11.2:4[aqua=] >=kde-base/oxygen-icons-4.11.2:4[aqua=] handbook? ( >=kde-base/kdelibs-4.11.2:4[aqua=,handbook] ) >=dev-qt/qtdeclarative-4.8.0:4 >=dev-qt/qtopengl-4.8.0:4 dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.11.2:4[aqua=] REQUIRED_USE=python? ( python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) ) SLOT=4 SRC_URI=mirror://kde/stable/4.11.2/src/kde-workspace-4.11.2.tar.xz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 kde4-base 5ba60672833e2a1cafaa86c446439d47 kde4-functions 7fc09e82c0d1735f44aedfa8e5073065 kde4-meta 18edb0c6f073508b5e55c4b75ea1d15a multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=6c9825a6c5e10fd6b91e86ffc7c06e9a +_md5_=1aa8965f631e25baa845304958128b1c diff --git a/metadata/md5-cache/kde-misc/akonadi-git-resource-0_p20120222 b/metadata/md5-cache/kde-misc/akonadi-git-resource-0_p20120222 deleted file mode 100644 index 5cdfff972ecd..000000000000 --- a/metadata/md5-cache/kde-misc/akonadi-git-resource-0_p20120222 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kdepimlibs-4.4:4[aqua=,semantic-desktop(+)] =dev-libs/libgit2-0.16* >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] -DESCRIPTION=Git commit integration in Akonadi -EAPI=4 -HOMEPAGE=https://projects.kde.org/projects/playground/pim/akonadi-git-resource -IUSE=debug aqua -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=kde-base/oxygen-icons-4.4:4[aqua=] dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] -SLOT=4 -SRC_URI=http://dev.gentoo.org/~johu/distfiles/akonadi-git-resource-0_p20120222.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 kde4-base 5ba60672833e2a1cafaa86c446439d47 kde4-functions 7fc09e82c0d1735f44aedfa8e5073065 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=4e63ee3a62c5f234de6b8ca68b86af8c diff --git a/metadata/md5-cache/kde-misc/akonadi-git-resource-0_p20130522 b/metadata/md5-cache/kde-misc/akonadi-git-resource-0_p20131023 similarity index 63% rename from metadata/md5-cache/kde-misc/akonadi-git-resource-0_p20130522 rename to metadata/md5-cache/kde-misc/akonadi-git-resource-0_p20131023 index 8a274c62dbf9..c32dc8f22a14 100644 --- a/metadata/md5-cache/kde-misc/akonadi-git-resource-0_p20130522 +++ b/metadata/md5-cache/kde-misc/akonadi-git-resource-0_p20131023 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/kdepimlibs-4.4:4[aqua=,semantic-desktop(+)] =dev-libs/libgit2-0.17* >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] +DEPEND=>=kde-base/kdepimlibs-4.4:4[aqua=] >=dev-libs/libgit2-0.17 >=sys-apps/sed-4 sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] DESCRIPTION=Git commit integration in Akonadi EAPI=5 HOMEPAGE=https://projects.kde.org/projects/playground/pim/akonadi-git-resource @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 RDEPEND=>=kde-base/oxygen-icons-4.4:4[aqua=] dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] SLOT=4 -SRC_URI=http://dev.gentoo.org/~johu/distfiles/akonadi-git-resource-0_p20130522.tar.xz +SRC_URI=http://dev.gentoo.org/~johu/distfiles/akonadi-git-resource-0_p20131023.tar.xz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 kde4-base 5ba60672833e2a1cafaa86c446439d47 kde4-functions 7fc09e82c0d1735f44aedfa8e5073065 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=88229f93c7cf30b522ae1ffcfe091926 +_md5_=e3cafbc27c5fd979266d3722ccf57165 diff --git a/metadata/md5-cache/kde-misc/plasma-nm-0.9.3.1 b/metadata/md5-cache/kde-misc/plasma-nm-0.9.3.1-r1 similarity index 99% rename from metadata/md5-cache/kde-misc/plasma-nm-0.9.3.1 rename to metadata/md5-cache/kde-misc/plasma-nm-0.9.3.1-r1 index 30081a6dc2ef..5ebb6cb37cbf 100644 --- a/metadata/md5-cache/kde-misc/plasma-nm-0.9.3.1 +++ b/metadata/md5-cache/kde-misc/plasma-nm-0.9.3.1-r1 @@ -10,4 +10,4 @@ RDEPEND=net-libs/libnm-qt[modemmanager?] >=net-misc/networkmanager-0.9.8.0 modem SLOT=4 SRC_URI=mirror://kde/unstable/plasma-nm/plasma-nm-0.9.3.1.tar.xz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 kde4-base 5ba60672833e2a1cafaa86c446439d47 kde4-functions 7fc09e82c0d1735f44aedfa8e5073065 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=24ac30d03c5dac15cd746b18b12f2b6a +_md5_=b05f5e08695cb640c7881e490a4496c1 diff --git a/metadata/md5-cache/kde-misc/synaptiks-0.8.1-r4 b/metadata/md5-cache/kde-misc/synaptiks-0.8.1-r4 index de6f1209ea41..ba1f96e559a4 100644 --- a/metadata/md5-cache/kde-misc/synaptiks-0.8.1-r4 +++ b/metadata/md5-cache/kde-misc/synaptiks-0.8.1-r4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/PyQt4-4.7[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=4 SRC_URI=mirror://pypi/s/synaptiks/synaptiks-0.8.1.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 92319f03251f1235bc887cc84e5aef21 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 kde4-base 5ba60672833e2a1cafaa86c446439d47 kde4-functions 7fc09e82c0d1735f44aedfa8e5073065 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 92319f03251f1235bc887cc84e5aef21 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 kde4-base 5ba60672833e2a1cafaa86c446439d47 kde4-functions 7fc09e82c0d1735f44aedfa8e5073065 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=a11812b1b3c37b84d221bb2f6dc1b845 diff --git a/metadata/md5-cache/lxde-base/lxsession-0.4.9.2 b/metadata/md5-cache/lxde-base/lxsession-0.4.9.2 index b5e4d70effd2..19fcec0a01ef 100644 --- a/metadata/md5-cache/lxde-base/lxsession-0.4.9.2 +++ b/metadata/md5-cache/lxde-base/lxsession-0.4.9.2 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure prepare -DEPEND=dev-libs/glib:2 dev-libs/libgee:0 dev-libs/dbus-glib lxde-base/lxde-common x11-libs/gtk+:2 x11-libs/libX11 sys-apps/dbus || ( dev-lang/vala:0.20 dev-lang/vala:0.18 dev-lang/vala:0.16 dev-lang/vala:0.14 ) dev-util/intltool sys-devel/gettext virtual/pkgconfig x11-proto/xproto || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=dev-libs/glib:2 dev-libs/libgee:0 dev-libs/dbus-glib lxde-base/lxde-common sys-auth/polkit x11-libs/gtk+:2 x11-libs/libX11 sys-apps/dbus || ( dev-lang/vala:0.20 dev-lang/vala:0.18 dev-lang/vala:0.16 dev-lang/vala:0.14 ) dev-util/intltool sys-devel/gettext virtual/pkgconfig x11-proto/xproto || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=LXDE session manager (lite version) EAPI=5 HOMEPAGE=http://lxde.sf.net/ IUSE=nls upower KEYWORDS=~alpha ~amd64 ~arm ~ppc ~x86 ~arm-linux ~x86-linux LICENSE=GPL-2 -RDEPEND=dev-libs/glib:2 dev-libs/libgee:0 dev-libs/dbus-glib lxde-base/lxde-common x11-libs/gtk+:2 x11-libs/libX11 sys-apps/dbus !lxde-base/lxsession-edit upower? ( sys-power/upower ) +RDEPEND=dev-libs/glib:2 dev-libs/libgee:0 dev-libs/dbus-glib lxde-base/lxde-common sys-auth/polkit x11-libs/gtk+:2 x11-libs/libX11 sys-apps/dbus !lxde-base/lxsession-edit upower? ( sys-power/upower ) SLOT=0 SRC_URI=mirror://sourceforge/lxde/lxsession-0.4.9.2.tar.gz _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vala b365480bc54c4e356dc1e953da9fe356 -_md5_=fbefab6dfadd04cacca26acfe2e0d3c1 +_md5_=7a9f83a3dc673f52a89a9ca0979ec2e8 diff --git a/metadata/md5-cache/lxde-base/lxsession-0.4.9.2-r1 b/metadata/md5-cache/lxde-base/lxsession-0.4.9.2-r1 new file mode 100644 index 000000000000..2359910154e4 --- /dev/null +++ b/metadata/md5-cache/lxde-base/lxsession-0.4.9.2-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure prepare +DEPEND=dev-libs/glib:2 dev-libs/libgee:0 dev-libs/dbus-glib lxde-base/lxde-common sys-auth/polkit x11-libs/gtk+:2 x11-libs/libX11 sys-apps/dbus || ( dev-lang/vala:0.20 dev-lang/vala:0.18 dev-lang/vala:0.16 dev-lang/vala:0.14 ) dev-util/intltool sys-devel/gettext virtual/pkgconfig x11-proto/xproto || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=LXDE session manager (lite version) +EAPI=5 +HOMEPAGE=http://lxde.sf.net/ +IUSE=nls upower +KEYWORDS=~alpha ~amd64 ~arm ~ppc ~x86 ~arm-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=dev-libs/glib:2 dev-libs/libgee:0 dev-libs/dbus-glib lxde-base/lxde-common sys-auth/polkit x11-libs/gtk+:2 x11-libs/libX11 sys-apps/dbus !lxde-base/lxsession-edit sys-apps/lsb-release upower? ( sys-power/upower ) +SLOT=0 +SRC_URI=mirror://sourceforge/lxde/lxsession-0.4.9.2.tar.gz +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vala b365480bc54c4e356dc1e953da9fe356 +_md5_=c34bcf8d4f19170d0bc28def44c372e0 diff --git a/metadata/md5-cache/mail-client/alot-0.3.5 b/metadata/md5-cache/mail-client/alot-0.3.5 index 4ec686652ad7..eed7e45593f7 100644 --- a/metadata/md5-cache/mail-client/alot-0.3.5 +++ b/metadata/md5-cache/mail-client/alot-0.3.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/configobj-4.6.0[python_targets_python2_7(-)?,-python_single REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/pazz/alot/tarball/0.3.5 -> alot-0.3.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=df2f6230d105383da0ae78cc5ce32d00 diff --git a/metadata/md5-cache/mail-filter/pypolicyd-spf-1.1.2 b/metadata/md5-cache/mail-filter/pypolicyd-spf-1.1.2 index 0da02d202a51..48b61dd61cf0 100644 --- a/metadata/md5-cache/mail-filter/pypolicyd-spf-1.1.2 +++ b/metadata/md5-cache/mail-filter/pypolicyd-spf-1.1.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyspf[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/pypolicyd-spf/1.1/1.1.2/+download/pypolicyd-spf-1.1.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d2bbefe711bffab6df0f0ea5810706f9 diff --git a/metadata/md5-cache/media-gfx/cairosvg-1.0 b/metadata/md5-cache/media-gfx/cairosvg-1.0 index abe5979691be..90172dc52d76 100644 --- a/metadata/md5-cache/media-gfx/cairosvg-1.0 +++ b/metadata/md5-cache/media-gfx/cairosvg-1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/lxml[python_targets_python2_7(-)?,python_targets_python3_2(-) REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/C/CairoSVG/CairoSVG-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f97456ca903cf8ab9ec7b627c31de2ae diff --git a/metadata/md5-cache/media-gfx/mcomix-1.00 b/metadata/md5-cache/media-gfx/mcomix-1.00 index 701c2f256dda..d235703a1da2 100644 --- a/metadata/md5-cache/media-gfx/mcomix-1.00 +++ b/metadata/md5-cache/media-gfx/mcomix-1.00 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/mcomix/mcomix-1.00.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=25d100a9bf7e1b9ec08387d876e8511d diff --git a/metadata/md5-cache/media-gfx/mcomix-1.00-r1 b/metadata/md5-cache/media-gfx/mcomix-1.00-r1 index be2944f2fb80..1ec126f4f6aa 100644 --- a/metadata/md5-cache/media-gfx/mcomix-1.00-r1 +++ b/metadata/md5-cache/media-gfx/mcomix-1.00-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/mcomix/mcomix-1.00.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2fc1e6575ad33e7c50d9cc988b15ca85 diff --git a/metadata/md5-cache/media-gfx/pydot-1.0.28-r1 b/metadata/md5-cache/media-gfx/pydot-1.0.28-r1 index 6469ffda44d3..c2ae7ea06d95 100644 --- a/metadata/md5-cache/media-gfx/pydot-1.0.28-r1 +++ b/metadata/md5-cache/media-gfx/pydot-1.0.28-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyparsing[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://pydot.googlecode.com/files/pydot-1.0.28.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=509a6a3231c0753132ea1f09cf8a14a2 diff --git a/metadata/md5-cache/media-gfx/qrencode-3.4.1 b/metadata/md5-cache/media-gfx/qrencode-3.4.1 deleted file mode 100644 index e5696c9fa4a5..000000000000 --- a/metadata/md5-cache/media-gfx/qrencode-3.4.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=media-libs/libpng virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -DESCRIPTION=C library for encoding data in a QR Code symbol -EAPI=4 -HOMEPAGE=http://fukuchi.org/works/qrencode/ -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 -LICENSE=LGPL-2 -RDEPEND=media-libs/libpng -SLOT=0 -SRC_URI=http://fukuchi.org/works/qrencode/qrencode-3.4.1.tar.bz2 -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=14d4079774a2addf27c25cfe64f10752 diff --git a/metadata/md5-cache/media-gfx/qrencode-3.4.2 b/metadata/md5-cache/media-gfx/qrencode-3.4.2 deleted file mode 100644 index 8895ce864c79..000000000000 --- a/metadata/md5-cache/media-gfx/qrencode-3.4.2 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=media-libs/libpng virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -DESCRIPTION=C library for encoding data in a QR Code symbol -EAPI=4 -HOMEPAGE=http://fukuchi.org/works/qrencode/ -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 -LICENSE=LGPL-2 -RDEPEND=media-libs/libpng -SLOT=0 -SRC_URI=http://fukuchi.org/works/qrencode/qrencode-3.4.2.tar.bz2 -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e81d0679ccf8ef3f0ec25c41bc63e087 diff --git a/metadata/md5-cache/media-gfx/qrencode-3.4.3 b/metadata/md5-cache/media-gfx/qrencode-3.4.3 index d7c430d00cf4..c474d81af88b 100644 --- a/metadata/md5-cache/media-gfx/qrencode-3.4.3 +++ b/metadata/md5-cache/media-gfx/qrencode-3.4.3 @@ -3,10 +3,10 @@ DEPEND=media-libs/libpng virtual/pkgconfig || ( >=sys-devel/automake-1.12:1.12 > DESCRIPTION=C library for encoding data in a QR Code symbol EAPI=4 HOMEPAGE=http://fukuchi.org/works/qrencode/ -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd LICENSE=LGPL-2 RDEPEND=media-libs/libpng SLOT=0 SRC_URI=http://fukuchi.org/works/qrencode/qrencode-3.4.3.tar.bz2 _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9ecc6228870993c397123c93f5100cee +_md5_=990cf148993ca166bac24f56371d3baa diff --git a/metadata/md5-cache/media-gfx/qrencode-python-1.01-r1 b/metadata/md5-cache/media-gfx/qrencode-python-1.01-r1 index b322b30de3a4..42f4f380251d 100644 --- a/metadata/md5-cache/media-gfx/qrencode-python-1.01-r1 +++ b/metadata/md5-cache/media-gfx/qrencode-python-1.01-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-imaging[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/q/qrencode/qrencode-1.01.tar.gz -> qrencode-python-1.01.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4a2531153c74651726e13b30b4f37e19 diff --git a/metadata/md5-cache/media-gfx/svg2rlg-0.3 b/metadata/md5-cache/media-gfx/svg2rlg-0.3 index e93dff338489..ac217cc230ea 100644 --- a/metadata/md5-cache/media-gfx/svg2rlg-0.3 +++ b/metadata/md5-cache/media-gfx/svg2rlg-0.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/svg2rlg/svg2rlg-0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=44ca88941107ce13531b320ddc6d423d diff --git a/metadata/md5-cache/media-gfx/uniconvertor-1.1.5-r1 b/metadata/md5-cache/media-gfx/uniconvertor-1.1.5-r1 index b7d2e8edc3eb..8cc00b7f3242 100644 --- a/metadata/md5-cache/media-gfx/uniconvertor-1.1.5-r1 +++ b/metadata/md5-cache/media-gfx/uniconvertor-1.1.5-r1 @@ -10,5 +10,5 @@ RDEPEND=>=media-libs/sk1libs-0.9.1[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://uniconvertor.googlecode.com/files/uniconvertor-1.1.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cb12b61d77b5944176baac85f5a6a3cc diff --git a/metadata/md5-cache/media-libs/mutagen-1.21 b/metadata/md5-cache/media-libs/mutagen-1.21 index f8a4d8b32e4c..e0f8a396e24f 100644 --- a/metadata/md5-cache/media-libs/mutagen-1.21 +++ b/metadata/md5-cache/media-libs/mutagen-1.21 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://mutagen.googlecode.com/files/mutagen-1.21.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0c2910f06710823fd248f13f0d34a9e0 diff --git a/metadata/md5-cache/media-libs/sk1libs-0.9.1-r2 b/metadata/md5-cache/media-libs/sk1libs-0.9.1-r2 index 4fb7f6389d1e..9daeb9c1dae0 100644 --- a/metadata/md5-cache/media-libs/sk1libs-0.9.1-r2 +++ b/metadata/md5-cache/media-libs/sk1libs-0.9.1-r2 @@ -10,5 +10,5 @@ RDEPEND=media-fonts/ttf-bitstream-vera media-libs/freetype:2 virtual/jpeg >=medi REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://uniconvertor.googlecode.com/files/sk1libs-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6fc5cb4a57c775323c729b2da2f0de86 diff --git a/metadata/md5-cache/media-libs/sk1libs-0.9.1-r3 b/metadata/md5-cache/media-libs/sk1libs-0.9.1-r3 index b322cbf40566..f622b663e2b2 100644 --- a/metadata/md5-cache/media-libs/sk1libs-0.9.1-r3 +++ b/metadata/md5-cache/media-libs/sk1libs-0.9.1-r3 @@ -10,5 +10,5 @@ RDEPEND=media-fonts/ttf-bitstream-vera media-libs/freetype:2 virtual/jpeg >=medi REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://uniconvertor.googlecode.com/files/sk1libs-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=59ba2097a1a5bd6eb233c1c6c762d71c diff --git a/metadata/md5-cache/media-plugins/vdr-epgsearch-1.0.0-r1 b/metadata/md5-cache/media-plugins/vdr-epgsearch-1.0.0-r1 index d5d8c09e645a..d3a57c84806b 100644 --- a/metadata/md5-cache/media-plugins/vdr-epgsearch-1.0.0-r1 +++ b/metadata/md5-cache/media-plugins/vdr-epgsearch-1.0.0-r1 @@ -11,4 +11,4 @@ REQUIRED_USE=pcre? ( !tre ) tre? ( !pcre ) SLOT=0 SRC_URI=http://winni.vdr-developer.org/epgsearch/downloads/vdr-epgsearch-1.0.0.tgz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vdr-plugin-2 47c67847aaf9886da4f952898e277b6d -_md5_=06f26b20ae6ec2b1dbbe6da50213c2fe +_md5_=9e830c9205b6d33c88183a62d97bc67b diff --git a/metadata/md5-cache/media-plugins/vdr-extrecmenu-1.2.2-r2 b/metadata/md5-cache/media-plugins/vdr-extrecmenu-1.2.2-r2 new file mode 100644 index 000000000000..5f8edd785d4b --- /dev/null +++ b/metadata/md5-cache/media-plugins/vdr-extrecmenu-1.2.2-r2 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile config configure install postinst postrm prepare setup unpack +DEPEND=>=media-video/vdr-1.6.0 >=media-tv/gentoo-vdr-scripts-0.4.2 virtual/linuxtv-dvb-headers +DESCRIPTION=Video Disk Recorder - Extended recordings menu Plugin +EAPI=5 +HOMEPAGE=http://projects.vdr-developer.org/projects/show/plg-extrecmenu +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=>=media-video/vdr-1.6.0 >=media-tv/gentoo-vdr-scripts-0.4.2 >=app-admin/eselect-vdr-0.0.2 +SLOT=0 +SRC_URI=mirror://vdr-developerorg/936/vdr-extrecmenu-1.2.2.tgz mirror://gentoo/dvdarchive-2.3-beta.sh.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vdr-plugin-2 47c67847aaf9886da4f952898e277b6d +_md5_=736b3dfb943f449466a3ba4adc96bbd9 diff --git a/metadata/md5-cache/media-plugins/vdr-live-0.3.0_p20130504 b/metadata/md5-cache/media-plugins/vdr-live-0.3.0_p20130504 index 08ab5ad76465..37f2fb3d7047 100644 --- a/metadata/md5-cache/media-plugins/vdr-live-0.3.0_p20130504 +++ b/metadata/md5-cache/media-plugins/vdr-live-0.3.0_p20130504 @@ -10,4 +10,4 @@ RDEPEND=media-video/vdr >=dev-libs/tntnet-2.0[ssl=,sdk] >=dev-libs/cxxtools-2.0 SLOT=0 SRC_URI=mirror://gentoo/vdr-live-0.3.0_p20130504.tar.bz2 http://dev.gentoo.org/~hd_brummy/distfiles/vdr-live-0.3.0_p20130504.tar.bz2 _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 ssl-cert 0b45da48a22fda62c57c1809b8b55315 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vdr-plugin-2 47c67847aaf9886da4f952898e277b6d -_md5_=ed9af41fb8f892c57c1083c4c72aea41 +_md5_=ccc835923e98cc95dafc773935f5bb91 diff --git a/metadata/md5-cache/media-radio/radiotray-0.7.3-r2 b/metadata/md5-cache/media-radio/radiotray-0.7.3-r2 index 221c4fcfce01..c2b177b69cc4 100644 --- a/metadata/md5-cache/media-radio/radiotray-0.7.3-r2 +++ b/metadata/md5-cache/media-radio/radiotray-0.7.3-r2 @@ -10,5 +10,5 @@ RDEPEND=sys-apps/dbus[X] dev-python/dbus-python[python_targets_python2_6(-)?,pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/radiotray/radiotray-0.7.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9c8676d03d16a583ec225f249fa25bbc diff --git a/metadata/md5-cache/media-radio/radiotray-9999 b/metadata/md5-cache/media-radio/radiotray-9999 index 3f2222128618..e39c6946ba85 100644 --- a/metadata/md5-cache/media-radio/radiotray-9999 +++ b/metadata/md5-cache/media-radio/radiotray-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-1+ RDEPEND=sys-apps/dbus[X] dev-python/gst-python:0.10[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygtk[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyxdg[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygobject:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/notify-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] media-libs/gst-plugins-good:0.10 media-libs/gst-plugins-ugly:0.10 media-plugins/gst-plugins-alsa:0.10 media-plugins/gst-plugins-libmms:0.10 media-plugins/gst-plugins-ffmpeg:0.10 media-plugins/gst-plugins-mad:0.10 media-plugins/gst-plugins-ogg:0.10 media-plugins/gst-plugins-soup:0.10 media-plugins/gst-plugins-vorbis:0.10 python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b1c3e00572fc66625c93ff66ededb05e diff --git a/metadata/md5-cache/media-radio/wspr-2.00-r2 b/metadata/md5-cache/media-radio/wspr-2.00-r2 index 0545394ced62..45711dbccfd0 100644 --- a/metadata/md5-cache/media-radio/wspr-2.00-r2 +++ b/metadata/md5-cache/media-radio/wspr-2.00-r2 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-imaging[tk,python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.physics.princeton.edu/pulsar/K1JT/wspr-2.00.r1714.tgz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c7c0a656f8abb74c7d8989f7afe60f6b diff --git a/metadata/md5-cache/media-sound/beets-1.1.0 b/metadata/md5-cache/media-sound/beets-1.1.0 index 4c29c59e7bb2..2d6d20f7a2ff 100644 --- a/metadata/md5-cache/media-sound/beets-1.1.0 +++ b/metadata/md5-cache/media-sound/beets-1.1.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/munkres[python_targets_python2_7(-)?,-python_single_target_py REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://beets.googlecode.com/files/beets-1.1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ed4d5e6387ad24d07624e9ebeb0e6068 diff --git a/metadata/md5-cache/media-sound/frescobaldi-2.0.10 b/metadata/md5-cache/media-sound/frescobaldi-2.0.10 index d925ea5b563a..9461476db015 100644 --- a/metadata/md5-cache/media-sound/frescobaldi-2.0.10 +++ b/metadata/md5-cache/media-sound/frescobaldi-2.0.10 @@ -10,5 +10,5 @@ RDEPEND=dev-python/python-poppler-qt4[python_targets_python2_6(-)?,python_target REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://lilykde.googlecode.com/files/frescobaldi-2.0.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8e12005d7462b2d79290f8680e1f841e diff --git a/metadata/md5-cache/media-sound/frescobaldi-2.0.11 b/metadata/md5-cache/media-sound/frescobaldi-2.0.11 index 189d041b8bdb..313ad63ee015 100644 --- a/metadata/md5-cache/media-sound/frescobaldi-2.0.11 +++ b/metadata/md5-cache/media-sound/frescobaldi-2.0.11 @@ -10,5 +10,5 @@ RDEPEND=dev-python/python-poppler-qt4[python_targets_python2_6(-)?,python_target REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/wbsoft/frescobaldi/releases/download/v2.0.11/frescobaldi-2.0.11.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0bbbb917a847ddaeee40ee7c27c1f802 diff --git a/metadata/md5-cache/media-sound/frescobaldi-2.0.9 b/metadata/md5-cache/media-sound/frescobaldi-2.0.9 index 8ac29e0af049..d910603afa0c 100644 --- a/metadata/md5-cache/media-sound/frescobaldi-2.0.9 +++ b/metadata/md5-cache/media-sound/frescobaldi-2.0.9 @@ -10,5 +10,5 @@ RDEPEND=dev-python/python-poppler-qt4[python_targets_python2_6(-)?,python_target REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://lilykde.googlecode.com/files/frescobaldi-2.0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=da89c7b1bd6cd256172a45fc7b3cd57c diff --git a/metadata/md5-cache/media-sound/pithos-20130710 b/metadata/md5-cache/media-sound/pithos-20130710 index 1a5b5fe5f7cc..fa307bed59eb 100644 --- a/metadata/md5-cache/media-sound/pithos-20130710 +++ b/metadata/md5-cache/media-sound/pithos-20130710 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyxdg[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/kevinmehall/pithos/archive/759fd22b993b063527866dedfb335a88d0c71766.tar.gz -> pithos-20130710.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bb4a1d280951a3aab6164dd873177b6b diff --git a/metadata/md5-cache/media-sound/pithos-20130808 b/metadata/md5-cache/media-sound/pithos-20130808 index 8d6e66c62bea..a6f56c4586ae 100644 --- a/metadata/md5-cache/media-sound/pithos-20130808 +++ b/metadata/md5-cache/media-sound/pithos-20130808 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyxdg[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/kevinmehall/pithos/archive/6c9a9ff1660bb8c35b846cb5763f8a131228b6d4.tar.gz -> pithos-20130808.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f927f42db979dda432f9f1318e2a7a5f diff --git a/metadata/md5-cache/media-sound/pithos-99999999 b/metadata/md5-cache/media-sound/pithos-99999999 index c13ee0de641d..4c9861b76c65 100644 --- a/metadata/md5-cache/media-sound/pithos-99999999 +++ b/metadata/md5-cache/media-sound/pithos-99999999 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/pyxdg[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pygobject:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/notify-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pygtk[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/gst-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/dbus-python[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-plugins/gst-plugins-meta[aac,http,mp3] gnome? ( gnome-base/gnome-settings-daemon ) !gnome? ( dev-libs/keybinder[python] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d80ed0659e1e093cf043bb3171b35b94 diff --git a/metadata/md5-cache/media-sound/puddletag-1.0.1-r1 b/metadata/md5-cache/media-sound/puddletag-1.0.1-r1 index 0de380917f73..7c7305dd6a60 100644 --- a/metadata/md5-cache/media-sound/puddletag-1.0.1-r1 +++ b/metadata/md5-cache/media-sound/puddletag-1.0.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/PyQt4-4.9.6-r2[python_targets_python2_7(-)?,-python_single_ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/puddletag/puddletag-1.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3cf49fd3855777e43f490c9d6e2ea70a diff --git a/metadata/md5-cache/media-sound/quodlibet-2.5 b/metadata/md5-cache/media-sound/quodlibet-2.5 index eeca806bf246..4f674e4427fa 100644 --- a/metadata/md5-cache/media-sound/quodlibet-2.5 +++ b/metadata/md5-cache/media-sound/quodlibet-2.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pygtk-2.24 dev-libs/keybinder:0[python] dev-python/feedpars REQUIRED_USE=ipod? ( dbus ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://quodlibet.googlecode.com/files/quodlibet-2.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c292358bd2dab4d9ee57219a856e14c7 diff --git a/metadata/md5-cache/media-sound/rgain-1.2.1 b/metadata/md5-cache/media-sound/rgain-1.2.1 index 6ab7b8e298e8..100862930eb2 100644 --- a/metadata/md5-cache/media-sound/rgain-1.2.1 +++ b/metadata/md5-cache/media-sound/rgain-1.2.1 @@ -10,5 +10,5 @@ RDEPEND=media-libs/mutagen dev-python/pygobject:3[python_targets_python2_6(-)?,p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/rgain/rgain-1.2.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3039b63b9f7c9b96d0e275aeb53c8a7e diff --git a/metadata/md5-cache/media-sound/tomahawk-9999 b/metadata/md5-cache/media-sound/tomahawk-9999 index 50388eb790aa..fef30670099c 100644 --- a/metadata/md5-cache/media-sound/tomahawk-9999 +++ b/metadata/md5-cache/media-sound/tomahawk-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=app-crypt/qca:2 >=dev-cpp/clucene-2.3.3.4 >=dev-libs/boost-1.41 >=dev-libs/libattica-0.4.0 dev-libs/qjson dev-libs/quazip dev-libs/qtkeychain[qt5?] >=media-libs/libechonest-2.1.0 >=media-libs/liblastfm-1.0.1 >=media-libs/phonon-4.5.0 >=media-libs/taglib-1.6.0 x11-libs/libX11 jabber? ( >=net-libs/jreen-1.1.1 ) !qt5? ( dev-qt/designer:4 dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsql:4[sqlite] dev-qt/qtsvg:4 dev-qt/qtwebkit:4 ) qt5? ( dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtsvg:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 ) telepathy? ( net-libs/telepathy-qt ) twitter? ( net-libs/qtweetlib ) >=sys-apps/sed-4 dev-vcs/git sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) 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.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] ) +DEPEND=app-crypt/qca:2 >=dev-cpp/clucene-2.3.3.4 >=dev-libs/boost-1.41 >=dev-libs/libattica-0.4.0 dev-libs/qjson dev-libs/quazip dev-libs/qtkeychain >=media-libs/libechonest-2.1.0 >=media-libs/liblastfm-1.0.1 >=media-libs/phonon-4.5.0 >=media-libs/taglib-1.6.0 x11-libs/libX11 jabber? ( >=net-libs/jreen-1.1.1 ) !qt5? ( dev-qt/designer:4 dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsql:4[sqlite] dev-qt/qtsvg:4 dev-qt/qtwebkit:4 ) qt5? ( dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtsvg:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 ) telepathy? ( net-libs/telepathy-qt ) twitter? ( net-libs/qtweetlib ) >=sys-apps/sed-4 dev-vcs/git sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) 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.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] ) DESCRIPTION=Qt playdar social music player EAPI=5 HOMEPAGE=http://tomahawk-player.org/ IUSE=debug jabber kde qt5 telepathy twitter aqua kde LICENSE=GPL-3 BSD -RDEPEND=app-crypt/qca:2 >=dev-cpp/clucene-2.3.3.4 >=dev-libs/boost-1.41 >=dev-libs/libattica-0.4.0 dev-libs/qjson dev-libs/quazip dev-libs/qtkeychain[qt5?] >=media-libs/libechonest-2.1.0 >=media-libs/liblastfm-1.0.1 >=media-libs/phonon-4.5.0 >=media-libs/taglib-1.6.0 x11-libs/libX11 jabber? ( >=net-libs/jreen-1.1.1 ) !qt5? ( dev-qt/designer:4 dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsql:4[sqlite] dev-qt/qtsvg:4 dev-qt/qtwebkit:4 ) qt5? ( dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtsvg:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 ) telepathy? ( net-libs/telepathy-qt ) twitter? ( net-libs/qtweetlib ) app-crypt/qca-ossl kde? ( >=kde-base/oxygen-icons-4.4:4[aqua=] ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] ) +RDEPEND=app-crypt/qca:2 >=dev-cpp/clucene-2.3.3.4 >=dev-libs/boost-1.41 >=dev-libs/libattica-0.4.0 dev-libs/qjson dev-libs/quazip dev-libs/qtkeychain >=media-libs/libechonest-2.1.0 >=media-libs/liblastfm-1.0.1 >=media-libs/phonon-4.5.0 >=media-libs/taglib-1.6.0 x11-libs/libX11 jabber? ( >=net-libs/jreen-1.1.1 ) !qt5? ( dev-qt/designer:4 dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 dev-qt/qtsql:4[sqlite] dev-qt/qtsvg:4 dev-qt/qtwebkit:4 ) qt5? ( dev-qt/designer:5 dev-qt/qtcore:5 dev-qt/qtsvg:5 dev-qt/qtwebkit:5 dev-qt/qtwidgets:5 ) telepathy? ( net-libs/telepathy-qt ) twitter? ( net-libs/qtweetlib ) app-crypt/qca-ossl kde? ( >=kde-base/oxygen-icons-4.4:4[aqua=] ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.8.0:4[accessibility] >=dev-qt/qtcore-4.8.0:4[qt3support,ssl] >=dev-qt/qtdbus-4.8.0:4 || ( ( >=dev-qt/qtgui-4.8.5:4[accessibility,dbus(+)] dev-qt/designer:4[-phonon] ) =dev-qt/qtscript-4.8.0:4 >=dev-qt/qtsql-4.8.0:4[qt3support] >=dev-qt/qtsvg-4.8.0:4 >=dev-qt/qttest-4.8.0:4 >=dev-qt/qtwebkit-4.8.0:4 !aqua? ( x11-libs/libXext x11-libs/libXt x11-libs/libXxf86vm x11-libs/libXcomposite x11-libs/libxkbfile ) >=kde-base/kdelibs-4.4:4[aqua=] ) REQUIRED_USE=telepathy? ( kde ) SLOT=0 _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 kde4-base 5ba60672833e2a1cafaa86c446439d47 kde4-functions 7fc09e82c0d1735f44aedfa8e5073065 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=bcdf39b90c910699785b18120661bb49 +_md5_=5c8411a000d980bdb4ff51326516cef1 diff --git a/metadata/md5-cache/media-sound/volti-0.2.3-r1 b/metadata/md5-cache/media-sound/volti-0.2.3-r1 index cc95145d939c..c71b3ee705b0 100644 --- a/metadata/md5-cache/media-sound/volti-0.2.3-r1 +++ b/metadata/md5-cache/media-sound/volti-0.2.3-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pygtk-2.16 >=dev-python/pyalsaaudio-0.7-r1 dev-python/dbus- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://volti.googlecode.com/files/volti-0.2.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c45d78787b87eb662a7656297cecb3be diff --git a/metadata/md5-cache/media-tv/mythtv-0.27_p20130924 b/metadata/md5-cache/media-tv/mythtv-0.27_p20130924 index ad7310c6c982..c29cdbbb5302 100644 --- a/metadata/md5-cache/media-tv/mythtv-0.27_p20130924 +++ b/metadata/md5-cache/media-tv/mythtv-0.27_p20130924 @@ -1,5 +1,5 @@ DEFINED_PHASES=config configure info install postinst postrm preinst prepare setup -DEPEND=>=media-libs/freetype-2.0:= sys-libs/zlib:= x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXv:= x11-libs/libXrandr:= x11-libs/libXxf86vm:= >=dev-qt/qtcore-4.7.2:4= >=dev-qt/qtdbus-4.7.2:4= >=dev-qt/qtgui-4.7.2:4= >=dev-qt/qtscript-4.7.2:4= >=dev-qt/qtsql-4.7.2:4=[mysql] >=dev-qt/qtopengl-4.7.2:4=[egl?] >=dev-qt/qtwebkit-4.7.2:4= x11-misc/wmctrl:= virtual/mysql:= virtual/opengl:= alsa? ( >=media-libs/alsa-lib-1.0.24:= ) bluray? ( dev-libs/libcdio:= media-libs/libbluray:= ) cec? ( dev-libs/libcec:= ) dvb? ( media-libs/libdvb:= virtual/linuxtv-dvb-headers:= ) dvd? ( dev-libs/libcdio:= ) egl? ( media-libs/mesa:=[egl] ) fftw? ( sci-libs/fftw:3.0= ) hls? ( media-libs/faac:= media-libs/libvpx:= >=media-libs/x264-0.0.20111220:= >=media-sound/lame-3.93.1 ) ieee1394? ( >=sys-libs/libraw1394-1.2.0:= >=sys-libs/libavc1394-0.5.3:= >=media-libs/libiec61883-1.0.0:= ) jack? ( media-sound/jack-audio-connection-kit ) lcd? ( app-misc/lcdproc ) libass? ( >=media-libs/libass-0.9.11:= ) lirc? ( app-misc/lirc ) perl? ( dev-perl/DBD-mysql dev-perl/Net-UPnP dev-perl/LWP-Protocol-https dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 >=dev-perl/libwww-perl-5 ) pulseaudio? ( media-sound/pulseaudio ) python? ( dev-python/mysql-python dev-python/lxml dev-python/urlgrabber ) raop? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) theora? ( media-libs/libtheora:= media-libs/libogg:= ) vaapi? ( x11-libs/libva:= ) vdpau? ( x11-libs/libvdpau:= ) vorbis? ( >=media-libs/libvorbis-1.0:= media-libs/libogg:= ) xml? ( >=dev-libs/libxml2-2.6.0:= ) xvid? ( >=media-libs/xvid-1.1.0:= ) !media-tv/mythtv-bindings !x11-themes/mythtv-themes media-libs/taglib:= dev-libs/glib:= dev-lang/yasm x11-proto/xineramaproto x11-proto/xf86vidmodeproto python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) +DEPEND=>=media-libs/freetype-2.0:= sys-libs/zlib:= x11-libs/libX11:= x11-libs/libXext:= x11-libs/libXinerama:= x11-libs/libXv:= x11-libs/libXrandr:= x11-libs/libXxf86vm:= >=dev-qt/qtcore-4.7.2:4= >=dev-qt/qtdbus-4.7.2:4= >=dev-qt/qtgui-4.7.2:4= >=dev-qt/qtscript-4.7.2:4= >=dev-qt/qtsql-4.7.2:4=[mysql] >=dev-qt/qtopengl-4.7.2:4=[egl?] >=dev-qt/qtwebkit-4.7.2:4= x11-misc/wmctrl:= virtual/mysql:= virtual/opengl:= alsa? ( >=media-libs/alsa-lib-1.0.24:= ) bluray? ( dev-libs/libcdio:= media-libs/libbluray:= ) cec? ( dev-libs/libcec:= ) dvb? ( media-libs/libdvb:= virtual/linuxtv-dvb-headers:= ) dvd? ( dev-libs/libcdio:= ) egl? ( media-libs/mesa:=[egl] ) fftw? ( sci-libs/fftw:3.0= ) hls? ( media-libs/faac:= media-libs/libvpx:= >=media-libs/x264-0.0.20111220:= >=media-sound/lame-3.93.1 ) ieee1394? ( >=sys-libs/libraw1394-1.2.0:= >=sys-libs/libavc1394-0.5.3:= >=media-libs/libiec61883-1.0.0:= ) jack? ( media-sound/jack-audio-connection-kit ) lcd? ( app-misc/lcdproc ) libass? ( >=media-libs/libass-0.9.11:= ) lirc? ( app-misc/lirc ) perl? ( dev-perl/DBD-mysql dev-perl/Net-UPnP dev-perl/LWP-Protocol-https dev-perl/HTTP-Message dev-perl/IO-Socket-INET6 >=dev-perl/libwww-perl-5 ) pulseaudio? ( media-sound/pulseaudio ) python? ( dev-python/mysql-python dev-python/lxml dev-python/urlgrabber ) raop? ( dev-libs/openssl:= net-dns/avahi[mdnsresponder-compat] ) theora? ( media-libs/libtheora:= media-libs/libogg:= ) vaapi? ( x11-libs/libva:= ) vdpau? ( x11-libs/libvdpau:= ) vorbis? ( >=media-libs/libvorbis-1.0:= media-libs/libogg:= ) xml? ( >=dev-libs/libxml2-2.6.0:= ) xvid? ( >=media-libs/xvid-1.1.0:= ) !media-tv/mythtv-bindings !x11-themes/mythtv-themes media-libs/taglib:= dev-libs/glib:= dev-lang/yasm x11-proto/xineramaproto x11-proto/xf86vidmodeproto python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) ) virtual/pkgconfig DESCRIPTION=Homebrew PVR project EAPI=5 HOMEPAGE=http://www.mythtv.org @@ -10,5 +10,5 @@ RDEPEND=>=media-libs/freetype-2.0:= sys-libs/zlib:= x11-libs/libX11:= x11-libs/l REQUIRED_USE=bluray? ( xml ) theora? ( vorbis ) SLOT=0 SRC_URI=https://github.com/MythTV/mythtv/archive/v0.27.tar.gz -> mythtv-0.27.tar.gz http://dev.gentoo.org/~rich0/distfiles/mythtv-0.27-d9561055abeec11fba234c9bdfbde5e79e695803.tar.xz -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 python 305197b0aa1194fa3ef67ca21f6faa7e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=5f4f045f7cc67db39cda187cdb264dcf +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 python 305197b0aa1194fa3ef67ca21f6faa7e systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=e036ff4868bce34388f6f637df43af83 diff --git a/metadata/md5-cache/media-video/arista-0.9.7 b/metadata/md5-cache/media-video/arista-0.9.7 index b25e3fd2ead4..7d91f7575b34 100644 --- a/metadata/md5-cache/media-video/arista-0.9.7 +++ b/metadata/md5-cache/media-video/arista-0.9.7 @@ -10,5 +10,5 @@ RDEPEND=>=x11-libs/gtk+-2.16:2 >=dev-python/pygtk-2.16:2[python_targets_python2_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://programmer-art.org/media/releases/arista-transcoder/arista-0.9.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e53fcbcab5ccea64e2479cf5a7c2a7d4 diff --git a/metadata/md5-cache/media-video/photofilmstrip-1.9.91-r1 b/metadata/md5-cache/media-video/photofilmstrip-1.9.91-r1 index 776df003aa39..807b4579c39c 100644 --- a/metadata/md5-cache/media-video/photofilmstrip-1.9.91-r1 +++ b/metadata/md5-cache/media-video/photofilmstrip-1.9.91-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/wxpython:2.8[cairo?,python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/photostoryx/photofilmstrip/1.9.91-unstable/photofilmstrip-1.9.91.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9b4b3064641d347077092c098c0f9490 diff --git a/metadata/md5-cache/media-video/subliminal-0.6.3 b/metadata/md5-cache/media-video/subliminal-0.6.3 index 38f4fc74c2d0..3f282d324378 100644 --- a/metadata/md5-cache/media-video/subliminal-0.6.3 +++ b/metadata/md5-cache/media-video/subliminal-0.6.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/beautifulsoup:4[python_targets_python2_6(-)?,python_targets_p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/subliminal/subliminal-0.6.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=37b795f8d1332445142801b5a8e664f9 diff --git a/metadata/md5-cache/media-video/subliminal-9999 b/metadata/md5-cache/media-video/subliminal-9999 index f3dcc26a74dd..3dacb459e407 100644 --- a/metadata/md5-cache/media-video/subliminal-9999 +++ b/metadata/md5-cache/media-video/subliminal-9999 @@ -8,5 +8,5 @@ LICENSE=LGPL-3 RDEPEND=dev-python/beautifulsoup:4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/guessit-0.4.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ~dev-python/requests-0.14.2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/enzyme-0.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/html5lib[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c026fbc5030adcee0d9b120a7dabd71f diff --git a/metadata/md5-cache/net-analyzer/fail2ban-0.8.10-r2 b/metadata/md5-cache/net-analyzer/fail2ban-0.8.10-r2 index f80e7eae2f17..30ce8b14152e 100644 --- a/metadata/md5-cache/net-analyzer/fail2ban-0.8.10-r2 +++ b/metadata/md5-cache/net-analyzer/fail2ban-0.8.10-r2 @@ -10,5 +10,5 @@ RDEPEND=net-misc/whois virtual/mta virtual/logger net-firewall/iptables selinux? REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=https://github.com/fail2ban/fail2ban/tarball/0.8.10 -> fail2ban-0.8.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=9fdd7e0636cb57c3e1440e4d23ca56e5 diff --git a/metadata/md5-cache/net-analyzer/linkchecker-8.3 b/metadata/md5-cache/net-analyzer/linkchecker-8.3 index 8433a1c16cb1..f46a8dd26f98 100644 --- a/metadata/md5-cache/net-analyzer/linkchecker-8.3 +++ b/metadata/md5-cache/net-analyzer/linkchecker-8.3 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://github/downloads/wummel/linkchecker/LinkChecker-8.3.tar.xz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2e873bedc6d858994b17382d416dea79 diff --git a/metadata/md5-cache/net-analyzer/namebench-1.3.1-r1 b/metadata/md5-cache/net-analyzer/namebench-1.3.1-r1 index 4950781533cf..ee856d11b8aa 100644 --- a/metadata/md5-cache/net-analyzer/namebench-1.3.1-r1 +++ b/metadata/md5-cache/net-analyzer/namebench-1.3.1-r1 @@ -10,5 +10,5 @@ RDEPEND=X? ( python_targets_python2_6? ( dev-lang/python:2.6[tk] ) python_target REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://namebench.googlecode.com/files/namebench-1.3.1-source.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=46b533bc27578d0f1a45e4d3a4f32777 diff --git a/metadata/md5-cache/net-analyzer/net-snmp-5.7.2 b/metadata/md5-cache/net-analyzer/net-snmp-5.7.2 index e8779f7bfd52..c6c79889af6c 100644 --- a/metadata/md5-cache/net-analyzer/net-snmp-5.7.2 +++ b/metadata/md5-cache/net-analyzer/net-snmp-5.7.2 @@ -11,5 +11,5 @@ REQUIRED_USE=rpm? ( bzip2 zlib ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/net-snmp/net-snmp-5.7.2.tar.gz http://dev.gentoo.org/~flameeyes/net-snmp/net-snmp-5.7.2-patches-1.tar.xz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b4acfda42592feea82263958ce0f2735 diff --git a/metadata/md5-cache/net-analyzer/pypacker-2.0 b/metadata/md5-cache/net-analyzer/pypacker-2.0 index 7bf76f7a2989..12cae7013879 100644 --- a/metadata/md5-cache/net-analyzer/pypacker-2.0 +++ b/metadata/md5-cache/net-analyzer/pypacker-2.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targ REQUIRED_USE=|| ( python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/mike01/pypacker/tarball/v2.0 -> pypacker-2.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=530753611948e1059bd408cfc0407d85 diff --git a/metadata/md5-cache/net-analyzer/pypacker-2.4 b/metadata/md5-cache/net-analyzer/pypacker-2.4 index 740d9e4a9bcb..33f549ca71b4 100644 --- a/metadata/md5-cache/net-analyzer/pypacker-2.4 +++ b/metadata/md5-cache/net-analyzer/pypacker-2.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targ REQUIRED_USE=|| ( python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/mike01/pypacker/archive/2.4.tar.gz -> pypacker-2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=e3b4a5650cdd86670d756ae24cd41d1a diff --git a/metadata/md5-cache/net-analyzer/rrdtool-1.4.7-r2 b/metadata/md5-cache/net-analyzer/rrdtool-1.4.7-r2 index 2cc2c2f189e3..c00021dc4d8c 100644 --- a/metadata/md5-cache/net-analyzer/rrdtool-1.4.7-r2 +++ b/metadata/md5-cache/net-analyzer/rrdtool-1.4.7-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.28.7[static-libs(+)?] >=dev-libs/libxml2-2.7.8[static- REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.7.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=91125145d7bf38845d8ee4d5caa05ac3 diff --git a/metadata/md5-cache/net-analyzer/rrdtool-1.4.8 b/metadata/md5-cache/net-analyzer/rrdtool-1.4.8 index 28139a8b349e..0fc5b549426d 100644 --- a/metadata/md5-cache/net-analyzer/rrdtool-1.4.8 +++ b/metadata/md5-cache/net-analyzer/rrdtool-1.4.8 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.28.7[static-libs(+)?] >=dev-libs/libxml2-2.7.8[static- REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.8.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=430538b7393251976b139d8a9dba600b diff --git a/metadata/md5-cache/net-dns/pdnsd-1.2.9a b/metadata/md5-cache/net-dns/pdnsd-1.2.9a index 4cfcb3601ef0..6bb48948c4b3 100644 --- a/metadata/md5-cache/net-dns/pdnsd-1.2.9a +++ b/metadata/md5-cache/net-dns/pdnsd-1.2.9a @@ -4,10 +4,10 @@ DESCRIPTION=Proxy DNS server with permanent caching EAPI=5 HOMEPAGE=http://members.home.nl/p.a.rombouts/pdnsd/ IUSE=debug ipv6 isdn +urandom test -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~s390 ~sparc ~x86 +KEYWORDS=~alpha ~amd64 arm ~ia64 ~ppc ~s390 ~sparc ~x86 LICENSE=GPL-3 RDEPEND=sys-apps/openrc SLOT=0 SRC_URI=http://members.home.nl/p.a.rombouts/pdnsd/releases/pdnsd-1.2.9a-par.tar.gz _eclasses_=user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1317606c474d27647b1216e9e9a0eb95 +_md5_=a55da308e9851cab06a38e6ca8daa0c7 diff --git a/metadata/md5-cache/net-fs/autofs-5.0.8 b/metadata/md5-cache/net-fs/autofs-5.0.8 index 78e93359ee11..2d687d3cfacd 100644 --- a/metadata/md5-cache/net-fs/autofs-5.0.8 +++ b/metadata/md5-cache/net-fs/autofs-5.0.8 @@ -11,4 +11,4 @@ REQUIRED_USE=sasl? ( ldap ) SLOT=0 SRC_URI=mirror://kernel/linux/daemons/autofs/v5/autofs-5.0.8.tar.bz2 _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=a57cabb15e8fe0e1474e5983e8bc4994 +_md5_=04e5c882b29b27de3cbf3a25e2890987 diff --git a/metadata/md5-cache/net-fs/nfstest-1.0.2 b/metadata/md5-cache/net-fs/nfstest-1.0.2 index 8eab31b609f5..11c5505bfd62 100644 --- a/metadata/md5-cache/net-fs/nfstest-1.0.2 +++ b/metadata/md5-cache/net-fs/nfstest-1.0.2 @@ -10,5 +10,5 @@ RDEPEND=net-fs/nfs-utils python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3: REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.linux-nfs.org/~mora/nfstest/releases/NFStest-1.0.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6535b82e1e9a80299d717bb742223cd8 diff --git a/metadata/md5-cache/net-fs/tahoe-lafs-1.10.0-r2 b/metadata/md5-cache/net-fs/tahoe-lafs-1.10.0-r2 index 28dd8799839d..f50494c07fab 100644 --- a/metadata/md5-cache/net-fs/tahoe-lafs-1.10.0-r2 +++ b/metadata/md5-cache/net-fs/tahoe-lafs-1.10.0-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/foolscap-0.6.1[python_targets_python2_6(-)?,python_targets_ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://tahoe-lafs.org/source/tahoe-lafs/releases/allmydata-tahoe-1.10.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=67d5b316fefdf359b890927c50d2fa23 diff --git a/metadata/md5-cache/net-im/err-1.7.1 b/metadata/md5-cache/net-im/err-1.7.1 index 6045542fcd95..7270e682a594 100644 --- a/metadata/md5-cache/net-im/err-1.7.1 +++ b/metadata/md5-cache/net-im/err-1.7.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/e/err/err-1.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ac7f889730d2647754b5bb348e0330a1 diff --git a/metadata/md5-cache/net-im/turses-0.2.13-r1 b/metadata/md5-cache/net-im/turses-0.2.13-r1 index b8561c49023d..4ef5a08e4dd1 100644 --- a/metadata/md5-cache/net-im/turses-0.2.13-r1 +++ b/metadata/md5-cache/net-im/turses-0.2.13-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/oauth2[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/alejandrogomez/turses/archive/v0.2.13.tar.gz -> turses-0.2.13-r1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5fa3bfbdd38027fee5942dd670520259 diff --git a/metadata/md5-cache/net-irc/quassel-0.8.0 b/metadata/md5-cache/net-irc/quassel-0.8.0 deleted file mode 100644 index a8cfcde1ba3a..000000000000 --- a/metadata/md5-cache/net-irc/quassel-0.8.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst prepare setup test -DEPEND=>=dev-qt/qtcore-4.6.0:4[ssl?] monolithic? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) !monolithic? ( server? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) ) X? ( >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity. -EAPI=4 -HOMEPAGE=http://quassel-irc.org/ -IUSE=ayatana crypt dbus debug kde monolithic phonon postgres +server +ssl syslog webkit X -KEYWORDS=amd64 ~arm ppc x86 ~amd64-linux ~sparc-solaris -LICENSE=GPL-3 -RDEPEND=>=dev-qt/qtcore-4.6.0:4[ssl?] monolithic? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) !monolithic? ( server? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) ) X? ( >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) ) -REQUIRED_USE=|| ( X server monolithic ) crypt? ( || ( server monolithic ) ) postgres? ( || ( server monolithic ) ) syslog? ( || ( server monolithic ) ) kde? ( || ( X monolithic ) ) phonon? ( || ( X monolithic ) ) dbus? ( || ( X monolithic ) ) ayatana? ( || ( X monolithic ) ) webkit? ( || ( X monolithic ) ) -SLOT=0 -SRC_URI=http://quassel-irc.org/pub/quassel-0.8.0.tar.bz2 -_eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 pax-utils 2424f959506320f5196de8f79fa05297 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=58c3141877f54ec6a393dc4ac09b9876 diff --git a/metadata/md5-cache/net-irc/quassel-0.9.0 b/metadata/md5-cache/net-irc/quassel-0.9.0 deleted file mode 100644 index 8cc7b745b044..000000000000 --- a/metadata/md5-cache/net-irc/quassel-0.9.0 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile config configure install postinst prepare setup test -DEPEND=>=dev-qt/qtcore-4.6.0:4[ssl?] monolithic? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) !monolithic? ( server? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) ) X? ( >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity. -EAPI=4 -HOMEPAGE=http://quassel-irc.org/ -IUSE=ayatana crypt dbus debug kde monolithic phonon postgres +server +ssl syslog webkit X -KEYWORDS=amd64 ~arm ppc x86 ~amd64-linux ~sparc-solaris -LICENSE=GPL-3 -RDEPEND=>=dev-qt/qtcore-4.6.0:4[ssl?] monolithic? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) !monolithic? ( server? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) ) X? ( >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) ) -REQUIRED_USE=|| ( X server monolithic ) crypt? ( || ( server monolithic ) ) postgres? ( || ( server monolithic ) ) syslog? ( || ( server monolithic ) ) kde? ( || ( X monolithic ) ) phonon? ( || ( X monolithic ) ) dbus? ( || ( X monolithic ) ) ayatana? ( || ( X monolithic ) ) webkit? ( || ( X monolithic ) ) -SLOT=0 -SRC_URI=http://quassel-irc.org/pub/quassel-0.9.0.tar.bz2 -_eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 pax-utils 2424f959506320f5196de8f79fa05297 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=01f5317e314501fa6a97b294ec9d770a diff --git a/metadata/md5-cache/net-irc/quassel-0.9.1 b/metadata/md5-cache/net-irc/quassel-0.9.1 index e98cc591d53d..ed07a26c146d 100644 --- a/metadata/md5-cache/net-irc/quassel-0.9.1 +++ b/metadata/md5-cache/net-irc/quassel-0.9.1 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile config configure install postinst prepare setup test DEPEND=>=dev-qt/qtcore-4.6.0:4[ssl?] monolithic? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) !monolithic? ( server? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) ) X? ( >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity. +DESCRIPTION=Qt4/KDE4 IRC client supporting a remote daemon for 24/7 connectivity. EAPI=4 HOMEPAGE=http://quassel-irc.org/ IUSE=ayatana crypt dbus debug kde monolithic phonon postgres +server +ssl syslog webkit X @@ -11,4 +11,4 @@ REQUIRED_USE=|| ( X server monolithic ) crypt? ( || ( server monolithic ) ) post SLOT=0 SRC_URI=http://quassel-irc.org/pub/quassel-0.9.1.tar.bz2 _eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 pax-utils 2424f959506320f5196de8f79fa05297 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=9dc898e31788ef99b545d946dabb97fd +_md5_=902eb523b79662f6a5526d896f9ac118 diff --git a/metadata/md5-cache/net-irc/quassel-9999 b/metadata/md5-cache/net-irc/quassel-9999 index f2dbf1e74210..34e5228a80ba 100644 --- a/metadata/md5-cache/net-irc/quassel-9999 +++ b/metadata/md5-cache/net-irc/quassel-9999 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile config configure install postinst prepare setup test unpack DEPEND=>=dev-qt/qtcore-4.6.0:4[ssl?] monolithic? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) !monolithic? ( server? ( >=dev-qt/qtscript-4.6.0:4 crypt? ( app-crypt/qca:2 app-crypt/qca-ossl ) !postgres? ( >=dev-qt/qtsql-4.6.0:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) postgres? ( >=dev-qt/qtsql-4.6.0:4[postgres] ) syslog? ( virtual/logger ) ) X? ( >=dev-qt/qtgui-4.6.0:4 ayatana? ( dev-libs/libindicate-qt ) dbus? ( >=dev-qt/qtdbus-4.6.0:4 dev-libs/libdbusmenu-qt ) kde? ( >=kde-base/kdelibs-4.4 >=kde-base/oxygen-icons-4.4 ayatana? ( kde-misc/plasma-widget-message-indicator ) ) phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-4.6.0:4 ) ) webkit? ( >=dev-qt/qtwebkit-4.6.0:4 ) ) ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) dev-vcs/git -DESCRIPTION=Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity. +DESCRIPTION=Qt4/KDE4 IRC client supporting a remote daemon for 24/7 connectivity. EAPI=4 HOMEPAGE=http://quassel-irc.org/ IUSE=ayatana crypt dbus debug kde monolithic phonon postgres +server +ssl syslog webkit X @@ -9,4 +9,4 @@ RDEPEND=>=dev-qt/qtcore-4.6.0:4[ssl?] monolithic? ( >=dev-qt/qtscript-4.6.0:4 cr REQUIRED_USE=|| ( X server monolithic ) crypt? ( || ( server monolithic ) ) postgres? ( || ( server monolithic ) ) syslog? ( || ( server monolithic ) ) kde? ( || ( X monolithic ) ) phonon? ( || ( X monolithic ) ) dbus? ( || ( X monolithic ) ) ayatana? ( || ( X monolithic ) ) webkit? ( || ( X monolithic ) ) SLOT=0 _eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multilib 892e597faee02a5b94eb02ab512e7622 pax-utils 2424f959506320f5196de8f79fa05297 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=bff9a163d06f4d359116609fb0d8a209 +_md5_=215292b5f61713fc9ba5a1689c379bd1 diff --git a/metadata/md5-cache/net-irc/redirbot-0.0.5 b/metadata/md5-cache/net-irc/redirbot-0.0.5 index 345672ee4e87..83faa197ef91 100644 --- a/metadata/md5-cache/net-irc/redirbot-0.0.5 +++ b/metadata/md5-cache/net-irc/redirbot-0.0.5 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/redirbot/redirbot-0.0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4ac72b9453ab0ef0ba44132d9cb11157 diff --git a/metadata/md5-cache/net-libs/dslib-3.0-r1 b/metadata/md5-cache/net-libs/dslib-3.0-r1 index c8f468494106..5714cc7c6d31 100644 --- a/metadata/md5-cache/net-libs/dslib-3.0-r1 +++ b/metadata/md5-cache/net-libs/dslib-3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyasn1[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.nic.cz/public_media/datove_schranky/releases//src/dslib-3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eb7ecec1997c1f077b484f6b381645c2 diff --git a/metadata/md5-cache/net-libs/gnutls-3.2.4 b/metadata/md5-cache/net-libs/gnutls-3.2.4 index 7cb68d179ebb..dafe5d5eeff4 100644 --- a/metadata/md5-cache/net-libs/gnutls-3.2.4 +++ b/metadata/md5-cache/net-libs/gnutls-3.2.4 @@ -8,6 +8,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-3 LGPL-3 RDEPEND=>=dev-libs/libtasn1-2.14 >=dev-libs/nettle-2.7[gmp] dev-libs/gmp sys-devel/autogen dane? ( net-dns/unbound ) guile? ( >=dev-scheme/guile-1.8[networking] ) nls? ( virtual/libintl ) pkcs11? ( >=app-crypt/p11-kit-0.11 ) zlib? ( >=sys-libs/zlib-1.2.3.1 ) SLOT=0 -SRC_URI=ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/gnutls-3.2.4.tar.xz +SRC_URI=ftp://ftp.gnutls.org/gcrypt/gnutls/v3.2/gnutls-3.2.4.tar.xz https://gitorious.org/gnutls/gnutls/commit/1df1b0f7b28c733bf01e5d1faa2f8ccdb3db1665.patch -> gnutls-3.2.4-no-error.patch _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=182e8d84b03c8c7c9eb72017fa26c452 +_md5_=2bb749241904f90af038c073e7246761 diff --git a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.30 b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.30 index c72e22358c2b..b47f9c908f23 100644 --- a/metadata/md5-cache/net-libs/libmicrohttpd-0.9.30 +++ b/metadata/md5-cache/net-libs/libmicrohttpd-0.9.30 @@ -4,9 +4,9 @@ DESCRIPTION=A small C library that makes it easy to run an HTTP server as part o EAPI=5 HOMEPAGE=http://www.gnu.org/software/libmicrohttpd/ IUSE=messages ssl static-libs test -KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 arm ~mips ~ppc ~ppc64 ~x86 LICENSE=LGPL-2.1 RDEPEND=ssl? ( dev-libs/libgcrypt net-libs/gnutls ) SLOT=0 SRC_URI=mirror://gnu/libmicrohttpd/libmicrohttpd-0.9.30.tar.gz -_md5_=5850ae5ea133ba319ddaf9934aef1e7a +_md5_=5c0c0d61b4be0cfc77b920d69022fef1 diff --git a/metadata/md5-cache/net-libs/libsrtp-1.4.4_p20121108-r1 b/metadata/md5-cache/net-libs/libsrtp-1.4.4_p20121108-r1 index 9772f8387cba..29aec5d6bf0a 100644 --- a/metadata/md5-cache/net-libs/libsrtp-1.4.4_p20121108-r1 +++ b/metadata/md5-cache/net-libs/libsrtp-1.4.4_p20121108-r1 @@ -3,9 +3,9 @@ DESCRIPTION=Open-source implementation of the Secure Real-time Transport Protoco EAPI=4 HOMEPAGE=http://srtp.sourceforge.net/srtp.html IUSE=aesicm console debug doc static-libs syslog -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 -sparc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 -sparc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos LICENSE=BSD SLOT=0 SRC_URI=http://dev.gentoo.org/~phajdan.jr/srtp-1.4.4_p20121108.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=2a2982d9ebc7dc05874d3181d048cf51 +_md5_=92b2cef5600507ca92e7f11053091f89 diff --git a/metadata/md5-cache/net-mail/automx-0.9.2 b/metadata/md5-cache/net-mail/automx-0.9.2 index e09c0e5a1521..70703f54abd0 100644 --- a/metadata/md5-cache/net-mail/automx-0.9.2 +++ b/metadata/md5-cache/net-mail/automx-0.9.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/sys4/automx/archive/v0.9.2.tar.gz -> automx-0.9.2.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2042fb171d1909a809afd51fc91b27b6 diff --git a/metadata/md5-cache/net-mail/getmail-4.41.0 b/metadata/md5-cache/net-mail/getmail-4.41.0 index 7e798bb81368..0b1be72c3636 100644 --- a/metadata/md5-cache/net-mail/getmail-4.41.0 +++ b/metadata/md5-cache/net-mail/getmail-4.41.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=4 SRC_URI=http://pyropus.ca/software/getmail/old-versions/getmail-4.41.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=baae2ec58a88aa5939a6b4e66023cfbf diff --git a/metadata/md5-cache/net-mail/getmail-4.43.0 b/metadata/md5-cache/net-mail/getmail-4.43.0 index cee95a77e018..fa9f5c45d53f 100644 --- a/metadata/md5-cache/net-mail/getmail-4.43.0 +++ b/metadata/md5-cache/net-mail/getmail-4.43.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=4 SRC_URI=http://pyropus.ca/software/getmail/old-versions/getmail-4.43.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=79c0c397ca299892ac9b092f61176617 diff --git a/metadata/md5-cache/net-mail/notmuch-0.16-r1 b/metadata/md5-cache/net-mail/notmuch-0.16-r1 index 277c4d087008..093ff8b93fc6 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.16-r1 +++ b/metadata/md5-cache/net-mail/notmuch-0.16-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.22 >=dev-libs/gmime-2.6.7 =dev-lang/python-2.6.8-r3:2.6[threads REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=https://github.com/OfflineIMAP/offlineimap/tarball/v6.5.5 -> offlineimap-6.5.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ed787af88f834a0ec34b28c420de77ac diff --git a/metadata/md5-cache/net-misc/electrum-1.7.3 b/metadata/md5-cache/net-misc/electrum-1.7.3 index f54ff8f2474e..08e1bab1a7c6 100644 --- a/metadata/md5-cache/net-misc/electrum-1.7.3 +++ b/metadata/md5-cache/net-misc/electrum-1.7.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools dev-python/ecdsa dev-python/slowaes gtk? ( dev-pyt REQUIRED_USE=|| ( gtk qt4 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.electrum.org/download/Electrum-1.7.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a3bcda23bcc4e319df77520220ad78dd diff --git a/metadata/md5-cache/net-misc/electrum-1.7.4 b/metadata/md5-cache/net-misc/electrum-1.7.4 index 6ace6b6c60e9..566c142f41ba 100644 --- a/metadata/md5-cache/net-misc/electrum-1.7.4 +++ b/metadata/md5-cache/net-misc/electrum-1.7.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools dev-python/ecdsa dev-python/slowaes gtk? ( dev-pyt REQUIRED_USE=|| ( gtk qt4 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.electrum.org/download/Electrum-1.7.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d96a48ac26b669d463e5273031ca52bb diff --git a/metadata/md5-cache/net-misc/electrum-1.8 b/metadata/md5-cache/net-misc/electrum-1.8 index c5897183cfb8..d4c6b7dc0bb1 100644 --- a/metadata/md5-cache/net-misc/electrum-1.8 +++ b/metadata/md5-cache/net-misc/electrum-1.8 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools dev-python/ecdsa dev-python/slowaes gtk? ( dev-pyt REQUIRED_USE=|| ( gtk qt4 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.electrum.org/download/Electrum-1.8.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8a925c02542b3f8baa6bbe76f052bb5a diff --git a/metadata/md5-cache/net-misc/electrum-1.8.1 b/metadata/md5-cache/net-misc/electrum-1.8.1 index b10276995dd5..74f1e67bdcd3 100644 --- a/metadata/md5-cache/net-misc/electrum-1.8.1 +++ b/metadata/md5-cache/net-misc/electrum-1.8.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools dev-python/ecdsa dev-python/slowaes gtk? ( dev-pyt REQUIRED_USE=|| ( gtk qt4 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.electrum.org/download/Electrum-1.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=42ac69c36d0658a3a6c9a39edc27bee2 diff --git a/metadata/md5-cache/net-misc/flexget-1.1.138 b/metadata/md5-cache/net-misc/flexget-1.1.138 index 94ee8449fddd..54185b8a5b3a 100644 --- a/metadata/md5-cache/net-misc/flexget-1.1.138 +++ b/metadata/md5-cache/net-misc/flexget-1.1.138 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/feedparser-5.1.3[python_targets_python2_6(-)?,python_target REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.flexget.com/FlexGet-1.1.138.tar.gz http://download.flexget.com/archive/FlexGet-1.1.138.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9e7fc880c7051cd57bc8d9d8b4b7417f diff --git a/metadata/md5-cache/net-misc/flexget-9999 b/metadata/md5-cache/net-misc/flexget-9999 index 444e5426a85f..95ced5d8d077 100644 --- a/metadata/md5-cache/net-misc/flexget-9999 +++ b/metadata/md5-cache/net-misc/flexget-9999 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=>=dev-python/feedparser-5.1.3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-0.7[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] =dev-python/beautifulsoup-4.1:4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] =dev-python/jsonschema-2.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/PyRSS2Gen[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pynzb[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/progressbar[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cherrypy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/python-dateutil[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/python-tvrage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/requests-1.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] =dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ea5bb0253a7a3853aa8e641f237728aa diff --git a/metadata/md5-cache/net-misc/gns3-0.8.4 b/metadata/md5-cache/net-misc/gns3-0.8.4 index ea26d03050db..b0aa090a6229 100644 --- a/metadata/md5-cache/net-misc/gns3-0.8.4 +++ b/metadata/md5-cache/net-misc/gns3-0.8.4 @@ -10,5 +10,5 @@ RDEPEND=dev-qt/qtgui:4 dev-qt/qtsvg:4 >=dev-python/PyQt4-4.6.1[X,svg,python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/gns-3/GNS3/0.8.4/GNS3-0.8.4-src.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9a338224af3ce1a458ceb909905166c4 diff --git a/metadata/md5-cache/net-misc/httpie-0.3.0 b/metadata/md5-cache/net-misc/httpie-0.3.0 index 570959c596f2..29de4b0bcc7d 100644 --- a/metadata/md5-cache/net-misc/httpie-0.3.0 +++ b/metadata/md5-cache/net-misc/httpie-0.3.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-0.10.1 >=dev-python/pygments-1.5 virtual/python-ar REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/httpie/httpie-0.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=18f6dc83740185e6099f10104ac8ca04 diff --git a/metadata/md5-cache/net-misc/httpie-0.3.0-r1 b/metadata/md5-cache/net-misc/httpie-0.3.0-r1 index f60888365feb..7fea862c2b40 100644 --- a/metadata/md5-cache/net-misc/httpie-0.3.0-r1 +++ b/metadata/md5-cache/net-misc/httpie-0.3.0-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-0.10.1 =dev-python/pygme REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/httpie/httpie-0.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5a57cca247b23c577d8a4530b9c26ea7 diff --git a/metadata/md5-cache/net-misc/httpie-0.3.1 b/metadata/md5-cache/net-misc/httpie-0.3.1 index abab1d086441..1968b3398be5 100644 --- a/metadata/md5-cache/net-misc/httpie-0.3.1 +++ b/metadata/md5-cache/net-misc/httpie-0.3.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-0.10.1 =dev-python/pygme REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/httpie/httpie-0.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3179607c0ca7a89a8ce64bbfa2ee764d diff --git a/metadata/md5-cache/net-misc/httpie-0.4.1 b/metadata/md5-cache/net-misc/httpie-0.4.1 index dc7d815e4f78..625af0e13f5a 100644 --- a/metadata/md5-cache/net-misc/httpie-0.4.1 +++ b/metadata/md5-cache/net-misc/httpie-0.4.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-1.0.4 >=dev-python/pygments-1.5 virtual/python-arg REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/httpie/httpie-0.4.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8a535d5d5696ea35ebee3441ff3941ed diff --git a/metadata/md5-cache/net-misc/httpie-0.5.1 b/metadata/md5-cache/net-misc/httpie-0.5.1 index e6e4c97fa962..db88e03c544c 100644 --- a/metadata/md5-cache/net-misc/httpie-0.5.1 +++ b/metadata/md5-cache/net-misc/httpie-0.5.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-1.0.4 >=dev-python/pygments-1.5 virtual/python-arg REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/httpie/httpie-0.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6331d1405405629fd78d6e6b8fa1a8e4 diff --git a/metadata/md5-cache/net-misc/httpie-0.6.0 b/metadata/md5-cache/net-misc/httpie-0.6.0 index 6fca44a91a88..b549fdd8a18b 100644 --- a/metadata/md5-cache/net-misc/httpie-0.6.0 +++ b/metadata/md5-cache/net-misc/httpie-0.6.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-1.2.3 >=dev-python/pygments-1.5 virtual/python-arg REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/httpie/httpie-0.6.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=06565b99e2ffdabde7c025fc4a360944 diff --git a/metadata/md5-cache/net-misc/httpie-0.7.2 b/metadata/md5-cache/net-misc/httpie-0.7.2 index b52add2f33f6..b33dc187b29a 100644 --- a/metadata/md5-cache/net-misc/httpie-0.7.2 +++ b/metadata/md5-cache/net-misc/httpie-0.7.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/requests-2.0.0 >=dev-python/pygments-1.5 virtual/python-arg REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/h/httpie/httpie-0.7.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=74296b1e6dab206da878b1641d3a9f89 diff --git a/metadata/md5-cache/net-misc/polly-0.93.10 b/metadata/md5-cache/net-misc/polly-0.93.10 index a7265675c9cc..5e0129174727 100644 --- a/metadata/md5-cache/net-misc/polly-0.93.10 +++ b/metadata/md5-cache/net-misc/polly-0.93.10 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://launchpad.net/polly/1.0/pre-alpha-2/+download/Polly-0.93.10%20%28pre-alpha%203.10%29.tar.gz -> polly-0.93.10.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=dab507abff005699a27eae390a5a08cd diff --git a/metadata/md5-cache/net-misc/polly-0.93.9 b/metadata/md5-cache/net-misc/polly-0.93.9 index 8a60a4c47c28..31d202f9cc4c 100644 --- a/metadata/md5-cache/net-misc/polly-0.93.9 +++ b/metadata/md5-cache/net-misc/polly-0.93.9 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://launchpad.net/polly/1.0/pre-alpha-2/+download/Polly-0.93.9%20%28pre-alpha%203.9%29.tar.gz -> polly-0.93.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=53c84c0d70f54489de4cbc66403b8409 diff --git a/metadata/md5-cache/net-misc/pycnb-0.0.4 b/metadata/md5-cache/net-misc/pycnb-0.0.4 index e5188c1303a3..78790709f8a6 100644 --- a/metadata/md5-cache/net-misc/pycnb-0.0.4 +++ b/metadata/md5-cache/net-misc/pycnb-0.0.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/cement[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pycnb/pycnb-0.0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b59d1086a2186ad49f680329fcf39faa diff --git a/metadata/md5-cache/net-misc/wicd-1.7.2.4-r3 b/metadata/md5-cache/net-misc/wicd-1.7.2.4-r3 index 2f4edd2013cd..7702b4da323b 100644 --- a/metadata/md5-cache/net-misc/wicd-1.7.2.4-r3 +++ b/metadata/md5-cache/net-misc/wicd-1.7.2.4-r3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[ncurses?,xml] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/wicd/1.7/1.7.2.4/+download/wicd-1.7.2.4.tar.gz mac4lin? ( http://dev.gentoo.org/~anarchy/dist/wicd-mac4lin-icons.tar.xz ) ambiance? ( http://freetimesblog.altervista.org/blog/wp-content/uploads/downloads/2010/05/Icone-Wicd-Lucid.tar.gz ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1f1b16ad270f9af3a353cd1a882949ab diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.08.02 b/metadata/md5-cache/net-misc/youtube-dl-2013.08.02 index 6e299df08170..85964da82ae0 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.08.02 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.08.02 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.08.02/youtube-dl-2013.08.02.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a39d9e5620529b30757d136470f160ae diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.09.20.1 b/metadata/md5-cache/net-misc/youtube-dl-2013.09.20.1 index a85ddc65146b..81373a359881 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.09.20.1 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.09.20.1 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.09.20.1/youtube-dl-2013.09.20.1.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=885ac6634ac637ea91a36c2250899a11 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.09.24.2 b/metadata/md5-cache/net-misc/youtube-dl-2013.09.24.2 index 2d95e7a10b5f..ae23dee6fb6a 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.09.24.2 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.09.24.2 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.09.24.2/youtube-dl-2013.09.24.2.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bb332d462a8580c71cfc6a16e2ff5251 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.09.29 b/metadata/md5-cache/net-misc/youtube-dl-2013.09.29 index 23521b7ca228..fe49c7cfbaef 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.09.29 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.09.29 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.09.29/youtube-dl-2013.09.29.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2833b478f2af5750a7ee1ee25fd51ca9 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.01 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.01 index fb903a60756b..edb982331b8c 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.01 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.01 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.01/youtube-dl-2013.10.01.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4925720fcf85dcbbc2cd434a9314b88b diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.01.1 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.01.1 index 9131ba576797..ec6ddcbc39cb 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.01.1 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.01.1 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.01.1/youtube-dl-2013.10.01.1.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f4250002bd82d83f73e2d77bb44a6b87 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.04 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.04 index 3a60a63e1eb7..36d995f6a1ab 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.04 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.04 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.04/youtube-dl-2013.10.04.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e430912675bae32ffe0bb60bd6034448 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.06 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.06 index cdbb2dd04369..a33210af668f 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.06 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.06 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.06/youtube-dl-2013.10.06.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc4e425e4d9b44dbed8ce6a80627d9fa diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.07 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.07 index b88d9998eb94..38154cb72f4f 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.07 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.07 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.07/youtube-dl-2013.10.07.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e2f712f1d3cb71080740554f53b0c2d2 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.09 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.09 index 33246d36c27f..897ead30cd6c 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.09 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.09 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.09/youtube-dl-2013.10.09.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ff6ff0d04459e4adae30525433b58184 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.15 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.15 index b1d18e242664..6a93eeb8f4ae 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.15 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.15 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.15/youtube-dl-2013.10.15.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cd893528908f444a90198d3c812a8f3d diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.17 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.17 index db7ce0644baf..73f14fef7ce3 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.17 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.17 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.17/youtube-dl-2013.10.17.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=059528d72de6fffc9af5c9f24aa40bb1 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.18.1 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.18.1 index ae211dd65cc1..fade853a7006 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.18.1 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.18.1 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.18.1/youtube-dl-2013.10.18.1.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=73d3b31835615ae75a9fddc076c50683 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.18.2 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.18.2 index 37aff670c59e..529496f42834 100644 --- a/metadata/md5-cache/net-misc/youtube-dl-2013.10.18.2 +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.18.2 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) SLOT=0 SRC_URI=http://youtube-dl.org/downloads/2013.10.18.2/youtube-dl-2013.10.18.2.tar.gz -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=749372d02d5028569b6c75b18bb87ae4 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.10.23.2 b/metadata/md5-cache/net-misc/youtube-dl-2013.10.23.2 new file mode 100644 index 000000000000..640f1c899581 --- /dev/null +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.10.23.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?,python_single_target_python3_3(+)?] test? ( dev-python/nose[coverage(+)] ) python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?,python_single_target_python3_3(+)?] +DESCRIPTION=Download videos from YouTube.com (and mores sites...) +EAPI=5 +HOMEPAGE=http://rg3.github.com/youtube-dl/ +IUSE=offensive test python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +LICENSE=public-domain +RDEPEND=python_single_target_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_single_target_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_single_target_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?,python_single_target_python3_3(+)?] +REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) python_single_target_python3_3? ( python_targets_python3_3 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_3 ) +SLOT=0 +SRC_URI=http://youtube-dl.org/downloads/2013.10.23.2/youtube-dl-2013.10.23.2.tar.gz +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=06bb5a1923555627712102b4e5019043 diff --git a/metadata/md5-cache/net-p2p/torrentinfo-1.8.4 b/metadata/md5-cache/net-p2p/torrentinfo-1.8.4 index 7bef046d450e..8b47df5de521 100644 --- a/metadata/md5-cache/net-p2p/torrentinfo-1.8.4 +++ b/metadata/md5-cache/net-p2p/torrentinfo-1.8.4 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 ) SLOT=0 SRC_URI=https://github.com/ShanaTsunTsunLove/torrentinfo/archive/v1.8.4.tar.gz -> torrentinfo-1.8.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1673d98ece76493b67eed44801c15bfc diff --git a/metadata/md5-cache/net-p2p/torrentinfo-1.8.6 b/metadata/md5-cache/net-p2p/torrentinfo-1.8.6 index f7ab4ec930e9..5c2701ae8cb0 100644 --- a/metadata/md5-cache/net-p2p/torrentinfo-1.8.6 +++ b/metadata/md5-cache/net-p2p/torrentinfo-1.8.6 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/Fuuzetsu/torrentinfo/archive/v1.8.6.tar.gz -> torrentinfo-1.8.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=66350dbd8164887875de746e0ee93618 diff --git a/metadata/md5-cache/net-proxy/mitmproxy-0.8.1 b/metadata/md5-cache/net-proxy/mitmproxy-0.8.1 index 3a1f2050e042..972438ea1740 100644 --- a/metadata/md5-cache/net-proxy/mitmproxy-0.8.1 +++ b/metadata/md5-cache/net-proxy/mitmproxy-0.8.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/imaging-1.1[python_targets_python2_6(-)?,python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/m/mitmproxy/mitmproxy-0.8.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3557d2153650ac77f8541bbb7692440f diff --git a/metadata/md5-cache/net-proxy/mitmproxy-0.9 b/metadata/md5-cache/net-proxy/mitmproxy-0.9 index 618044fdc7dd..c5ee883896c1 100644 --- a/metadata/md5-cache/net-proxy/mitmproxy-0.9 +++ b/metadata/md5-cache/net-proxy/mitmproxy-0.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://mitmproxy.org/download/mitmproxy-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6fc140476638d97a0baa59f2026e052a diff --git a/metadata/md5-cache/net-proxy/mitmproxy-0.9.1 b/metadata/md5-cache/net-proxy/mitmproxy-0.9.1 index c6d029476beb..98ec87768158 100644 --- a/metadata/md5-cache/net-proxy/mitmproxy-0.9.1 +++ b/metadata/md5-cache/net-proxy/mitmproxy-0.9.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://mitmproxy.org/download/mitmproxy-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fbf2891ba32af386cd3d01e1523ca46c diff --git a/metadata/md5-cache/net-proxy/obfsproxy-0.2.4 b/metadata/md5-cache/net-proxy/obfsproxy-0.2.4 index e4a8040bd653..85710bf907d8 100644 --- a/metadata/md5-cache/net-proxy/obfsproxy-0.2.4 +++ b/metadata/md5-cache/net-proxy/obfsproxy-0.2.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pyptlib-0.0.5[python_targets_python2_7(-)?,-python_single_t REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/obfsproxy/obfsproxy-0.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=62255a471fee96a40ca23397346b8c74 diff --git a/metadata/md5-cache/net-zope/zope-fixers-1.0-r1 b/metadata/md5-cache/net-zope/zope-fixers-1.0-r1 index 9e461ecd4df7..0787b16f53ef 100644 --- a/metadata/md5-cache/net-zope/zope-fixers-1.0-r1 +++ b/metadata/md5-cache/net-zope/zope-fixers-1.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/z/zope.fixers/zope.fixers-1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=51e117deab4541e9ceb2b7a2fce0d928 diff --git a/metadata/md5-cache/net-zope/zope-fixers-1.1.2 b/metadata/md5-cache/net-zope/zope-fixers-1.1.2 index 8da650c17034..f2f0f4163817 100644 --- a/metadata/md5-cache/net-zope/zope-fixers-1.1.2 +++ b/metadata/md5-cache/net-zope/zope-fixers-1.1.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/z/zope.fixers/zope.fixers-1.1.2.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cbff0d1294fa4139498c084f410dc05c diff --git a/metadata/md5-cache/net-zope/zope-interface-4.0.5 b/metadata/md5-cache/net-zope/zope-interface-4.0.5 index 34e7dd0eba49..7726daf8df4d 100644 --- a/metadata/md5-cache/net-zope/zope-interface-4.0.5 +++ b/metadata/md5-cache/net-zope/zope-interface-4.0.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/z/zope.interface/zope.interface-4.0.5.zip -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a0492b0b4691324fe215ab4a49922333 diff --git a/metadata/md5-cache/sci-astronomy/kapteyn-2.2-r1 b/metadata/md5-cache/sci-astronomy/kapteyn-2.2-r1 index 81a6fb131503..df5225a99f7a 100644 --- a/metadata/md5-cache/sci-astronomy/kapteyn-2.2-r1 +++ b/metadata/md5-cache/sci-astronomy/kapteyn-2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=sci-astronomy/wcslib dev-python/numpy[python_targets_python2_6(-)?,pytho REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.astro.rug.nl/software/kapteyn/kapteyn-2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e7b5bdc30300f326dd0613bd9fbeff06 diff --git a/metadata/md5-cache/sci-astronomy/pyephem-3.7.5.1 b/metadata/md5-cache/sci-astronomy/pyephem-3.7.5.1 index c19c28e4f3b6..13b6a3d67821 100644 --- a/metadata/md5-cache/sci-astronomy/pyephem-3.7.5.1 +++ b/metadata/md5-cache/sci-astronomy/pyephem-3.7.5.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/p/pyephem/pyephem-3.7.5.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d0469963cefcaa3ea75ec24cd07c1e1f diff --git a/metadata/md5-cache/sci-biology/biopython-1.61 b/metadata/md5-cache/sci-biology/biopython-1.61 index 2cff83dff64d..296bd8fd57ac 100644 --- a/metadata/md5-cache/sci-biology/biopython-1.61 +++ b/metadata/md5-cache/sci-biology/biopython-1.61 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.biopython.org/DIST/biopython-1.61.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=23397861eb88ddc774e41515ebbfc596 diff --git a/metadata/md5-cache/sci-biology/biopython-1.62 b/metadata/md5-cache/sci-biology/biopython-1.62 index 7671480ac3da..3a9b6c63945d 100644 --- a/metadata/md5-cache/sci-biology/biopython-1.62 +++ b/metadata/md5-cache/sci-biology/biopython-1.62 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://www.biopython.org/DIST/biopython-1.62.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2a2b159749a59a8627683ace1ab97b88 diff --git a/metadata/md5-cache/sci-biology/vienna-rna-2.1.1 b/metadata/md5-cache/sci-biology/vienna-rna-2.1.1 index 8619d58f434e..c5dd32146e14 100644 --- a/metadata/md5-cache/sci-biology/vienna-rna-2.1.1 +++ b/metadata/md5-cache/sci-biology/vienna-rna-2.1.1 @@ -10,5 +10,5 @@ RDEPEND=dev-lang/perl media-libs/gd doc? ( dev-texlive/texlive-latex ) python? ( REQUIRED_USE=python? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) SLOT=0 SRC_URI=http://www.tbi.univie.ac.at/~ronny/RNA/ViennaRNA-2.1.1.tar.gz -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e perl-module d93571ca1c77e98760e5aa406388b02d python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2115af340d3da383864f5ea72df9f0f diff --git a/metadata/md5-cache/sci-chemistry/GromacsWrapper-0.3.1 b/metadata/md5-cache/sci-chemistry/GromacsWrapper-0.3.1 index 7e542adb6d58..4a82190ba023 100644 --- a/metadata/md5-cache/sci-chemistry/GromacsWrapper-0.3.1 +++ b/metadata/md5-cache/sci-chemistry/GromacsWrapper-0.3.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/matplotlib-0.91.3[python_targets_python2_6(-)?,python_targe REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://github.com/orbeckst/GromacsWrapper/archive/release-0.3.1.tar.gz -> GromacsWrapper-0.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=9eebb786fb84180d4ad8abbf0d1be747 diff --git a/metadata/md5-cache/sci-chemistry/PyMca-4.6.2-r1 b/metadata/md5-cache/sci-chemistry/PyMca-4.6.2-r1 index dfa2935ecfa3..221a77128bb6 100644 --- a/metadata/md5-cache/sci-chemistry/PyMca-4.6.2-r1 +++ b/metadata/md5-cache/sci-chemistry/PyMca-4.6.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/project/pymca/pymca/PyMca4.6.2/pymca4.6.2-src.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2b917cfdfcf51f4376ced8bf7f8b120 diff --git a/metadata/md5-cache/sci-chemistry/mdanalysis-0.7.7 b/metadata/md5-cache/sci-chemistry/mdanalysis-0.7.7 index 9c5472ee1bc9..393ad892004b 100644 --- a/metadata/md5-cache/sci-chemistry/mdanalysis-0.7.7 +++ b/metadata/md5-cache/sci-chemistry/mdanalysis-0.7.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://mdanalysis.googlecode.com/files/MDAnalysis-0.7.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5f18212d339dada46bde8ef2a3283234 diff --git a/metadata/md5-cache/sci-chemistry/nmrglue-0.4 b/metadata/md5-cache/sci-chemistry/nmrglue-0.4 index 0eba77b5e751..6bdf27f38583 100644 --- a/metadata/md5-cache/sci-chemistry/nmrglue-0.4 +++ b/metadata/md5-cache/sci-chemistry/nmrglue-0.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/ipython[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=https://nmrglue.googlecode.com/files/nmrglue-0.4-corrected.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9ee6fcded1832a1ae67649f1911cad51 diff --git a/metadata/md5-cache/sci-chemistry/parassign-20130522 b/metadata/md5-cache/sci-chemistry/parassign-20130522 index 41f43efddbf8..9215ce2e505f 100644 --- a/metadata/md5-cache/sci-chemistry/parassign-20130522 +++ b/metadata/md5-cache/sci-chemistry/parassign-20130522 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) || ( pytho RESTRICT=fetch SLOT=0 SRC_URI=PARAssign_Linux_x64_86.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d88cb26b274bae9d615373155cd751b7 diff --git a/metadata/md5-cache/sci-chemistry/pymol-1.5.0.3-r2 b/metadata/md5-cache/sci-chemistry/pymol-1.5.0.3-r2 index d7fb9e3e4d07..0143f3cd708c 100644 --- a/metadata/md5-cache/sci-chemistry/pymol-1.5.0.3-r2 +++ b/metadata/md5-cache/sci-chemistry/pymol-1.5.0.3-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_pyth REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/pymol-1.5.0.3.tar.xz http://dev.gentoo.org/~jlec/distfiles/pymol-icons.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e prefix 21058c21ca48453d771df15500873ede python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a5a94ccd020c66e2b3cbe1dac93a2898 diff --git a/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0 b/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0 index a1db44b22794..22c9eef33fc8 100644 --- a/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0 +++ b/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pmw[python_targets_python2_7(-)?,-python_single_target_python REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/project/pymol/pymol/1.6/pymol-v1.6.0.0.tar.bz2 http://dev.gentoo.org/~jlec/distfiles/pymol-icons.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b684976d5e5fe7c0ad76a94abbe3cc71 diff --git a/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0-r1 b/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0-r1 index 6a60751aba57..cf578d9a2566 100644 --- a/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0-r1 +++ b/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pmw[python_targets_python2_7(-)?,-python_single_target_python REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/project/pymol/pymol/1.6/pymol-v1.6.0.0.tar.bz2 http://dev.gentoo.org/~jlec/distfiles/pymol-icons.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=e4376bc12b1e1a446ddc5552c4e62167 diff --git a/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0-r2 b/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0-r2 index 223177800e04..842e2c1f5a1d 100644 --- a/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0-r2 +++ b/metadata/md5-cache/sci-chemistry/pymol-1.6.0.0-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pmw[python_targets_python2_7(-)?,-python_single_target_python REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/project/pymol/pymol/1.6/pymol-v1.6.0.0.tar.bz2 http://dev.gentoo.org/~jlec/distfiles/pymol-icons.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=66a0d991fc2a02e69c5b44ce21433a69 diff --git a/metadata/md5-cache/sci-chemistry/pymol-1.6.0_rc1 b/metadata/md5-cache/sci-chemistry/pymol-1.6.0_rc1 index 1587efe35e1d..3979cb00473c 100644 --- a/metadata/md5-cache/sci-chemistry/pymol-1.6.0_rc1 +++ b/metadata/md5-cache/sci-chemistry/pymol-1.6.0_rc1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pmw[python_targets_python2_7(-)?,-python_single_target_python REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/pymol-1.6.0_rc1.tar.xz http://dev.gentoo.org/~jlec/distfiles/pymol-icons.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8c33b170eb5ad7e2b8461acee92ffb0f diff --git a/metadata/md5-cache/sci-geosciences/cdat-lite-6.0_rc2 b/metadata/md5-cache/sci-geosciences/cdat-lite-6.0_rc2 index 528410afde1f..2bc35d4d3a7b 100644 --- a/metadata/md5-cache/sci-geosciences/cdat-lite-6.0_rc2 +++ b/metadata/md5-cache/sci-geosciences/cdat-lite-6.0_rc2 @@ -10,5 +10,5 @@ RDEPEND=>=sci-libs/netcdf-4.0.1 >=sci-libs/hdf5-1.6.4 dev-python/numpy[python_ta REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://ndg.nerc.ac.uk/dist/cdat_lite-6.0rc2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=df8eaf39d56282fb816bfb53c1f2a867 diff --git a/metadata/md5-cache/sci-geosciences/gmapcatcher-0.8.0.4 b/metadata/md5-cache/sci-geosciences/gmapcatcher-0.8.0.4 index d5423556c870..33877ee93e2b 100644 --- a/metadata/md5-cache/sci-geosciences/gmapcatcher-0.8.0.4 +++ b/metadata/md5-cache/sci-geosciences/gmapcatcher-0.8.0.4 @@ -10,5 +10,5 @@ RDEPEND=x11-libs/gtk+:2 dev-python/pygtk[python_targets_python2_6(-)?,python_tar REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://gmapcatcher.googlecode.com/files/mapcatcher_0.8.0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1c5436bf4a9847f5a14fe29323e281f4 diff --git a/metadata/md5-cache/sci-geosciences/gpsd-9999 b/metadata/md5-cache/sci-geosciences/gpsd-9999 index 9843cb820c7f..7e2c7c102deb 100644 --- a/metadata/md5-cache/sci-geosciences/gpsd-9999 +++ b/metadata/md5-cache/sci-geosciences/gpsd-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=X? ( dev-python/pygtk:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ncurses? ( sys-libs/ncurses ) bluetooth? ( net-wireless/bluez ) usb? ( virtual/libusb:1 ) dbus? ( sys-apps/dbus dev-libs/dbus-glib ) ntp? ( || ( net-misc/ntp net-misc/chrony ) ) qt4? ( dev-qt/qtgui:4 ) python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) REQUIRED_USE=X? ( python ) gpsd_protocols_nmea2000? ( gpsd_protocols_aivdm ) python? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bf1c12a760b16419b2eb46bd4b26574e diff --git a/metadata/md5-cache/sci-geosciences/gpxpy-0.8.6 b/metadata/md5-cache/sci-geosciences/gpxpy-0.8.6 index bda4c4ddc1b7..7eb9a91a6f66 100644 --- a/metadata/md5-cache/sci-geosciences/gpxpy-0.8.6 +++ b/metadata/md5-cache/sci-geosciences/gpxpy-0.8.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/tkrajina/gpxpy/tarball/85c3477b -> gpxpy-0.8.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 _md5_=162a17238b5317b2040a6b4ca441855a diff --git a/metadata/md5-cache/sci-geosciences/osm-gps-map-0.7.3 b/metadata/md5-cache/sci-geosciences/osm-gps-map-0.7.3 index b7b2923f99ea..c07df85cd6d9 100644 --- a/metadata/md5-cache/sci-geosciences/osm-gps-map-0.7.3 +++ b/metadata/md5-cache/sci-geosciences/osm-gps-map-0.7.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.16.0:2 >=net-libs/libsoup-2.4.0:2.4 >=x11-libs/cairo-1 REQUIRED_USE=python? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) SLOT=0 SRC_URI=http://www.johnstowers.co.nz/files/osm-gps-map/osm-gps-map-0.7.3.tar.gz python? ( http://www.johnstowers.co.nz/files/osm-gps-map/python-osmgpsmap-0.7.3.tar.gz ) -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=478a577cb1054f90bb2853276a1cbad5 diff --git a/metadata/md5-cache/sci-geosciences/qlandkartegt-1.7.5 b/metadata/md5-cache/sci-geosciences/qlandkartegt-1.7.5 new file mode 100644 index 000000000000..edd3523fe940 --- /dev/null +++ b/metadata/md5-cache/sci-geosciences/qlandkartegt-1.7.5 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=sci-libs/gdal-1.8 >=sci-libs/proj-4.7 sys-libs/zlib dev-qt/qtgui:4 dev-qt/qtscript:4 dev-qt/qtsql:4[sqlite] dev-qt/qtwebkit:4 dbus? ( dev-qt/qtdbus:4 ) dmtx? ( media-libs/libdmtx ) exif? ( media-libs/libexif ) gps? ( >=sci-geosciences/gpsd-2.90 ) gpsbabel? ( sci-geosciences/gpsbabel ) dev-qt/qtopengl:4 virtual/glu sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=View and upload map files, track and waypoint data to your Garmin GPS device +EAPI=5 +HOMEPAGE=http://www.qlandkarte.org/ +IUSE=dbus dmtx exif gps +gpsbabel +gpx-extensions mikrokopter +rmap +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +RDEPEND=>=sci-libs/gdal-1.8 >=sci-libs/proj-4.7 sys-libs/zlib dev-qt/qtgui:4 dev-qt/qtscript:4 dev-qt/qtsql:4[sqlite] dev-qt/qtwebkit:4 dbus? ( dev-qt/qtdbus:4 ) dmtx? ( media-libs/libdmtx ) exif? ( media-libs/libexif ) gps? ( >=sci-geosciences/gpsd-2.90 ) gpsbabel? ( sci-geosciences/gpsbabel ) dev-qt/qtopengl:4 virtual/glu +SLOT=0 +SRC_URI=mirror://sourceforge/qlandkartegt/qlandkartegt-1.7.5.tar.gz +_eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=3d4645b7bc804490b164d138d6db371c diff --git a/metadata/md5-cache/sci-geosciences/seawater-2.0.1 b/metadata/md5-cache/sci-geosciences/seawater-2.0.1 index 76b84b640f14..59b5e200cce4 100644 --- a/metadata/md5-cache/sci-geosciences/seawater-2.0.1 +++ b/metadata/md5-cache/sci-geosciences/seawater-2.0.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/seawater/seawater-2.0.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c38abc221e517137351177b6d7e1d64d diff --git a/metadata/md5-cache/sci-geosciences/seawater-3.3 b/metadata/md5-cache/sci-geosciences/seawater-3.3 index fac9938d7a3a..2bb890eadbc5 100644 --- a/metadata/md5-cache/sci-geosciences/seawater-3.3 +++ b/metadata/md5-cache/sci-geosciences/seawater-3.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/seawater/seawater-3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bd5d2d8e85e648d964e12b22504eb66b diff --git a/metadata/md5-cache/sci-geosciences/seawater-3.3.1 b/metadata/md5-cache/sci-geosciences/seawater-3.3.1 index 2621360f5ad5..47802e052acc 100644 --- a/metadata/md5-cache/sci-geosciences/seawater-3.3.1 +++ b/metadata/md5-cache/sci-geosciences/seawater-3.3.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/seawater/seawater-3.3.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=05e5d519186328220302a7e2785f5d8c diff --git a/metadata/md5-cache/sci-geosciences/tappy-0.9.0 b/metadata/md5-cache/sci-geosciences/tappy-0.9.0 index b94267e17bc7..ec7f77dfc9b7 100644 --- a/metadata/md5-cache/sci-geosciences/tappy-0.9.0 +++ b/metadata/md5-cache/sci-geosciences/tappy-0.9.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/matplotlib[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/tappy/tappy-0.9.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d9b4771cfd91eb150581384fb331b84b diff --git a/metadata/md5-cache/sci-libs/bmrblib-1.0.0-r1 b/metadata/md5-cache/sci-libs/bmrblib-1.0.0-r1 index 60a24ff2182c..43621880beae 100644 --- a/metadata/md5-cache/sci-libs/bmrblib-1.0.0-r1 +++ b/metadata/md5-cache/sci-libs/bmrblib-1.0.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://download.gna.org/bmrblib/bmrblib-1.0.0.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d03b3c9252cfe9df2e07cc5bfe3a7e68 diff --git a/metadata/md5-cache/sci-libs/bmrblib-1.0.1_pre198 b/metadata/md5-cache/sci-libs/bmrblib-1.0.1_pre198 index 183e2b4e78b6..e8019743c535 100644 --- a/metadata/md5-cache/sci-libs/bmrblib-1.0.1_pre198 +++ b/metadata/md5-cache/sci-libs/bmrblib-1.0.1_pre198 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/bmrblib-1.0.1_pre198.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8e9d5a333dbad02514dd51f44003e33a diff --git a/metadata/md5-cache/sci-libs/bmrblib-1.0.2 b/metadata/md5-cache/sci-libs/bmrblib-1.0.2 index 2fbb0a578dd7..d0fda688db4c 100644 --- a/metadata/md5-cache/sci-libs/bmrblib-1.0.2 +++ b/metadata/md5-cache/sci-libs/bmrblib-1.0.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://download.gna.org/bmrblib/bmrblib-1.0.2.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8c40549d115c54ce55cf519742911eb9 diff --git a/metadata/md5-cache/sci-libs/bmrblib-1.0.3 b/metadata/md5-cache/sci-libs/bmrblib-1.0.3 index 59cef37a6e42..3da30e2b5deb 100644 --- a/metadata/md5-cache/sci-libs/bmrblib-1.0.3 +++ b/metadata/md5-cache/sci-libs/bmrblib-1.0.3 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://download.gna.org/bmrblib/bmrblib-1.0.3.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3140b3b40593f6f710ed25718a91d712 diff --git a/metadata/md5-cache/sci-libs/ceres-solver-1.7.0 b/metadata/md5-cache/sci-libs/ceres-solver-1.7.0 new file mode 100644 index 000000000000..5cdfa4919c14 --- /dev/null +++ b/metadata/md5-cache/sci-libs/ceres-solver-1.7.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-cpp/eigen:3 dev-cpp/glog[gflags?] protobuf? ( dev-libs/protobuf ) sparse? ( sci-libs/amd sci-libs/camd sci-libs/ccolamd sci-libs/cholmod[metis?] sci-libs/colamd sci-libs/cxsparse sci-libs/spqr virtual/blas virtual/lapack ) sparse? ( virtual/pkgconfig ) doc? ( dev-python/sphinx ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=Nonlinear least-squares minimizer +EAPI=5 +HOMEPAGE=https://code.google.com/p/ceres-solver/ +IUSE=doc examples gflags metis openmp protobuf +schur +sparse static-libs test +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=BSD +RDEPEND=dev-cpp/eigen:3 dev-cpp/glog[gflags?] protobuf? ( dev-libs/protobuf ) sparse? ( sci-libs/amd sci-libs/camd sci-libs/ccolamd sci-libs/cholmod[metis?] sci-libs/colamd sci-libs/cxsparse sci-libs/spqr virtual/blas virtual/lapack ) +REQUIRED_USE=test? ( gflags ) +SLOT=0 +SRC_URI=https://ceres-solver.googlecode.com/files/ceres-solver-1.7.0.tar.gz +_eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=c33cb9262c9f7ad827d843645c7c5a6e diff --git a/metadata/md5-cache/sci-libs/cminpack-1.3.1 b/metadata/md5-cache/sci-libs/cminpack-1.3.1 new file mode 100644 index 000000000000..7b470f11aa43 --- /dev/null +++ b/metadata/md5-cache/sci-libs/cminpack-1.3.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=C implementation of the MINPACK nonlinear optimization library +EAPI=5 +HOMEPAGE=http://devernay.free.fr/hacks/cminpack/ +IUSE=doc test +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=minpack +SLOT=0 +SRC_URI=http://devernay.free.fr/hacks/cminpack//cminpack-1.3.1.tar.gz +_eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=7e0e45db5a4156dd133ab18ddd9132fe diff --git a/metadata/md5-cache/sci-libs/deap-0.9.1 b/metadata/md5-cache/sci-libs/deap-0.9.1 index 2a885eb2c809..fe6d1a2a82f0 100644 --- a/metadata/md5-cache/sci-libs/deap-0.9.1 +++ b/metadata/md5-cache/sci-libs/deap-0.9.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://deap.googlecode.com/files/deap-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b21a99bbc6a59157ebb560e7ae3d5acb diff --git a/metadata/md5-cache/sci-libs/deap-1.0.0_rc1 b/metadata/md5-cache/sci-libs/deap-1.0.0_rc1 index a0ab9572b3b5..69c8e769dfd6 100644 --- a/metadata/md5-cache/sci-libs/deap-1.0.0_rc1 +++ b/metadata/md5-cache/sci-libs/deap-1.0.0_rc1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://deap.googlecode.com/files/deap-1.0.0rc1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6bd2151437e3421b37b69ae8ba1336ba diff --git a/metadata/md5-cache/sci-libs/deap-1.0.0_rc2 b/metadata/md5-cache/sci-libs/deap-1.0.0_rc2 index 27a76c2ce1ae..877ec2827811 100644 --- a/metadata/md5-cache/sci-libs/deap-1.0.0_rc2 +++ b/metadata/md5-cache/sci-libs/deap-1.0.0_rc2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://deap.googlecode.com/files/deap-1.0.0rc2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f8e7abb83a35bb0cd5bf1442fa617629 diff --git a/metadata/md5-cache/sci-libs/minfx-1.0.3-r1 b/metadata/md5-cache/sci-libs/minfx-1.0.3-r1 index d98013e55376..e3bee8d77b19 100644 --- a/metadata/md5-cache/sci-libs/minfx-1.0.3-r1 +++ b/metadata/md5-cache/sci-libs/minfx-1.0.3-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://download.gna.org/minfx/minfx-1.0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5476dc6c18a0aabf0e046b19668c2374 diff --git a/metadata/md5-cache/sci-libs/minfx-1.0.4 b/metadata/md5-cache/sci-libs/minfx-1.0.4 index 91c78e2caed1..66a1cd4a9bfd 100644 --- a/metadata/md5-cache/sci-libs/minfx-1.0.4 +++ b/metadata/md5-cache/sci-libs/minfx-1.0.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://download.gna.org/minfx/minfx-1.0.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cb18132e6d1b02d11d8b56825750b6d4 diff --git a/metadata/md5-cache/sci-libs/minfx-1.0.4_pre98 b/metadata/md5-cache/sci-libs/minfx-1.0.4_pre98 index 01cfcc6af26c..74a660b3e12c 100644 --- a/metadata/md5-cache/sci-libs/minfx-1.0.4_pre98 +++ b/metadata/md5-cache/sci-libs/minfx-1.0.4_pre98 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/minfx-1.0.4_pre98.tar.xz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8526786889c239cc4afdc0dd886336c0 diff --git a/metadata/md5-cache/sci-libs/minfx-1.0.5 b/metadata/md5-cache/sci-libs/minfx-1.0.5 index 5a582a935ae4..544788de084e 100644 --- a/metadata/md5-cache/sci-libs/minfx-1.0.5 +++ b/metadata/md5-cache/sci-libs/minfx-1.0.5 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://download.gna.org/minfx/minfx-1.0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bee96853959c2a3a4791c68a014f0ab2 diff --git a/metadata/md5-cache/sci-libs/mmtk-2.7.9 b/metadata/md5-cache/sci-libs/mmtk-2.7.9 index 0207dfd4596c..2364af9ef3b8 100644 --- a/metadata/md5-cache/sci-libs/mmtk-2.7.9 +++ b/metadata/md5-cache/sci-libs/mmtk-2.7.9 @@ -10,5 +10,5 @@ RDEPEND=dev-python/cython[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://sourcesup.cru.fr/frs/download.php/4324/MMTK-2.7.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=257a68e72d8b7824bc165d52cc68c097 diff --git a/metadata/md5-cache/sci-libs/scikits_image-0.8.2 b/metadata/md5-cache/sci-libs/scikits_image-0.8.2 index 36d81104794f..f8840812d288 100644 --- a/metadata/md5-cache/sci-libs/scikits_image-0.8.2 +++ b/metadata/md5-cache/sci-libs/scikits_image-0.8.2 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/scikits[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/scikit-image/scikit-image-0.8.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9e7423990515478c2da76ed1574a67d5 diff --git a/metadata/md5-cache/sci-libs/scikits_image-0.9.1 b/metadata/md5-cache/sci-libs/scikits_image-0.9.1 new file mode 100644 index 000000000000..1e245fa5892a --- /dev/null +++ b/metadata/md5-cache/sci-libs/scikits_image-0.9.1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/cython-0.17[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] test? ( dev-python/matplotlib[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/nose[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/coverage[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] sci-libs/scipy[sparse,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +DESCRIPTION=Image processing routines for SciPy +EAPI=5 +HOMEPAGE=http://scikit-image.org/ +IUSE=doc freeimage gtk pyamg qt4 test python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=BSD +RDEPEND=sci-libs/scipy[sparse,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] freeimage? ( media-libs/freeimage ) gtk? ( dev-python/pygtk[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) pyamg? ( dev-python/pyamg[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) qt4? ( dev-python/PyQt4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) +SLOT=0 +SRC_URI=mirror://pypi/s/scikit-image/scikit-image-0.9.1.tar.gz +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=02e8aea478a81ef176e8cb5bfdb71cc4 diff --git a/metadata/md5-cache/sci-libs/scikits_learn-0.13.1 b/metadata/md5-cache/sci-libs/scikits_learn-0.13.1 index 127313f13095..cccbf5a65e77 100644 --- a/metadata/md5-cache/sci-libs/scikits_learn-0.13.1 +++ b/metadata/md5-cache/sci-libs/scikits_learn-0.13.1 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/scikits[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/scikit-learn/scikit-learn-0.13.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5aebc4b5eb3b78555872b6b45a24731b diff --git a/metadata/md5-cache/sci-libs/scikits_learn-0.14.1 b/metadata/md5-cache/sci-libs/scikits_learn-0.14.1 index 94408775ff75..b370652a9c80 100644 --- a/metadata/md5-cache/sci-libs/scikits_learn-0.14.1 +++ b/metadata/md5-cache/sci-libs/scikits_learn-0.14.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/joblib[python_targets_python2_6(-)?,python_targets_python2_7( REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/s/scikit-learn/scikit-learn-0.14.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1be90cf3ad3ee336a63395489c0c723c diff --git a/metadata/md5-cache/sci-libs/scikits_optimization-0.3 b/metadata/md5-cache/sci-libs/scikits_optimization-0.3 index 992c829ab878..e79b39311065 100644 --- a/metadata/md5-cache/sci-libs/scikits_optimization-0.3 +++ b/metadata/md5-cache/sci-libs/scikits_optimization-0.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/s/scikits.optimization/scikits.optimization-0.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=398fba36d2dca212e7d90b9407d6f6f4 diff --git a/metadata/md5-cache/sci-libs/scikits_timeseries-0.91.3-r1 b/metadata/md5-cache/sci-libs/scikits_timeseries-0.91.3-r1 index bbdf408ba151..58873931f714 100644 --- a/metadata/md5-cache/sci-libs/scikits_timeseries-0.91.3-r1 +++ b/metadata/md5-cache/sci-libs/scikits_timeseries-0.91.3-r1 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/scipy[python_targets_python2_6(-)?,python_targets_python2_7(-)? REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pytseries/scikits.timeseries-0.91.3.tar.gz doc? ( mirror://sourceforge/pytseries/scikits.timeseries-0.91.3-html_docs.zip ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=65ddd8b9fbcdc35a4fda4670581139b3 diff --git a/metadata/md5-cache/sci-libs/scipy-0.12.0 b/metadata/md5-cache/sci-libs/scipy-0.12.0 index a409e9123def..f81698999b9e 100644 --- a/metadata/md5-cache/sci-libs/scipy-0.12.0 +++ b/metadata/md5-cache/sci-libs/scipy-0.12.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[lapack,python_targets_python2_6(-)?,python_targets_pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/scipy/scipy-0.12.0.tar.gz doc? ( http://docs.scipy.org/doc/scipy/scipy-html.zip -> scipy-0.12.0-html.zip http://docs.scipy.org/doc/scipy/scipy-ref.pdf -> scipy-0.12.0-ref.pdf ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=42a0939315a0c2790998a6d9b60e7cdf diff --git a/metadata/md5-cache/sci-libs/scipy-0.12.1 b/metadata/md5-cache/sci-libs/scipy-0.12.1 index 385aa6b85d07..a28c15c02b6e 100644 --- a/metadata/md5-cache/sci-libs/scipy-0.12.1 +++ b/metadata/md5-cache/sci-libs/scipy-0.12.1 @@ -4,11 +4,11 @@ DESCRIPTION=Scientific algorithms library for Python EAPI=5 HOMEPAGE=http://www.scipy.org/ IUSE=doc sparse test python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=amd64 ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +KEYWORDS=amd64 ppc ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos LICENSE=BSD LGPL-2 RDEPEND=dev-python/numpy[lapack,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] sci-libs/arpack virtual/cblas virtual/lapack sparse? ( sci-libs/umfpack ) virtual/python-imaging[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] virtual/fortran python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://sourceforge/scipy/scipy-0.12.1.tar.gz doc? ( http://docs.scipy.org/doc/scipy/scipy-html.zip -> scipy-0.12.1-html.zip http://docs.scipy.org/doc/scipy/scipy-ref.pdf -> scipy-0.12.1-ref.pdf ) -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=796dd65fdf0ff39a4884b04a126adf10 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 fortran-2 db8710b355fc5598015c4bc3aad3bdb0 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=35f8ed2f1f6cce45e3d7b461a8ce87c2 diff --git a/metadata/md5-cache/sci-misc/pythoncad-1.37-r1 b/metadata/md5-cache/sci-misc/pythoncad-1.37-r1 index d77122bafec1..760027adc427 100644 --- a/metadata/md5-cache/sci-misc/pythoncad-1.37-r1 +++ b/metadata/md5-cache/sci-misc/pythoncad-1.37-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygtk:2[python_targets_python2_6(-)?,python_targets_python2_7 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/pythoncad/PythonCAD-DS1-R37.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b9ec65d600b372d3b7f0c98f71c8ca03 diff --git a/metadata/md5-cache/sci-visualization/mayavi-4.3.0 b/metadata/md5-cache/sci-visualization/mayavi-4.3.0 index d77d30c3b6ec..c83bc2c3144a 100644 --- a/metadata/md5-cache/sci-visualization/mayavi-4.3.0 +++ b/metadata/md5-cache/sci-visualization/mayavi-4.3.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/apptools-4[python_targets_python2_7(-)?,-python_single_targ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=2 SRC_URI=http://www.enthought.com/repo/ets/mayavi-4.3.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=d1acbae9775e9ae05c9b3c34ab41b7b8 diff --git a/metadata/md5-cache/sci-visualization/veusz-1.17.1-r1 b/metadata/md5-cache/sci-visualization/veusz-1.17.1-r1 index 650000a6b638..d5b8b04820f1 100644 --- a/metadata/md5-cache/sci-visualization/veusz-1.17.1-r1 +++ b/metadata/md5-cache/sci-visualization/veusz-1.17.1-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.gna.org/veusz/veusz-1.17.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ac98c1b4ddc74f90810085b52575ffa6 diff --git a/metadata/md5-cache/sci-visualization/veusz-1.18 b/metadata/md5-cache/sci-visualization/veusz-1.18 index e807e8ea7982..082d88ec58d3 100644 --- a/metadata/md5-cache/sci-visualization/veusz-1.18 +++ b/metadata/md5-cache/sci-visualization/veusz-1.18 @@ -10,5 +10,5 @@ RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://download.gna.org/veusz/veusz-1.18.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=91aa204232c544823ada0202bfeb48b1 diff --git a/metadata/md5-cache/sys-apps/baselayout-prefix-2.2-r3 b/metadata/md5-cache/sys-apps/baselayout-prefix-2.2-r3 index bfeec6781bd8..18551ed4671f 100644 --- a/metadata/md5-cache/sys-apps/baselayout-prefix-2.2-r3 +++ b/metadata/md5-cache/sys-apps/baselayout-prefix-2.2-r3 @@ -8,4 +8,4 @@ LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/baselayout-2.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/baselayout-2.2.tar.bz2 http://dev.gentoo.org/~grobian/distfiles/einfo-1.0.3.tar.xz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=176986165604432523a1afca08335064 +_md5_=feee8d998e08af94570f663637fb987e diff --git a/metadata/md5-cache/sys-apps/bleachbit-0.9.5 b/metadata/md5-cache/sys-apps/bleachbit-0.9.5 index 6843eb09ed8a..f47e975a4419 100644 --- a/metadata/md5-cache/sys-apps/bleachbit-0.9.5 +++ b/metadata/md5-cache/sys-apps/bleachbit-0.9.5 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_py REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/bleachbit/bleachbit-0.9.5.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=803ba0970786787252471a2e8f0c03e9 diff --git a/metadata/md5-cache/sys-apps/bleachbit-0.9.6 b/metadata/md5-cache/sys-apps/bleachbit-0.9.6 index f56d4c91af4f..9fc266b2bd5f 100644 --- a/metadata/md5-cache/sys-apps/bleachbit-0.9.6 +++ b/metadata/md5-cache/sys-apps/bleachbit-0.9.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_py REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://sourceforge/bleachbit/bleachbit-0.9.6.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=98f527aa8fa1ad56eaadf4e41744c0e0 diff --git a/metadata/md5-cache/sys-apps/file-5.15 b/metadata/md5-cache/sys-apps/file-5.15 index fb9d5f339048..4713ad111c0a 100644 --- a/metadata/md5-cache/sys-apps/file-5.15 +++ b/metadata/md5-cache/sys-apps/file-5.15 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=ftp://ftp.astron.com/pub/file/file-5.15.tar.gz ftp://ftp.gw.com/mirrors/pub/unix/file/file-5.15.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4ce52b373fcad1cc8a2e4e869a40eb7f diff --git a/metadata/md5-cache/sys-apps/file-9999 b/metadata/md5-cache/sys-apps/file-9999 index 61120af79c1a..5a9cbf58d8f2 100644 --- a/metadata/md5-cache/sys-apps/file-9999 +++ b/metadata/md5-cache/sys-apps/file-9999 @@ -7,5 +7,5 @@ IUSE=python static-libs zlib python_targets_python2_6 python_targets_python2_7 p LICENSE=BSD-2 RDEPEND=python? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0 ) dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy2_0(-)] ) zlib? ( sys-libs/zlib ) SLOT=0 -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=39eccb3778b3d5570f8c4aa97b9015a2 diff --git a/metadata/md5-cache/sys-apps/pkgcore-9999 b/metadata/md5-cache/sys-apps/pkgcore-9999 index 34d2089b5845..5d47e2a9554d 100644 --- a/metadata/md5-cache/sys-apps/pkgcore-9999 +++ b/metadata/md5-cache/sys-apps/pkgcore-9999 @@ -1,11 +1,12 @@ -DEFINED_PHASES=compile install postinst postrm prepare setup test unpack -DEPEND=>=dev-lang/python-2.5 =dev-python/snakeoil-9999 || ( >=dev-lang/python-2.5 dev-python/pycrypto ) dev-python/sphinx dev-python/pyparsing dev-lang/python dev-vcs/git +DEFINED_PHASES=compile configure install postinst prepare setup test unpack +DEPEND==dev-python/snakeoil-9999[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/sphinx[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pyparsing[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-vcs/git-1.8.2.1 DESCRIPTION=pkgcore package manager -EAPI=3 +EAPI=4 HOMEPAGE=http://pkgcore.googlecode.com/ -IUSE=+doc +IUSE=+doc python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 LICENSE=GPL-2 -RDEPEND=>=dev-lang/python-2.5 =dev-python/snakeoil-9999 || ( >=dev-lang/python-2.5 dev-python/pycrypto ) dev-lang/python +RDEPEND==dev-python/snakeoil-9999[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] +REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils 34e0f373c466bb0e97ba194735f1acf2 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multilib 892e597faee02a5b94eb02ab512e7622 python 305197b0aa1194fa3ef67ca21f6faa7e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e59ea2d250ba14556ec7b129a045d024 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=cbded1f1e12dbedff6264c19ecbc1dff diff --git a/metadata/md5-cache/sys-apps/portage-2.2.7 b/metadata/md5-cache/sys-apps/portage-2.2.7 index b8dcd9299e10..74893397002a 100644 --- a/metadata/md5-cache/sys-apps/portage-2.2.7 +++ b/metadata/md5-cache/sys-apps/portage-2.2.7 @@ -4,11 +4,11 @@ DESCRIPTION=Portage is the package management and distribution system for Gentoo EAPI=2 HOMEPAGE=http://www.gentoo.org/proj/en/portage/index.xml IUSE=build doc epydoc +ipc linguas_ru pypy2_0 python2 python3 selinux xattr python_targets_pypy2_0 python_targets_python3_2 python_targets_python3_3 python_targets_python3_4 python_targets_python2_6 python_targets_python2_7 -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=!build? ( >=net-misc/rsync-2.6.4 userland_GNU? ( >=sys-apps/coreutils-6.4 ) ) RDEPEND=python3? ( =dev-lang/python-3* ) !pypy2_0? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7 dev-lang/python:2.6[threads] ) ) ) ) pypy2_0? ( !python2? ( !python3? ( virtual/pypy:2.0[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7 dev-lang/python:2.6[threads] ) ) ) python_targets_pypy2_0? ( virtual/pypy:2.0 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_python3_4? ( dev-lang/python:3.4 ) !build? ( >=sys-apps/sed-4.0.5 || ( >=app-shells/bash-4.2_p37[readline] ( =app-shells/bash-3.2_p17 ) ) >=app-admin/eselect-1.2 || ( python3? ( =dev-lang/python-3*[ssl] ) !pypy2_0? ( !python2? ( !python3? ( || ( >=dev-lang/python-2.7[ssl] dev-lang/python:2.6[threads,ssl] ) ) ) ) pypy2_0? ( !python2? ( !python3? ( virtual/pypy:2.0[bzip2] ) ) ) python2? ( !python3? ( || ( dev-lang/python:2.7[ssl] dev-lang/python:2.6[ssl,threads] ) ) ) dev-python/python-mhash ) ) elibc_FreeBSD? ( sys-freebsd/freebsd-bin ) elibc_glibc? ( >=sys-apps/sandbox-2.2 ) elibc_uclibc? ( >=sys-apps/sandbox-2.2 ) >=app-misc/pax-utils-0.1.17 xattr? ( kernel_linux? ( || ( >=dev-lang/python-3.3_pre20110902 dev-python/pyxattr ) ) ) selinux? ( || ( >=sys-libs/libselinux-2.0.94[python] =dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-pam-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2.3-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/eventlet-0.13.0[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/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.3.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-0.9.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/oauth2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/dogpile-cache-0.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-daemon[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-pam-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2.3-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/eventlet-0.13.0[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/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/routes-1.12.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.3.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-0.9.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/oauth2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/dogpile-cache-0.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-daemon[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) RESTRICT=test SLOT=grizzly -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=10009da8adddbd3c432cd6b721bf3dfb +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=8d3dc4f17545da8e081418d010589bd5 diff --git a/metadata/md5-cache/sys-auth/keystone-9999 b/metadata/md5-cache/sys-auth/keystone-9999 index c92aa60e938f..c2114f117adf 100644 --- a/metadata/md5-cache/sys-auth/keystone-9999 +++ b/metadata/md5-cache/sys-auth/keystone-9999 @@ -9,5 +9,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) RESTRICT=test SLOT=git-head -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38382cb31f1c8db9cb8b265ebea69d70 diff --git a/metadata/md5-cache/sys-boot/grub-2.00_p5107-r2 b/metadata/md5-cache/sys-boot/grub-2.00_p5107-r2 index e5d591db4d95..6b2bc12943c3 100644 --- a/metadata/md5-cache/sys-boot/grub-2.00_p5107-r2 +++ b/metadata/md5-cache/sys-boot/grub-2.00_p5107-r2 @@ -1,15 +1,15 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend test -DEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) app-misc/pax-utils >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/help2man sys-apps/texinfo static? ( app-arch/xz-utils[static-libs(+)] truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) test? ( dev-libs/libisoburn app-emulation/qemu ) truetype? ( media-fonts/dejavu >=media-fonts/unifont-5 ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) +DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend test unpack +DEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) app-misc/pax-utils >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/help2man sys-apps/texinfo static? ( app-arch/xz-utils[static-libs(+)] truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) test? ( dev-libs/libisoburn app-emulation/qemu ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) DESCRIPTION=GNU GRUB boot loader EAPI=5 HOMEPAGE=http://www.gnu.org/software/grub/ IUSE=custom-cflags debug device-mapper doc efiemu mount +multislot nls static sdl test truetype libzfs grub_platforms_emu grub_platforms_qemu-mips grub_platforms_yeeloong grub_platforms_ieee1275 grub_platforms_coreboot grub_platforms_multiboot grub_platforms_efi-32 grub_platforms_pc grub_platforms_qemu grub_platforms_efi-64 KEYWORDS=amd64 x86 -LICENSE=GPL-3 +LICENSE=GPL-3 truetype? ( BitstreamVera GPL-2-with-font-exception ) RDEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) kernel_linux? ( grub_platforms_efi-32? ( sys-boot/efibootmgr ) grub_platforms_efi-64? ( sys-boot/efibootmgr ) ) !multislot? ( !sys-boot/grub:0 ) REQUIRED_USE=grub_platforms_qemu? ( truetype ) grub_platforms_yeeloong? ( truetype ) RESTRICT=test SLOT=2 -SRC_URI=mirror://gnu/grub/grub-2.00_p5107.tar.xz mirror://gentoo/grub-2.00_p5107.tar.xz http://dev.gentoo.org/~floppym/dist/grub-2.00_p5107.tar.xz +SRC_URI=mirror://gnu/grub/grub-2.00_p5107.tar.xz mirror://gentoo/grub-2.00_p5107.tar.xz http://dev.gentoo.org/~floppym/dist/grub-2.00_p5107.tar.xz truetype? ( mirror://sourceforge/dejavu/dejavu-sans-ttf-2.34.zip http://unifoundry.com/unifont-5.1.20080820.pcf.gz ) _eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb bash-completion-r1 d339dd40b2014cf1edba8592580eef42 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e pax-utils 2424f959506320f5196de8f79fa05297 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=a9659fcd612d7c8fe1b010177d5deba1 +_md5_=8c160705a76d827b760465315ddcfae2 diff --git a/metadata/md5-cache/sys-boot/grub-9999 b/metadata/md5-cache/sys-boot/grub-9999-r1 similarity index 65% rename from metadata/md5-cache/sys-boot/grub-9999 rename to metadata/md5-cache/sys-boot/grub-9999-r1 index 4ae9578a28ca..b8f8c5218a5e 100644 --- a/metadata/md5-cache/sys-boot/grub-9999 +++ b/metadata/md5-cache/sys-boot/grub-9999-r1 @@ -1,13 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare prerm pretend test unpack -DEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) app-misc/pax-utils >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/help2man sys-apps/texinfo static? ( app-arch/xz-utils[static-libs(+)] truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) test? ( dev-libs/libisoburn app-emulation/qemu ) truetype? ( media-fonts/dejavu >=media-fonts/unifont-5 ) >=sys-devel/autogen-5.10 || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool userland_GNU? ( >=sys-apps/coreutils-8.5 ) >=dev-vcs/bzr-2.0.1 +DEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) app-misc/pax-utils >=dev-lang/python-2.5.2 sys-devel/flex sys-devel/bison sys-apps/help2man sys-apps/texinfo static? ( app-arch/xz-utils[static-libs(+)] truetype? ( app-arch/bzip2[static-libs(+)] media-libs/freetype[static-libs(+)] sys-libs/zlib[static-libs(+)] ) ) test? ( dev-libs/libisoburn app-emulation/qemu ) >=sys-devel/autogen-5.10 || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool userland_GNU? ( >=sys-apps/coreutils-8.5 ) >=dev-vcs/git-1.8.2.1 DESCRIPTION=GNU GRUB boot loader EAPI=5 HOMEPAGE=http://www.gnu.org/software/grub/ IUSE=custom-cflags debug device-mapper doc efiemu mount +multislot nls static sdl test truetype libzfs grub_platforms_emu grub_platforms_qemu-mips grub_platforms_yeeloong grub_platforms_ieee1275 grub_platforms_coreboot grub_platforms_multiboot grub_platforms_efi-32 grub_platforms_pc grub_platforms_qemu grub_platforms_efi-64 -LICENSE=GPL-3 +LICENSE=GPL-3 truetype? ( BitstreamVera GPL-2-with-font-exception ) RDEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) truetype? ( media-libs/freetype ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) kernel_linux? ( grub_platforms_efi-32? ( sys-boot/efibootmgr ) grub_platforms_efi-64? ( sys-boot/efibootmgr ) ) !multislot? ( !sys-boot/grub:0 ) REQUIRED_USE=grub_platforms_qemu? ( truetype ) grub_platforms_yeeloong? ( truetype ) RESTRICT=test SLOT=2 -_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb bash-completion-r1 d339dd40b2014cf1edba8592580eef42 bzr 8b59c16d7183cb93649d7abe70dc4c85 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e pax-utils 2424f959506320f5196de8f79fa05297 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2a0f943683639a4f714ebca155c20996 +SRC_URI=truetype? ( mirror://sourceforge/dejavu/dejavu-sans-ttf-2.34.zip http://unifoundry.com/unifont-5.1.20080820.pcf.gz ) +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb bash-completion-r1 d339dd40b2014cf1edba8592580eef42 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 libtool b1c8688e60f9580bcb9bb46e08737eb1 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e pax-utils 2424f959506320f5196de8f79fa05297 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=5b324a8cc3e20f02b3219f11a8f7dafe diff --git a/metadata/md5-cache/sys-boot/raspberrypi-mkimage-0_p20120201 b/metadata/md5-cache/sys-boot/raspberrypi-mkimage-0_p20120201 index 870be2464204..096c057d9340 100644 --- a/metadata/md5-cache/sys-boot/raspberrypi-mkimage-0_p20120201 +++ b/metadata/md5-cache/sys-boot/raspberrypi-mkimage-0_p20120201 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8bf946b4293569a1a00066d1dfc831de diff --git a/metadata/md5-cache/sys-cluster/cinder-2012.2.4-r5 b/metadata/md5-cache/sys-cluster/cinder-2012.2.4-r5 index 54e1c4766440..9345dd9b8d9f 100644 --- a/metadata/md5-cache/sys-cluster/cinder-2012.2.4-r5 +++ b/metadata/md5-cache/sys-cluster/cinder-2012.2.4-r5 @@ -10,5 +10,5 @@ RDEPEND=~dev-python/amqplib-0.6.1[python_targets_python2_7(-)?,-python_single_ta REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/cinder/folsom/2012.2.4/+download/cinder-2012.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=24f66512302fbd5c23682ec6b2c326ab diff --git a/metadata/md5-cache/sys-cluster/cinder-2013.1.3-r4 b/metadata/md5-cache/sys-cluster/cinder-2013.1.3-r4 index 6f921e52ce7f..5d5f52f83120 100644 --- a/metadata/md5-cache/sys-cluster/cinder-2013.1.3-r4 +++ b/metadata/md5-cache/sys-cluster/cinder-2013.1.3-r4 @@ -10,5 +10,5 @@ RDEPEND=~dev-python/amqplib-0.6.1[python_targets_python2_7(-)?,-python_single_ta REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/cinder/grizzly/2013.1.3/+download/cinder-2013.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2f93db8ef46a58f0f9fd60a2ccdb4e3e diff --git a/metadata/md5-cache/sys-cluster/cinder-2013.1.9999 b/metadata/md5-cache/sys-cluster/cinder-2013.1.9999 index e13402fed086..1bc3edff5777 100644 --- a/metadata/md5-cache/sys-cluster/cinder-2013.1.9999 +++ b/metadata/md5-cache/sys-cluster/cinder-2013.1.9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND==dev-python/amqplib-0.6.1-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/anyjson-0.2.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.17[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/kombu-1.0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lockfile-0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lxml-2.3[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/webob-1.2.3-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/stevedore-0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/suds-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paramiko[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-0.9.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/setuptools-git-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-glanceclient-0.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-swiftclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =sys-block/iscsitarget-1.4.20.2_p20130821 sys-fs/lvm2 sys-block/open-iscsi python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d488b3cc9b9e44ff4cdf99483cf5b77b diff --git a/metadata/md5-cache/sys-cluster/cinder-2013.2.9999 b/metadata/md5-cache/sys-cluster/cinder-2013.2.9999 new file mode 100644 index 000000000000..271c317657d4 --- /dev/null +++ b/metadata/md5-cache/sys-cluster/cinder-2013.2.9999 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-vcs/git +DESCRIPTION=Cinder is the OpenStack Block storage service. This is a spin out of nova-volumes. +EAPI=5 +HOMEPAGE=https://launchpad.net/cinder +IUSE=+api +scheduler +volume mysql postgres sqlite python_targets_python2_7 +LICENSE=Apache-2.0 +RDEPEND==dev-python/amqplib-0.6.1-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-1.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.13.0[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/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/kombu-2.4.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lockfile-0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/paramiko-1.8.0[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[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-glanceclient-0.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-novaclient-2.15.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-swiftclient-1.5[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/six[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/stevedore-0.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/suds-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.2.3-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =sys-block/iscsitarget-1.4.20.2_p20130821 sys-fs/lvm2 sys-block/open-iscsi python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) +SLOT=0 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=4876a289e182a3d12ae0d69104b54a87 diff --git a/metadata/md5-cache/sys-cluster/cinder-9999 b/metadata/md5-cache/sys-cluster/cinder-9999 index 1c359f4f21b7..30ddc02f3de4 100644 --- a/metadata/md5-cache/sys-cluster/cinder-9999 +++ b/metadata/md5-cache/sys-cluster/cinder-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/amqplib-0.6.1-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.13.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/kombu-2.4.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lockfile-0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netaddr[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/pbr-0.5.21[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/greenlet-0.3.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pastedeploy-1.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/stevedore-0.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/suds-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/paramiko-1.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-0.9.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-glanceclient-0.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-swiftclient-1.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =sys-block/iscsitarget-1.4.20.2_p20130821 sys-fs/lvm2 sys-block/open-iscsi python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5e3b91f809524afad1d2da6dd2c2e4ef diff --git a/metadata/md5-cache/sys-cluster/neutron-2012.2.4-r7 b/metadata/md5-cache/sys-cluster/neutron-2012.2.4-r7 index 8121ef6f094a..129e636a55c7 100644 --- a/metadata/md5-cache/sys-cluster/neutron-2012.2.4-r7 +++ b/metadata/md5-cache/sys-cluster/neutron-2012.2.4-r7 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://launchpad.net/neutron/folsom/2012.2.4/+download/quantum-2012.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9d208a66b4f66c01d5e07ba88acf4936 diff --git a/metadata/md5-cache/sys-cluster/neutron-2013.1.3-r6 b/metadata/md5-cache/sys-cluster/neutron-2013.1.3-r6 index 58076d84447c..65d8b3a3321e 100644 --- a/metadata/md5-cache/sys-cluster/neutron-2013.1.3-r6 +++ b/metadata/md5-cache/sys-cluster/neutron-2013.1.3-r6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=http://launchpad.net/neutron/grizzly/2013.1.3/+download/quantum-2013.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1707fdcbd14ab4f213819664b3c69772 diff --git a/metadata/md5-cache/sys-cluster/neutron-2013.1.9999 b/metadata/md5-cache/sys-cluster/neutron-2013.1.9999 index cbc55e1e6be3..c42bb2c9af9a 100644 --- a/metadata/md5-cache/sys-cluster/neutron-2013.1.9999 +++ b/metadata/md5-cache/sys-cluster/neutron-2013.1.9999 @@ -9,5 +9,5 @@ RDEPEND=>=dev-python/pastedeploy-1.5.0-r1[python_targets_python2_7(-)?,-python_s REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) RESTRICT=test SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3c545bf6d4c05bab1a812cec4dcd274f diff --git a/metadata/md5-cache/sys-cluster/neutron-2013.2.9999 b/metadata/md5-cache/sys-cluster/neutron-2013.2.9999 new file mode 100644 index 000000000000..4e8742770555 --- /dev/null +++ b/metadata/md5-cache/sys-cluster/neutron-2013.2.9999 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile config configure install prepare setup test unpack +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/cliff-1.4.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/coverage-3.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/fixtures-0.3.14[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mock-1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/mox-0.5.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/subunit[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testrepository-0.0.17[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/testtools-0.9.32[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webtest-2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/configobj[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-vcs/git +DESCRIPTION=Quantum is a virtual network service for Openstack. +EAPI=5 +HOMEPAGE=https://launchpad.net/neutron +IUSE=+dhcp +l3 +metadata +openvswitch +server test sqlite mysql postgres python_targets_python2_7 +LICENSE=Apache-2.0 +RDEPEND=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/amqplib-0.6.1-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-0.9.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.13.0[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[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/requests-1.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/jsonrpclib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/kombu-2.4.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-neutronclient-2.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <=dev-python/python-neutronclient-3.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,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/python-keystoneclient-0.3.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/alembic-0.4.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/six[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/stevedore-0.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/oslo-config-1.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-novaclient-2.15.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyudev[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] net-misc/bridge-utils net-misc/openvswitch dhcp? ( net-dns/dnsmasq[dhcp-tools] ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) +RESTRICT=test +SLOT=0 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=ce5b174c3df6e2b33812b228290a332d diff --git a/metadata/md5-cache/sys-cluster/neutron-9999 b/metadata/md5-cache/sys-cluster/neutron-9999 index 869b7e20fd9a..3b1fe690f5e6 100644 --- a/metadata/md5-cache/sys-cluster/neutron-9999 +++ b/metadata/md5-cache/sys-cluster/neutron-9999 @@ -9,5 +9,5 @@ RDEPEND=>=dev-python/pastedeploy-1.5.0-r1[python_targets_python2_7(-)?,-python_s REQUIRED_USE=|| ( mysql postgres sqlite ) || ( python_targets_python2_7 ) RESTRICT=test SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1d5b803afb5f8e6da52f7585dc0ebb57 diff --git a/metadata/md5-cache/sys-cluster/nova-2012.2.4-r10 b/metadata/md5-cache/sys-cluster/nova-2012.2.4-r10 index 6527987f3827..50b48f9ce718 100644 --- a/metadata/md5-cache/sys-cluster/nova-2012.2.4-r10 +++ b/metadata/md5-cache/sys-cluster/nova-2012.2.4-r10 @@ -10,5 +10,5 @@ RDEPEND=~dev-python/amqplib-0.6.1[python_targets_python2_7(-)?,-python_single_ta REQUIRED_USE=|| ( mysql postgres sqlite ) || ( kvm xen ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/nova/folsom/2012.2.4/+download/nova-2012.2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=af5d45a68d6a45f89c4090e2c1a0880b diff --git a/metadata/md5-cache/sys-cluster/nova-2013.1.3-r6 b/metadata/md5-cache/sys-cluster/nova-2013.1.3-r6 index a4e4fb1f825f..91e62b2619cf 100644 --- a/metadata/md5-cache/sys-cluster/nova-2013.1.3-r6 +++ b/metadata/md5-cache/sys-cluster/nova-2013.1.3-r6 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/amqplib-0.6.1[python_targets_python2_7(-)?,-python_single_t REQUIRED_USE=|| ( mysql postgres sqlite ) || ( kvm xen ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/nova/grizzly/2013.1.3/+download/nova-2013.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4cc408955ffe974f2755a4585e69c49e diff --git a/metadata/md5-cache/sys-cluster/nova-2013.1.9999 b/metadata/md5-cache/sys-cluster/nova-2013.1.9999 index 7a5551b544d0..bf020eefbb45 100644 --- a/metadata/md5-cache/sys-cluster/nova-2013.1.9999 +++ b/metadata/md5-cache/sys-cluster/nova-2013.1.9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/amqplib-0.6.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/anyjson-0.2.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/cheetah-2.4.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/lxml-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.17[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/kombu-1.0.4-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/routes-1.12.3-r1[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/greenlet-0.3.1[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/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/suds-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paramiko[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyasn1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-0.9.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/httplib2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/setuptools-git-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-cinderclient-1.0.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-glanceclient-0.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-neutronclient-2.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <=dev-python/python-neutronclient-3.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/stevedore-0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/oslo-config-1.1.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( mysql postgres sqlite ) || ( kvm xen ) || ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f17c666267a7aa73126ed68bed498620 diff --git a/metadata/md5-cache/sys-cluster/nova-2013.2.9999 b/metadata/md5-cache/sys-cluster/nova-2013.2.9999 new file mode 100644 index 000000000000..38e779614384 --- /dev/null +++ b/metadata/md5-cache/sys-cluster/nova-2013.2.9999 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-vcs/git +DESCRIPTION=Nova is a cloud computing fabric controller (main part of an IaaS system). It is written in Python. +EAPI=5 +HOMEPAGE=https://launchpad.net/nova +IUSE=+api +cert +compute +conductor +consoleauth +kvm +network +novncproxy +scheduler +spicehtml5proxy +xvpvncproxy sqlite mysql postgres xen python_targets_python2_7 +LICENSE=Apache-2.0 +RDEPEND=sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/amqplib-0.6.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/anyjson-0.3.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/boto-2.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/boto-2.13.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.13.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/jinja[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/kombu-2.4.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/routes-1.12.3-r1[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/greenlet-0.3.2[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/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/suds-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/paramiko-1.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyasn1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-0.9.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-cinderclient-1.0.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-neutronclient-2.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <=dev-python/python-neutronclient-3.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-glanceclient-0.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.3.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/stevedore-0.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/websockify-0.5.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/oslo-config-1.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-emulation/libvirt[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] novncproxy? ( www-apps/novnc ) kvm? ( app-emulation/qemu ) xen? ( app-emulation/xen app-emulation/xen-tools ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( mysql postgres sqlite ) || ( kvm xen ) || ( python_targets_python2_7 ) +SLOT=0 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=83da7ea0c2f019d16ef3b727cb0c93e2 diff --git a/metadata/md5-cache/sys-cluster/nova-9999 b/metadata/md5-cache/sys-cluster/nova-9999 index 35816134cf3f..308aa0a6fce6 100644 --- a/metadata/md5-cache/sys-cluster/nova-9999 +++ b/metadata/md5-cache/sys-cluster/nova-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/amqplib-0.6.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/anyjson-0.2.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/boto[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[mysql,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/sqlalchemy-0.7.8[postgres,python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/d2to1-0.2.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/eventlet-0.9.17[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jinja-2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/jsonschema-1.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !~dev-python/jsonschema-1.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/kombu-1.0.4-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lxml-2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.16[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/routes-1.12.3-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/six[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/greenlet-0.3.1[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/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/netaddr-0.7.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/suds-0.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paramiko[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyasn1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/Babel-0.9.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-cinderclient-1.0.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-glanceclient-0.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-neutronclient-2.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <=dev-python/python-neutronclient-3.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/stevedore-0.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/websockify-0.5.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/oslo-config-1.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] app-emulation/libvirt[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] novncproxy? ( www-apps/novnc ) kvm? ( app-emulation/qemu ) xen? ( app-emulation/xen app-emulation/xen-tools ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( mysql postgres sqlite ) || ( kvm xen ) || ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a8d1b95b2dddd0e38a6c9c7a176adf4d diff --git a/metadata/md5-cache/sys-cluster/openstack-meta-2013.2.9999 b/metadata/md5-cache/sys-cluster/openstack-meta-2013.2.9999 new file mode 100644 index 000000000000..3ecb28de27de --- /dev/null +++ b/metadata/md5-cache/sys-cluster/openstack-meta-2013.2.9999 @@ -0,0 +1,9 @@ +DEFINED_PHASES=- +DESCRIPTION=A openstack meta-package for installing the various openstack pieces +EAPI=5 +HOMEPAGE=https://openstack.org +IUSE=keystone swift neutron glance cinder nova horizon +LICENSE=Apache-2.0 +RDEPEND=keystone? ( ~sys-auth/keystone-2013.2.9999 ) swift? ( ~sys-cluster/swift-2013.2.9999 ) neutron? ( ~sys-cluster/neutron-2013.2.9999 ) glance? ( ~app-admin/glance-2013.2.9999 ) cinder? ( ~sys-cluster/cinder-2013.2.9999 ) nova? ( ~sys-cluster/nova-2013.2.9999 ) horizon? ( ~www-apps/horizon-2013.2.9999 ) +SLOT=0 +_md5_=61d4e3e3f271514eef35a9a69c9a084d diff --git a/metadata/md5-cache/sys-cluster/pbs-python-4.3.3-r1 b/metadata/md5-cache/sys-cluster/pbs-python-4.3.3-r1 index 106dfb10c9c2..2745f80a6e91 100644 --- a/metadata/md5-cache/sys-cluster/pbs-python-4.3.3-r1 +++ b/metadata/md5-cache/sys-cluster/pbs-python-4.3.3-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-cluster/torque python_targets_python2_6? ( >=dev-lang/python-2.6.8-r REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=ftp://ftp.sara.nl/pub/outgoing/pbs_python-4.3.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a0329742f4da26c890fb914606f30248 diff --git a/metadata/md5-cache/sys-cluster/polysh-0.4-r1 b/metadata/md5-cache/sys-cluster/polysh-0.4-r1 index 1f88a4c3dd04..838c8488b3d5 100644 --- a/metadata/md5-cache/sys-cluster/polysh-0.4-r1 +++ b/metadata/md5-cache/sys-cluster/polysh-0.4-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://guichaz.free.fr/polysh/files/polysh-0.4.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c2c7edb1afe2af7eff48f97b52f33f94 diff --git a/metadata/md5-cache/sys-cluster/swift-1.8.0-r4 b/metadata/md5-cache/sys-cluster/swift-1.8.0-r4 index 7e981ae6417b..cb69ae4aa0df 100644 --- a/metadata/md5-cache/sys-cluster/swift-1.8.0-r4 +++ b/metadata/md5-cache/sys-cluster/swift-1.8.0-r4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/eventlet[python_targets_python2_7(-)?,-python_single_target_p REQUIRED_USE=|| ( proxy account container object ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/swift/grizzly/1.8.0/+download/swift-1.8.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5eca513596e9d8281be0eeec8d8a834a diff --git a/metadata/md5-cache/sys-cluster/swift-1.9.1 b/metadata/md5-cache/sys-cluster/swift-1.9.1 index e772f0a5c0fc..b6b7fb22d2b3 100644 --- a/metadata/md5-cache/sys-cluster/swift-1.9.1 +++ b/metadata/md5-cache/sys-cluster/swift-1.9.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/eventlet-0.9.15[python_targets_python2_7(-)?,-python_single REQUIRED_USE=|| ( proxy account container object ) || ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/swift/havana/1.9.1/+download/swift-1.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6a1144b35d8c690de7722340b57ee448 diff --git a/metadata/md5-cache/sys-cluster/swift-2013.1.9999 b/metadata/md5-cache/sys-cluster/swift-2013.1.9999 index 2d5e276581c2..ee8d28b7918a 100644 --- a/metadata/md5-cache/sys-cluster/swift-2013.1.9999 +++ b/metadata/md5-cache/sys-cluster/swift-2013.1.9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/eventlet[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/greenlet[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netifaces[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/simplejson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyxattr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/configobj[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/webob-1.0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( proxy account container object ) || ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=fa170c6d4e3b7ce4aa2229dbd78fb6f1 diff --git a/metadata/md5-cache/sys-cluster/swift-2013.2.9999 b/metadata/md5-cache/sys-cluster/swift-2013.2.9999 new file mode 100644 index 000000000000..4469011c654f --- /dev/null +++ b/metadata/md5-cache/sys-cluster/swift-2013.2.9999 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install postinst prepare setup test unpack +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/hacking-0.5.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/mock-0.8.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) userland_GNU? ( >=sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-vcs/git +DESCRIPTION=A highly available, distributed, eventually consistent object/blob store +EAPI=5 +HOMEPAGE=https://launchpad.net/swift +IUSE=proxy account container object test +memcache python_targets_python2_7 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/dnspython-1.9.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.15[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/netifaces-0.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pastedeploy-1.3.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/simplejson-2.0.9[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyxattr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-swiftclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] memcache? ( net-misc/memcached ) net-misc/rsync[xattr] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( proxy account container object ) || ( python_targets_python2_7 ) +SLOT=0 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=265f31acb3c40ff02e1135ac56343554 diff --git a/metadata/md5-cache/sys-cluster/swift-9999 b/metadata/md5-cache/sys-cluster/swift-9999 index e7bc2ddc38ee..e0eb813dc17f 100644 --- a/metadata/md5-cache/sys-cluster/swift-9999 +++ b/metadata/md5-cache/sys-cluster/swift-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/eventlet-0.9.15[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/greenlet-0.3.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/netifaces-0.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pastedeploy-1.3.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/simplejson-2.0.9[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyxattr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/dnspython-1.10.0-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-swiftclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] memcache? ( net-misc/memcached ) net-misc/rsync[xattr] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( proxy account container object ) || ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=207a7b809ca971d11aebd83c1013ce58 diff --git a/metadata/md5-cache/sys-fs/bedup-9999 b/metadata/md5-cache/sys-fs/bedup-9999 index 53065138f875..1852366569dd 100644 --- a/metadata/md5-cache/sys-fs/bedup-9999 +++ b/metadata/md5-cache/sys-fs/bedup-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-python/cffi-0.5[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=dev-python/pycparser-2.09.1-r1[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=sys-fs/btrfs-progs-9999 dev-python/alembic[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/contextlib2[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pyxdg[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/sqlalchemy[sqlite,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] virtual/python-argparse[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) python_targets_python3_2? ( >=dev-lang/python-3.2.5-r2:3.2 ) python_targets_python3_3? ( >=dev-lang/python-3.3.2-r2:3.3 ) dev-python/python-exec:=[python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2bfdd5be3c7eedd52b25f2f965483b02 diff --git a/metadata/md5-cache/sys-fs/s3ql-1.15 b/metadata/md5-cache/sys-fs/s3ql-1.15 index f93de849d4f9..50fe31f39a2b 100644 --- a/metadata/md5-cache/sys-fs/s3ql-1.15 +++ b/metadata/md5-cache/sys-fs/s3ql-1.15 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://s3ql.googlecode.com/files/s3ql-1.15.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0d51908ae172916e2db4073257d49e61 diff --git a/metadata/md5-cache/sys-fs/s3ql-1.16 b/metadata/md5-cache/sys-fs/s3ql-1.16 index 939182eaf08a..f356fa60837c 100644 --- a/metadata/md5-cache/sys-fs/s3ql-1.16 +++ b/metadata/md5-cache/sys-fs/s3ql-1.16 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://s3ql.googlecode.com/files/s3ql-1.16.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2520d26c21dc9b088960c4f683c560fe diff --git a/metadata/md5-cache/sys-fs/s3ql-2.2 b/metadata/md5-cache/sys-fs/s3ql-2.2 index 9092270fb015..cc65ea1e9e12 100644 --- a/metadata/md5-cache/sys-fs/s3ql-2.2 +++ b/metadata/md5-cache/sys-fs/s3ql-2.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python3_3(-)?,-python_single_target REQUIRED_USE=|| ( python_targets_python3_3 ) SLOT=0 SRC_URI=http://s3ql.googlecode.com/files/s3ql-2.2.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=18df3f8c4c06c38c4bfb07d24fbb21d8 diff --git a/metadata/md5-cache/sys-fs/s3ql-2.3 b/metadata/md5-cache/sys-fs/s3ql-2.3 index 5edfcca7b61f..b2ead97bb6a3 100644 --- a/metadata/md5-cache/sys-fs/s3ql-2.3 +++ b/metadata/md5-cache/sys-fs/s3ql-2.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python3_3(-)?,-python_single_target REQUIRED_USE=|| ( python_targets_python3_3 ) SLOT=0 SRC_URI=http://s3ql.googlecode.com/files/s3ql-2.3.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=85fed7d1abe3ffbc3df31e362aca7003 diff --git a/metadata/md5-cache/sys-fs/s3ql-2.4 b/metadata/md5-cache/sys-fs/s3ql-2.4 index b8e051b91036..915f78f193aa 100644 --- a/metadata/md5-cache/sys-fs/s3ql-2.4 +++ b/metadata/md5-cache/sys-fs/s3ql-2.4 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python3_3(-)?,-python_single_target REQUIRED_USE=|| ( python_targets_python3_3 ) SLOT=0 SRC_URI=http://s3ql.googlecode.com/files/s3ql-2.4.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5facd97ae5ffcbb92456a2c5373c9bec diff --git a/metadata/md5-cache/sys-fs/s3ql-2.5 b/metadata/md5-cache/sys-fs/s3ql-2.5 index 3c216952a43f..b28d9d1e56b2 100644 --- a/metadata/md5-cache/sys-fs/s3ql-2.5 +++ b/metadata/md5-cache/sys-fs/s3ql-2.5 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python3_3(-)?,-python_single_target REQUIRED_USE=|| ( python_targets_python3_3 ) SLOT=0 SRC_URI=http://s3ql.googlecode.com/files/s3ql-2.5.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=399752bb09786d2984efae7b9c05abf2 diff --git a/metadata/md5-cache/sys-fs/traydevice-1.6.2-r1 b/metadata/md5-cache/sys-fs/traydevice-1.6.2-r1 index de49063df2df..4d272f250a13 100644 --- a/metadata/md5-cache/sys-fs/traydevice-1.6.2-r1 +++ b/metadata/md5-cache/sys-fs/traydevice-1.6.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/dbus-python[python_targets_python2_6(-)?,python_targets_pytho REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=mirror://nongnu/traydevice/traydevice-1.6.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5b36334a4fe2f937dff2c722fc65b6eb diff --git a/metadata/md5-cache/sys-fs/udiskie-0.5.0 b/metadata/md5-cache/sys-fs/udiskie-0.5.0 index b176c5ded6a1..d16547d36813 100644 --- a/metadata/md5-cache/sys-fs/udiskie-0.5.0 +++ b/metadata/md5-cache/sys-fs/udiskie-0.5.0 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/dbus-python-1.2.0 >=dev-python/notify-python-0.1.1-r2 >=dev REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/u/udiskie/udiskie-0.5.0-1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ff3cacdb2bce428d62177e68985634b3 diff --git a/metadata/md5-cache/sys-kernel/aufs-sources-3.4.67 b/metadata/md5-cache/sys-kernel/aufs-sources-3.4.67 new file mode 100644 index 000000000000..37162775d909 --- /dev/null +++ b/metadata/md5-cache/sys-kernel/aufs-sources-3.4.67 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( =dev-lang/python-2* ) +DESCRIPTION=Full sources including the Gentoo patchset for the 3.4 kernel tree and aufs3 support +EAPI=5 +HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/ +IUSE=deblob module proc vanilla symlink build deblob +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 !deblob? ( freedist ) +PDEPEND=>=sys-fs/aufs-util-3.2 !build? ( virtual/dev-manager ) +RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=3.4.67 +SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-3.4 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-check -> deblob-check-3.4 ) http://dev.gentoo.org/~jlec/distfiles/aufs-sources-3.4_p20131014.tar.xz !vanilla? ( mirror://gentoo/genpatches-3.4-48.base.tar.xz mirror://gentoo/genpatches-3.4-48.extras.tar.xz ) +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 kernel-2 72c82b0482225ffcdcdbaf48b37cea58 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=f9d80b06278218452f8b51f469fcd1fe diff --git a/metadata/md5-cache/sys-kernel/genkernel-next-38 b/metadata/md5-cache/sys-kernel/genkernel-next-40 similarity index 95% rename from metadata/md5-cache/sys-kernel/genkernel-next-38 rename to metadata/md5-cache/sys-kernel/genkernel-next-40 index 70499b07c1c3..5cd9cf6c1a25 100644 --- a/metadata/md5-cache/sys-kernel/genkernel-next-38 +++ b/metadata/md5-cache/sys-kernel/genkernel-next-40 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm ~x86 LICENSE=GPL-2 RDEPEND=app-text/asciidoc sys-fs/e2fsprogs 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 ) plymouth? ( sys-boot/plymouth ) app-portage/portage-utils app-arch/cpio >=app-misc/pax-utils-0.6 !=sys-devel/binutils-2.11.90.0.31 ) deblob? ( =dev-lang/python-2* ) +DESCRIPTION=Full sources including the Gentoo patchset for the 3.0 kernel tree +EAPI=5 +HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches +IUSE=deblob symlink build deblob +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 !deblob? ( freedist ) +PDEPEND=!build? ( virtual/dev-manager ) +RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=3.0.101 +SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.0.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-3.0 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-check -> deblob-check-3.0 ) mirror://gentoo/genpatches-3.0-71.base.tar.xz mirror://gentoo/genpatches-3.0-71.extras.tar.xz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 kernel-2 72c82b0482225ffcdcdbaf48b37cea58 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=1b1fa3b9b38d559bad2bd288cef24320 diff --git a/metadata/md5-cache/sys-kernel/gentoo-sources-3.4.67 b/metadata/md5-cache/sys-kernel/gentoo-sources-3.4.67 new file mode 100644 index 000000000000..b6329954e18a --- /dev/null +++ b/metadata/md5-cache/sys-kernel/gentoo-sources-3.4.67 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst setup test unpack +DEPEND=!build? ( sys-apps/sed >=sys-devel/binutils-2.11.90.0.31 ) deblob? ( =dev-lang/python-2* ) +DESCRIPTION=Full sources including the Gentoo patchset for the 3.4 kernel tree +EAPI=5 +HOMEPAGE=http://dev.gentoo.org/~mpagano/genpatches +IUSE=deblob symlink build deblob +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=GPL-2 !deblob? ( freedist ) +PDEPEND=!build? ( virtual/dev-manager ) +RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) +RESTRICT=binchecks strip +SLOT=3.4.67 +SRC_URI=mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-3.4 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-check -> deblob-check-3.4 ) mirror://gentoo/genpatches-3.4-48.base.tar.xz mirror://gentoo/genpatches-3.4-48.extras.tar.xz +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 kernel-2 72c82b0482225ffcdcdbaf48b37cea58 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=709305993e3c548e9d1407639caae1f8 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-3.0.100 b/metadata/md5-cache/sys-kernel/vanilla-sources-3.0.101 similarity index 90% rename from metadata/md5-cache/sys-kernel/vanilla-sources-3.0.100 rename to metadata/md5-cache/sys-kernel/vanilla-sources-3.0.101 index 6daed68c0091..bcb7fb79330d 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-3.0.100 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-3.0.101 @@ -9,7 +9,7 @@ LICENSE=GPL-2 !deblob? ( freedist ) PDEPEND=!build? ( virtual/dev-manager ) RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=3.0.100 -SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.0.100.xz mirror://kernel/linux/kernel/v3.x/linux-3.0.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-3.0 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-check -> deblob-check-3.0 ) +SLOT=3.0.101 +SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.0.101.xz mirror://kernel/linux/kernel/v3.x/linux-3.0.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-3.0 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.0.N/deblob-check -> deblob-check-3.0 ) _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 kernel-2 72c82b0482225ffcdcdbaf48b37cea58 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=17979a42df5f8c3229a5a8f192753f21 +_md5_=126262bd5fa70c6a1b16a74a21d24e26 diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-3.4.66 b/metadata/md5-cache/sys-kernel/vanilla-sources-3.4.67 similarity index 90% rename from metadata/md5-cache/sys-kernel/vanilla-sources-3.4.66 rename to metadata/md5-cache/sys-kernel/vanilla-sources-3.4.67 index 4977164027c7..cf4ac6047dfa 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-3.4.66 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-3.4.67 @@ -9,7 +9,7 @@ LICENSE=GPL-2 !deblob? ( freedist ) PDEPEND=!build? ( virtual/dev-manager ) RDEPEND=!build? ( >=sys-libs/ncurses-5.2 sys-devel/make dev-lang/perl sys-devel/bc ) RESTRICT=binchecks strip -SLOT=3.4.66 -SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.4.66.xz mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-3.4 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-check -> deblob-check-3.4 ) +SLOT=3.4.67 +SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.4.67.xz mirror://kernel/linux/kernel/v3.x/linux-3.4.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-3.4 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.4.N/deblob-check -> deblob-check-3.4 ) _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 kernel-2 72c82b0482225ffcdcdbaf48b37cea58 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=3bc8e767d3df1bda4dd56c2e7efd9c6c +_md5_=d079e527fdc757cc7d8332d453fb41f7 diff --git a/metadata/md5-cache/sys-power/apcupsd-3.14.10-r1 b/metadata/md5-cache/sys-power/apcupsd-3.14.10-r1 deleted file mode 100644 index 58884217f68c..000000000000 --- a/metadata/md5-cache/sys-power/apcupsd-3.14.10-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=cgi? ( >=media-libs/gd-1.8.4 ) nls? ( sys-devel/gettext ) snmp? ( net-analyzer/net-snmp ) gnome? ( >=x11-libs/gtk+-2.4.0:2 dev-libs/glib:2 >=gnome-base/gconf-2.0 ) virtual/pkgconfig -DESCRIPTION=APC UPS daemon with integrated tcp/ip remote shutdown -EAPI=4 -HOMEPAGE=http://www.apcupsd.org/ -IUSE=snmp +usb cgi nls gnome kernel_linux -KEYWORDS=~amd64 ~arm ~ppc ~x86 ~x86-fbsd -LICENSE=GPL-2 -RDEPEND=cgi? ( >=media-libs/gd-1.8.4 ) nls? ( sys-devel/gettext ) snmp? ( net-analyzer/net-snmp ) gnome? ( >=x11-libs/gtk+-2.4.0:2 dev-libs/glib:2 >=gnome-base/gconf-2.0 ) sys-apps/openrc virtual/mailx -SLOT=0 -SRC_URI=mirror://sourceforge/apcupsd/apcupsd-3.14.10.tar.gz -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=6d258cdc3be98a02710545de8620a73d diff --git a/metadata/md5-cache/sys-power/apcupsd-3.14.10-r2 b/metadata/md5-cache/sys-power/apcupsd-3.14.10-r2 deleted file mode 100644 index b4cda33180c3..000000000000 --- a/metadata/md5-cache/sys-power/apcupsd-3.14.10-r2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=cgi? ( >=media-libs/gd-1.8.4 ) nls? ( sys-devel/gettext ) snmp? ( net-analyzer/net-snmp ) gnome? ( >=x11-libs/gtk+-2.4.0:2 dev-libs/glib:2 >=gnome-base/gconf-2.0 ) virtual/pkgconfig virtual/pkgconfig -DESCRIPTION=APC UPS daemon with integrated tcp/ip remote shutdown -EAPI=4 -HOMEPAGE=http://www.apcupsd.org/ -IUSE=snmp +usb cgi nls gnome kernel_linux -KEYWORDS=~amd64 ~arm ~ppc ~x86 ~x86-fbsd -LICENSE=GPL-2 -RDEPEND=cgi? ( >=media-libs/gd-1.8.4 ) nls? ( sys-devel/gettext ) snmp? ( net-analyzer/net-snmp ) gnome? ( >=x11-libs/gtk+-2.4.0:2 dev-libs/glib:2 >=gnome-base/gconf-2.0 ) sys-apps/openrc virtual/mailx -SLOT=0 -SRC_URI=mirror://sourceforge/apcupsd/apcupsd-3.14.10.tar.gz -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=8649971d3d42f70e848598b6e1744c9c diff --git a/metadata/md5-cache/sys-power/apcupsd-3.14.10-r4 b/metadata/md5-cache/sys-power/apcupsd-3.14.10-r4 deleted file mode 100644 index bbabea99f124..000000000000 --- a/metadata/md5-cache/sys-power/apcupsd-3.14.10-r4 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=|| ( >=sys-apps/util-linux-2.23[tty-helpers(-)] <=sys-apps/sysvinit-2.88-r4 ) cgi? ( >=media-libs/gd-1.8.4 ) nls? ( sys-devel/gettext ) snmp? ( net-analyzer/net-snmp ) gnome? ( >=x11-libs/gtk+-2.4.0:2 dev-libs/glib:2 >=gnome-base/gconf-2.0 ) virtual/pkgconfig virtual/pkgconfig -DESCRIPTION=APC UPS daemon with integrated tcp/ip remote shutdown -EAPI=4 -HOMEPAGE=http://www.apcupsd.org/ -IUSE=snmp +usb cgi nls gnome kernel_linux systemd -LICENSE=GPL-2 -RDEPEND=|| ( >=sys-apps/util-linux-2.23[tty-helpers(-)] <=sys-apps/sysvinit-2.88-r4 ) cgi? ( >=media-libs/gd-1.8.4 ) nls? ( sys-devel/gettext ) snmp? ( net-analyzer/net-snmp ) gnome? ( >=x11-libs/gtk+-2.4.0:2 dev-libs/glib:2 >=gnome-base/gconf-2.0 ) sys-apps/openrc virtual/mailx -SLOT=0 -SRC_URI=mirror://sourceforge/apcupsd/apcupsd-3.14.10.tar.gz -_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=14985619603709c6f5d769b46187b82f diff --git a/metadata/md5-cache/sys-power/apcupsd-3.14.10-r5 b/metadata/md5-cache/sys-power/apcupsd-3.14.10-r5 index 58ce87a8922f..a9310fe4d7fb 100644 --- a/metadata/md5-cache/sys-power/apcupsd-3.14.10-r5 +++ b/metadata/md5-cache/sys-power/apcupsd-3.14.10-r5 @@ -4,9 +4,10 @@ DESCRIPTION=APC UPS daemon with integrated tcp/ip remote shutdown EAPI=4 HOMEPAGE=http://www.apcupsd.org/ IUSE=snmp +usb cgi nls gnome kernel_linux systemd +KEYWORDS=~amd64 ~x86 ~ppc ~x86-fbsd LICENSE=GPL-2 RDEPEND=|| ( >=sys-apps/util-linux-2.23[tty-helpers(-)] <=sys-apps/sysvinit-2.88-r4 ) cgi? ( >=media-libs/gd-1.8.4 ) nls? ( sys-devel/gettext ) snmp? ( >=net-analyzer/net-snmp-5.7.2 ) gnome? ( >=x11-libs/gtk+-2.4.0:2 dev-libs/glib:2 >=gnome-base/gconf-2.0 ) sys-apps/openrc virtual/mailx SLOT=0 SRC_URI=mirror://sourceforge/apcupsd/apcupsd-3.14.10.tar.gz _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=a4388566d38a27e5fe14ae8659ddcd84 +_md5_=93fbdf5716ce71437712067582ed310e diff --git a/metadata/md5-cache/sys-process/glances-1.7 b/metadata/md5-cache/sys-process/glances-1.7 index c06a83415654..093a49014dad 100644 --- a/metadata/md5-cache/sys-process/glances-1.7 +++ b/metadata/md5-cache/sys-process/glances-1.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/G/Glances/Glances-1.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5d3e252c2e8128a0f17559d5fb78f773 diff --git a/metadata/md5-cache/sys-process/glances-1.7.1 b/metadata/md5-cache/sys-process/glances-1.7.1 index 8d55ed82ee5a..9312e79214a1 100644 --- a/metadata/md5-cache/sys-process/glances-1.7.1 +++ b/metadata/md5-cache/sys-process/glances-1.7.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/G/Glances/Glances-1.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b86aab9ae00c0b88924a98dfc4f8482e diff --git a/metadata/md5-cache/sys-process/iotop-0.6 b/metadata/md5-cache/sys-process/iotop-0.6 index 7d3c7d19bcc8..d8d2b206f4f6 100644 --- a/metadata/md5-cache/sys-process/iotop-0.6 +++ b/metadata/md5-cache/sys-process/iotop-0.6 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6[ncurses(+)] ) REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://guichaz.free.fr/iotop//files/iotop-0.6.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 linux-info a9cbd6bbe2b28166e403321882f3c73c multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=46d7db5aa4f9ed69f753c9e46ed3ebdb diff --git a/metadata/md5-cache/sys-process/parallel-20131022 b/metadata/md5-cache/sys-process/parallel-20131022 new file mode 100644 index 000000000000..20df55d5e853 --- /dev/null +++ b/metadata/md5-cache/sys-process/parallel-20131022 @@ -0,0 +1,11 @@ +DEFINED_PHASES=configure install postinst +DEPEND=dev-lang/perl dev-perl/Devel-Size virtual/perl-Data-Dumper virtual/perl-File-Temp virtual/perl-IO !=sys-apps/sed-4.0. DESCRIPTION=Paul Vixie's cron daemon, a fully featured crond implementation HOMEPAGE=ftp://ftp.isc.org/isc/cron/ IUSE=selinux pam debug -KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd LICENSE=ISC BSD-2 BSD RDEPEND=selinux? ( sys-libs/libselinux ) pam? ( virtual/pam ) >=sys-process/cronbase-0.3.2 !sys-process/bcron !sys-process/cronie !sys-process/dcron !sys-process/fcron SLOT=0 SRC_URI=mirror://gentoo/vixie-cron-4.1.tar.bz2 mirror://gentoo/vixie-cron-4.1-gentoo-r4.patch.bz2 _eclasses_=cron 18adefe7a7b2f043ca5b63e912835970 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d0468344bec02e8cb8e305cc26276232 +_md5_=37de3c85b651a50dd4528ba24bf905fa diff --git a/metadata/md5-cache/virtual/python-imaging-2 b/metadata/md5-cache/virtual/python-imaging-2 index 43f52c77876f..1a69accff2d4 100644 --- a/metadata/md5-cache/virtual/python-imaging-2 +++ b/metadata/md5-cache/virtual/python-imaging-2 @@ -3,8 +3,8 @@ DEPEND=userland_GNU? ( >=sys-apps/coreutils-8.5 ) DESCRIPTION=Virtual for Python Imaging Library EAPI=5 IUSE=tk python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 -KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris RDEPEND=dev-python/pillow[tk?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6b0d9b7a5c915bfb1f1376ec55530d34 +_md5_=c1db77482a4798d6ceba9667614f2fb8 diff --git a/metadata/md5-cache/www-apache/passenger-4.0.21 b/metadata/md5-cache/www-apache/passenger-4.0.21 new file mode 100644 index 000000000000..992add5ce5ef --- /dev/null +++ b/metadata/md5-cache/www-apache/passenger-4.0.21 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare setup test unpack +DEPEND=ruby_targets_ruby18? ( dev-ruby/rake[ruby_targets_ruby18] ) ruby_targets_ruby19? ( dev-ruby/rake[ruby_targets_ruby19] ) ruby_targets_ruby20? ( dev-ruby/rake[ruby_targets_ruby20] ) test? ( ruby_targets_ruby18? ( >=dev-ruby/daemon_controller-1.1.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0.0[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/daemon_controller-1.1.0[ruby_targets_ruby19] >=dev-ruby/rack-1.0.0[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/daemon_controller-1.1.0[ruby_targets_ruby20] >=dev-ruby/rack-1.0.0[ruby_targets_ruby20] ) ) >=dev-libs/libev-4.11 net-misc/curl[ssl] =www-servers/apache-2* ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) +DESCRIPTION=Passenger (a.k.a. mod_rails) makes deployment of Ruby on Rails applications a breeze +EAPI=5 +HOMEPAGE=http://modrails.com/ +IUSE=debug test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/daemon_controller-1.1.0[ruby_targets_ruby18] >=dev-ruby/rack-1.0.0[ruby_targets_ruby18] ) ruby_targets_ruby19? ( >=dev-ruby/daemon_controller-1.1.0[ruby_targets_ruby19] >=dev-ruby/rack-1.0.0[ruby_targets_ruby19] ) ruby_targets_ruby20? ( >=dev-ruby/daemon_controller-1.1.0[ruby_targets_ruby20] >=dev-ruby/rack-1.0.0[ruby_targets_ruby20] ) >=dev-libs/libev-4.11 net-misc/curl[ssl] =www-servers/apache-2* ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby20? ( dev-lang/ruby:2.0 ) +REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ruby20 ) +SLOT=0 +SRC_URI=http://s3.amazonaws.com/phusion-passenger/releases/passenger-4.0.21.tar.gz +_eclasses_=apache-module 5c4c90da2d68c2dc8391666824f1293c depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 java-utils-2 8d0d93b7a8605ea346cce4604f6db516 multilib 892e597faee02a5b94eb02ab512e7622 ruby-ng 69c01a1b984ed066bc91b4397b002f6a toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=c172d9cd939d480a18fd27fb5cb0d3db diff --git a/metadata/md5-cache/www-apps/bugzilla-3.6.13 b/metadata/md5-cache/www-apps/bugzilla-3.6.13 deleted file mode 100644 index 8f6aa62a41b3..000000000000 --- a/metadata/md5-cache/www-apps/bugzilla-3.6.13 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=install postinst prepare prerm setup -DEPEND=modperl? ( =www-servers/apache-2* ) >=app-admin/webapp-config-1.50.15 -DESCRIPTION=Bugzilla is the Bug-Tracking System from the Mozilla project -EAPI=3 -HOMEPAGE=http://www.bugzilla.org -IUSE=modperl extras graphviz mysql postgres modperl vhosts -KEYWORDS=amd64 x86 -LICENSE=MPL-1.1 -RDEPEND=virtual/httpd-cgi >=dev-lang/perl-5.8.8 >=dev-perl/DBI-1.601 >=dev-perl/DateTime-0.50 >=dev-perl/DateTime-Locale-0.43 >=dev-perl/DateTime-TimeZone-0.71 >=dev-perl/URI-1.38 >=dev-perl/Email-MIME-1.900 >=dev-perl/Email-MIME-Encodings-1.313 >=dev-perl/Email-Send-2.190 >=dev-perl/MIME-tools-5.427 >=dev-perl/Template-Toolkit-2.22 >=dev-perl/TimeDate-1.16 >=virtual/perl-CGI-3.510 >=virtual/perl-Digest-SHA-5.46 >=virtual/perl-File-Spec-3.27.01 >=virtual/perl-MIME-Base64-3.07 mysql? ( >=dev-perl/DBD-mysql-4.00.5 ) postgres? ( >=dev-perl/DBD-Pg-1.49 ) graphviz? ( media-gfx/graphviz ) modperl? ( >=dev-perl/Apache-DBI-1.06 www-apache/mod_perl:1 ) extras? ( dev-perl/Authen-SASL >=dev-perl/Chart-2.4.1 dev-perl/Email-MIME-Attachment-Stripper dev-perl/Email-Reply >=dev-perl/GD-2.35 dev-perl/GDGraph dev-perl/GDTextUtil >=dev-perl/HTML-Parser-3.60 dev-perl/HTML-Scrubber dev-perl/JSON-RPC dev-perl/libwww-perl >=dev-perl/PatchReader-0.9.5 dev-perl/perl-ldap dev-perl/SOAP-Lite dev-perl/Template-GD dev-perl/Test-Taint dev-perl/XML-Twig || ( media-gfx/imagemagick[perl] media-gfx/graphicsmagick[imagemagick,perl] ) dev-perl/TheSchwartz dev-perl/Daemon-Generic dev-perl/Math-Random-Secure ) modperl? ( =www-servers/apache-2* ) >=app-admin/webapp-config-1.50.15 -SLOT=3.6.13 -SRC_URI=http://ftp.mozilla.org/pub/mozilla.org/webtools/archived/bugzilla-3.6.13.tar.gz -_eclasses_=depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e -_md5_=336b1f47be5f785ad4d67ac93a67d95a diff --git a/metadata/md5-cache/www-apps/gallery-3.0.9 b/metadata/md5-cache/www-apps/gallery-3.0.9 index 2955aaf69eca..e293cefa1f18 100644 --- a/metadata/md5-cache/www-apps/gallery-3.0.9 +++ b/metadata/md5-cache/www-apps/gallery-3.0.9 @@ -4,11 +4,11 @@ DESCRIPTION=Web based (PHP Script) photo album viewer/creator EAPI=5 HOMEPAGE=http://gallery.menalto.com/ IUSE=ffmpeg +gd imagemagick mysql mysqli vhosts -KEYWORDS=amd64 hppa ppc ~ppc64 x86 +KEYWORDS=amd64 hppa ppc ppc64 x86 LICENSE=GPL-2 RDEPEND=imagemagick? ( || ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] ) ) ffmpeg? ( virtual/ffmpeg ) >=dev-lang/php-5.2.3[ctype,filter,iconv,json,simplexml,tokenizer,unicode,gd?,mysql?,mysqli?] virtual/httpd-php >=app-admin/webapp-config-1.50.15 REQUIRED_USE=|| ( gd imagemagick ) || ( mysql mysqli ) SLOT=3.0.9 SRC_URI=mirror://sourceforge/gallery/gallery/gallery-3.0.9.zip _eclasses_=webapp 25b9b1696f5e698711f47d45c3d45e3e -_md5_=8b4830ea07736b9b4b052df6be74afef +_md5_=b1fec20c4e61520ebb4b37a535e46912 diff --git a/metadata/md5-cache/www-apps/horizon-2013.1.3-r2 b/metadata/md5-cache/www-apps/horizon-2013.1.3-r2 index e097a7d3776b..2b181eaa90ad 100644 --- a/metadata/md5-cache/www-apps/horizon-2013.1.3-r2 +++ b/metadata/md5-cache/www-apps/horizon-2013.1.3-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/django-1.4[python_targets_python2_7(-)?,-python_single_targ REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/horizon/grizzly/2013.1.3/+download/horizon-2013.1.3.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=390f9c7da0c41231a2521da335a0f7f8 diff --git a/metadata/md5-cache/www-apps/horizon-2013.1.9999 b/metadata/md5-cache/www-apps/horizon-2013.1.9999 index 2d519074cb62..e53556218115 100644 --- a/metadata/md5-cache/www-apps/horizon-2013.1.9999 +++ b/metadata/md5-cache/www-apps/horizon-2013.1.9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/django-1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/django-openstack-auth-1.0.7[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-cinderclient-1.0.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-novaclient-2.12.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-neutronclient-2.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-swiftclient-1.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=25aefd4f46a606918f96c1c4378d2f6c diff --git a/metadata/md5-cache/www-apps/horizon-2013.2.9999 b/metadata/md5-cache/www-apps/horizon-2013.2.9999 new file mode 100644 index 000000000000..d93099bfd53c --- /dev/null +++ b/metadata/md5-cache/www-apps/horizon-2013.2.9999 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/pbr-0.5.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =sys-apps/coreutils-8.5 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-vcs/git +DESCRIPTION=Horizon is a Django-based project aimed at providing a complete OpenStack Dashboard. +EAPI=5 +HOMEPAGE=https://launchpad.net/horizon +IUSE=python_targets_python2_7 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/django-1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/django-compressor-1.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/django-openstack-auth-1.1.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.13.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/kombu-2.4.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lesscpy-0.9j[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-cinderclient-1.0.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-glanceclient-0.9.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-heatclient-0.2.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.3.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-novaclient-2.15.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-neutronclient-2.3.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-swiftclient-1.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-ceilometerclient-1.0.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/pytz-2010h[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lockfile-0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( python_targets_python2_7 ) +SLOT=0 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=9e96a2393fd54ac640414bd94ecda4af diff --git a/metadata/md5-cache/www-apps/horizon-9999 b/metadata/md5-cache/www-apps/horizon-9999 index 287bb56f3651..c88cf7ac99b8 100644 --- a/metadata/md5-cache/www-apps/horizon-9999 +++ b/metadata/md5-cache/www-apps/horizon-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/d2to1-0.2.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/pbr-0.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/django-1.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/django-openstack-auth-1.0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/netaddr[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-cinderclient-1.0.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-heatclient-0.2.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-novaclient-2.12.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-neutronclient-2.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-swiftclient-1.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d7214c92f5c9f9570c9c48864331ea7c diff --git a/metadata/md5-cache/www-apps/moinmoin-1.9.7 b/metadata/md5-cache/www-apps/moinmoin-1.9.7 index e80d02f11a44..a2a7d88a61b8 100644 --- a/metadata/md5-cache/www-apps/moinmoin-1.9.7 +++ b/metadata/md5-cache/www-apps/moinmoin-1.9.7 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/docutils-0.4[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://static.moinmo.in/files/moin-1.9.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=f22258dc65febea670b285057421dbb9 diff --git a/metadata/md5-cache/www-apps/moinmoin-1.9.7-r1 b/metadata/md5-cache/www-apps/moinmoin-1.9.7-r1 index fe862e57be14..dc14b3109f64 100644 --- a/metadata/md5-cache/www-apps/moinmoin-1.9.7-r1 +++ b/metadata/md5-cache/www-apps/moinmoin-1.9.7-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/docutils-0.4[python_targets_python2_6(-)?,python_targets_py REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=http://static.moinmo.in/files/moin-1.9.7.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=b898b92e2fa0ba3f06f151287edb2dfe diff --git a/metadata/md5-cache/www-apps/nikola-6.1.1 b/metadata/md5-cache/www-apps/nikola-6.1.1 index 58ff8c3423fb..9ad635e0448c 100644 --- a/metadata/md5-cache/www-apps/nikola-6.1.1 +++ b/metadata/md5-cache/www-apps/nikola-6.1.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/docutils python_targets_python2_7? ( =dev-python/configparser REQUIRED_USE=|| ( python_targets_python2_7 python_targets_python3_3 ) SLOT=0 SRC_URI=mirror://pypi/N/Nikola/nikola-6.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9bc1f2e3721de72dca88b7bee6a8368b diff --git a/metadata/md5-cache/www-apps/ownpaste-0.2.2-r1 b/metadata/md5-cache/www-apps/ownpaste-0.2.2-r1 index c27096b3a889..ea4ccf77f0c6 100644 --- a/metadata/md5-cache/www-apps/ownpaste-0.2.2-r1 +++ b/metadata/md5-cache/www-apps/ownpaste-0.2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/o/ownpaste/ownpaste-0.2.2.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3c1775728a3dbaa4ce0934015f14e67d diff --git a/metadata/md5-cache/www-apps/ownpaste-9999 b/metadata/md5-cache/www-apps/ownpaste-9999 index 2d7812a6ac61..8f652a1bf35c 100644 --- a/metadata/md5-cache/www-apps/ownpaste-9999 +++ b/metadata/md5-cache/www-apps/ownpaste-9999 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/flask-0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/flask-script-0.3.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/flask-sqlalchemy-0.15[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/jinja-2.6[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/werkzeug-0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-migrate-0.7.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pygments[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pytz[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 mercurial 5fcb2f60868c283ece4cadfce78a5b24 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f309fa6829db3d19fd9ab963a79beab0 diff --git a/metadata/md5-cache/www-apps/roundup-1.4.21 b/metadata/md5-cache/www-apps/roundup-1.4.21 index c5c65c45fc08..2365119bf7dd 100644 --- a/metadata/md5-cache/www-apps/roundup-1.4.21 +++ b/metadata/md5-cache/www-apps/roundup-1.4.21 @@ -10,5 +10,5 @@ RDEPEND=>=sys-libs/db-3.2.9 python_targets_python2_6? ( >=dev-lang/python-2.6.8- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/roundup/roundup-1.4.21.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8a0a59614962104414721a863b5516e9 diff --git a/metadata/md5-cache/www-apps/roundup-1.5.0 b/metadata/md5-cache/www-apps/roundup-1.5.0 index 9a806cf897bc..78babbdfabf8 100644 --- a/metadata/md5-cache/www-apps/roundup-1.5.0 +++ b/metadata/md5-cache/www-apps/roundup-1.5.0 @@ -10,5 +10,5 @@ RDEPEND=>=sys-libs/db-3.2.9 python_targets_python2_6? ( >=dev-lang/python-2.6.8- REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=mirror://pypi/r/roundup/roundup-1.5.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=76bed105774c4e0395a96c56f77366f5 diff --git a/metadata/md5-cache/www-client/chromium-32.0.1664.3-r1 b/metadata/md5-cache/www-client/chromium-32.0.1678.0 similarity index 53% rename from metadata/md5-cache/www-client/chromium-32.0.1664.3-r1 rename to metadata/md5-cache/www-client/chromium-32.0.1678.0 index b677e62d9cba..6e473a04f5c6 100644 --- a/metadata/md5-cache/www-client/chromium-32.0.1664.3-r1 +++ b/metadata/md5-cache/www-client/chromium-32.0.1678.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=>=app-accessibility/speech-dispatcher-0.8:= app-arch/bzip2:= app-arch/snappy:= system-sqlite? ( dev-db/sqlite:3 ) cups? ( dev-libs/libgcrypt:= >=net-print/cups-1.3.11:= ) >=dev-libs/elfutils-0.149 dev-libs/expat:= >=dev-libs/icu-49.1.1-r1:= >=dev-libs/jsoncpp-0.5.0-r1:= >=dev-libs/libevent-1.4.13:= dev-libs/libxml2:=[icu] dev-libs/libxslt:= dev-libs/nspr:= >=dev-libs/nss-3.12.3:= dev-libs/protobuf:= dev-libs/re2:= gnome? ( >=gnome-base/gconf-2.24.0:= ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2:= ) >=media-libs/alsa-lib-1.0.19:= media-libs/flac:= media-libs/harfbuzz:=[icu(+)] >=media-libs/libjpeg-turbo-1.2.0-r1:= media-libs/libpng:0= media-libs/opus:= media-libs/speex:= pulseaudio? ( media-sound/pulseaudio:= ) sys-apps/dbus:= sys-apps/pciutils:= sys-libs/zlib:=[minizip] virtual/udev x11-libs/gtk+:2= x11-libs/libXinerama:= x11-libs/libXScrnSaver:= x11-libs/libXtst:= kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium ) || ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-2.6.8-r3:2.6 ) !arm? ( dev-lang/yasm ) dev-lang/perl dev-perl/JSON dev-python/jinja dev-python/ply dev-python/simplejson >=dev-util/gperf-3.0.3 dev-util/ninja sys-apps/hwids >=sys-devel/bison-2.4.3 sys-devel/flex virtual/pkgconfig test? ( dev-libs/openssl:0 dev-python/pyftpdlib ) >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=>=app-accessibility/speech-dispatcher-0.8:= app-arch/bzip2:= app-arch/snappy:= system-sqlite? ( dev-db/sqlite:3 ) cups? ( dev-libs/libgcrypt:= >=net-print/cups-1.3.11:= ) >=dev-libs/elfutils-0.149 dev-libs/expat:= >=dev-libs/icu-49.1.1-r1:= >=dev-libs/jsoncpp-0.5.0-r1:= >=dev-libs/libevent-1.4.13:= dev-libs/libxml2:=[icu] dev-libs/libxslt:= dev-libs/nspr:= >=dev-libs/nss-3.12.3:= >=dev-libs/protobuf-2.5.0:= dev-libs/re2:= gnome? ( >=gnome-base/gconf-2.24.0:= ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2:= ) >=media-libs/alsa-lib-1.0.19:= media-libs/flac:= media-libs/harfbuzz:=[icu(+)] >=media-libs/libjpeg-turbo-1.2.0-r1:= media-libs/libpng:0= media-libs/opus:= media-libs/speex:= pulseaudio? ( media-sound/pulseaudio:= ) sys-apps/dbus:= sys-apps/pciutils:= sys-libs/zlib:=[minizip] virtual/udev x11-libs/gtk+:2= x11-libs/libXinerama:= x11-libs/libXScrnSaver:= x11-libs/libXtst:= kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium ) || ( >=dev-lang/python-2.7.5-r2:2.7 >=dev-lang/python-2.6.8-r3:2.6 ) !arm? ( dev-lang/yasm ) dev-lang/perl dev-perl/JSON >=dev-python/jinja-2.7 dev-python/ply dev-python/simplejson >=dev-util/gperf-3.0.3 dev-util/ninja sys-apps/hwids >=sys-devel/bison-2.4.3 sys-devel/flex virtual/pkgconfig test? ( dev-libs/openssl:0 dev-python/pyftpdlib ) >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=Open-source version of Google Chrome web browser EAPI=5 HOMEPAGE=http://chromium.org/ IUSE=bindist cups gnome gnome-keyring kerberos neon pulseaudio selinux system-sqlite tcmalloc custom-cflags +linguas_am +linguas_ar +linguas_bg +linguas_bn +linguas_ca +linguas_cs +linguas_da +linguas_de +linguas_el +linguas_en_GB +linguas_es +linguas_es_LA +linguas_et +linguas_fa +linguas_fi +linguas_fil +linguas_fr +linguas_gu +linguas_he +linguas_hi +linguas_hr +linguas_hu +linguas_id +linguas_it +linguas_ja +linguas_kn +linguas_ko +linguas_lt +linguas_lv +linguas_ml +linguas_mr +linguas_ms +linguas_nb +linguas_nl +linguas_pl +linguas_pt_BR +linguas_pt_PT +linguas_ro +linguas_ru +linguas_sk +linguas_sl +linguas_sr +linguas_sv +linguas_sw +linguas_ta +linguas_te +linguas_th +linguas_tr +linguas_uk +linguas_vi +linguas_zh_CN +linguas_zh_TW test KEYWORDS=~amd64 ~arm ~x86 LICENSE=BSD -RDEPEND=>=app-accessibility/speech-dispatcher-0.8:= app-arch/bzip2:= app-arch/snappy:= system-sqlite? ( dev-db/sqlite:3 ) cups? ( dev-libs/libgcrypt:= >=net-print/cups-1.3.11:= ) >=dev-libs/elfutils-0.149 dev-libs/expat:= >=dev-libs/icu-49.1.1-r1:= >=dev-libs/jsoncpp-0.5.0-r1:= >=dev-libs/libevent-1.4.13:= dev-libs/libxml2:=[icu] dev-libs/libxslt:= dev-libs/nspr:= >=dev-libs/nss-3.12.3:= dev-libs/protobuf:= dev-libs/re2:= gnome? ( >=gnome-base/gconf-2.24.0:= ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2:= ) >=media-libs/alsa-lib-1.0.19:= media-libs/flac:= media-libs/harfbuzz:=[icu(+)] >=media-libs/libjpeg-turbo-1.2.0-r1:= media-libs/libpng:0= media-libs/opus:= media-libs/speex:= pulseaudio? ( media-sound/pulseaudio:= ) sys-apps/dbus:= sys-apps/pciutils:= sys-libs/zlib:=[minizip] virtual/udev x11-libs/gtk+:2= x11-libs/libXinerama:= x11-libs/libXScrnSaver:= x11-libs/libXtst:= kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium ) !=www-client/chromium-9999 x11-misc/xdg-utils virtual/ttf-fonts +RDEPEND=>=app-accessibility/speech-dispatcher-0.8:= app-arch/bzip2:= app-arch/snappy:= system-sqlite? ( dev-db/sqlite:3 ) cups? ( dev-libs/libgcrypt:= >=net-print/cups-1.3.11:= ) >=dev-libs/elfutils-0.149 dev-libs/expat:= >=dev-libs/icu-49.1.1-r1:= >=dev-libs/jsoncpp-0.5.0-r1:= >=dev-libs/libevent-1.4.13:= dev-libs/libxml2:=[icu] dev-libs/libxslt:= dev-libs/nspr:= >=dev-libs/nss-3.12.3:= >=dev-libs/protobuf-2.5.0:= dev-libs/re2:= gnome? ( >=gnome-base/gconf-2.24.0:= ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.28.2:= ) >=media-libs/alsa-lib-1.0.19:= media-libs/flac:= media-libs/harfbuzz:=[icu(+)] >=media-libs/libjpeg-turbo-1.2.0-r1:= media-libs/libpng:0= media-libs/opus:= media-libs/speex:= pulseaudio? ( media-sound/pulseaudio:= ) sys-apps/dbus:= sys-apps/pciutils:= sys-libs/zlib:=[minizip] virtual/udev x11-libs/gtk+:2= x11-libs/libXinerama:= x11-libs/libXScrnSaver:= x11-libs/libXtst:= kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium ) !=www-client/chromium-9999 x11-misc/xdg-utils virtual/ttf-fonts SLOT=0 -SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-32.0.1664.3.tar.xz test? ( https://commondatastorage.googleapis.com/chromium-browser-official/chromium-32.0.1664.3-testdata.tar.xz ) -_eclasses_=chromium cb805b418b1d27c585f6b2a3321d19ee eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e pax-utils 2424f959506320f5196de8f79fa05297 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 08d3455b23110d650f173ab0a090818b python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=67b539ce2c7dd37ca637d9f4f2ac5bf5 +SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-32.0.1678.0.tar.xz test? ( https://commondatastorage.googleapis.com/chromium-browser-official/chromium-32.0.1678.0-testdata.tar.xz ) +_eclasses_=chromium cb805b418b1d27c585f6b2a3321d19ee eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic 08a40a43c401c96d16477c02e56d9a64 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e pax-utils 2424f959506320f5196de8f79fa05297 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 08d3455b23110d650f173ab0a090818b python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=bc374885b2a45f5ea3e617b5b73a3a4e diff --git a/metadata/md5-cache/www-client/google-chrome-30.0.1599.101_p1 b/metadata/md5-cache/www-client/google-chrome-30.0.1599.114_p1 similarity index 92% rename from metadata/md5-cache/www-client/google-chrome-30.0.1599.101_p1 rename to metadata/md5-cache/www-client/google-chrome-30.0.1599.114_p1 index cdee0ce0425c..b4bc97aaee24 100644 --- a/metadata/md5-cache/www-client/google-chrome-30.0.1599.101_p1 +++ b/metadata/md5-cache/www-client/google-chrome-30.0.1599.114_p1 @@ -9,6 +9,6 @@ LICENSE=google-chrome RDEPEND=app-arch/bzip2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/libgcrypt dev-libs/nspr dev-libs/nss gnome-base/gconf:2 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype net-print/cups sys-apps/dbus >=sys-devel/gcc-4.4.0[cxx] x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 >=x11-libs/libX11-1.5.0 x11-libs/libXcomposite x11-libs/libXext x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/pango x11-misc/xdg-utils !www-client/google-chrome:0 !www-client/google-chrome:beta RESTRICT=bindist mirror strip SLOT=stable -SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_30.0.1599.101-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_30.0.1599.101-1_i386.deb ) +SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_30.0.1599.114-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_30.0.1599.114-1_i386.deb ) _eclasses_=chromium cb805b418b1d27c585f6b2a3321d19ee eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 pax-utils 2424f959506320f5196de8f79fa05297 readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=d7d66b39df9454656cdce9efabc712ff +_md5_=bcc8c2829a2d1e6f75f663408f436e2b diff --git a/metadata/md5-cache/www-client/google-chrome-32.0.1671.3_alpha1 b/metadata/md5-cache/www-client/google-chrome-32.0.1678.0_alpha1 similarity index 93% rename from metadata/md5-cache/www-client/google-chrome-32.0.1671.3_alpha1 rename to metadata/md5-cache/www-client/google-chrome-32.0.1678.0_alpha1 index f0a6bf319586..b53915e3dfcf 100644 --- a/metadata/md5-cache/www-client/google-chrome-32.0.1671.3_alpha1 +++ b/metadata/md5-cache/www-client/google-chrome-32.0.1678.0_alpha1 @@ -9,6 +9,6 @@ LICENSE=google-chrome RDEPEND=app-arch/bzip2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev-libs/glib:2 dev-libs/libgcrypt dev-libs/nspr dev-libs/nss gnome-base/gconf:2 media-libs/alsa-lib media-libs/fontconfig media-libs/freetype net-print/cups sys-apps/dbus >=sys-devel/gcc-4.4.0[cxx] x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 >=x11-libs/libX11-1.5.0 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrandr x11-libs/libXrender x11-libs/libXScrnSaver x11-libs/libXtst x11-libs/pango x11-misc/xdg-utils !www-client/google-chrome:0 !www-client/google-chrome:beta !www-client/google-chrome:stable RESTRICT=bindist mirror strip SLOT=unstable -SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_32.0.1671.3-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_32.0.1671.3-1_i386.deb ) +SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_32.0.1678.0-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_32.0.1678.0-1_i386.deb ) _eclasses_=chromium cb805b418b1d27c585f6b2a3321d19ee eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 pax-utils 2424f959506320f5196de8f79fa05297 readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=0cb52a1300d88cbfaa8bc99f4ecdd831 +_md5_=3ff911d04a4943980461df308bf11d14 diff --git a/metadata/md5-cache/www-client/pybugz-9999 b/metadata/md5-cache/www-client/pybugz-9999 index 494935b906d0..f9ac4bc7500a 100644 --- a/metadata/md5-cache/www-client/pybugz-9999 +++ b/metadata/md5-cache/www-client/pybugz-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=zsh-completion? ( app-shells/zsh ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7[readline(+)] ) python_targets_pypy2_0? ( >=virtual/pypy-2.0.2:2.0[readline(+)] ) dev-python/python-exec:=[python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 -_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 d339dd40b2014cf1edba8592580eef42 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8eddb1370819eb979e67dc8b5e50dd2c diff --git a/metadata/md5-cache/www-client/weboob-0g b/metadata/md5-cache/www-client/weboob-0g index 248ae31da3df..ed6dd39d2688 100644 --- a/metadata/md5-cache/www-client/weboob-0g +++ b/metadata/md5-cache/www-client/weboob-0g @@ -10,5 +10,5 @@ RDEPEND=X? ( >=dev-python/PyQt4-4.9.4-r1[X,phonon,python_targets_python2_6(-)?,p REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://symlink.me/attachments/download/229/weboob-0.g.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=af50c98770eb55c3c1d1108bce25b157 diff --git a/metadata/md5-cache/www-client/weboob-9998 b/metadata/md5-cache/www-client/weboob-9998 index 6a51b4b6fc7a..b5f37e4bf1bf 100644 --- a/metadata/md5-cache/www-client/weboob-9998 +++ b/metadata/md5-cache/www-client/weboob-9998 @@ -8,5 +8,5 @@ LICENSE=AGPL-3 RDEPEND=X? ( >=dev-python/PyQt4-4.9.4-r1[X,phonon,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/prettytable[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/html2text[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/mechanize[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/python-dateutil[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/python-imaging[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/gdata[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/feedparser[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/termcolor[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] secure-updates? ( app-crypt/gnupg ) fast-libs? ( dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[libyaml,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) >=dev-python/lxml-3.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cssselect[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=e024088c089802b3e4e3083ffe0852a3 diff --git a/metadata/md5-cache/www-client/weboob-9999 b/metadata/md5-cache/www-client/weboob-9999 index 26743ef3d755..70024f1e28e7 100644 --- a/metadata/md5-cache/www-client/weboob-9999 +++ b/metadata/md5-cache/www-client/weboob-9999 @@ -8,5 +8,5 @@ LICENSE=AGPL-3 RDEPEND=X? ( >=dev-python/PyQt4-4.9.4-r1[X,phonon,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/prettytable[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/html2text[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/mechanize[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/python-dateutil[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/python-imaging[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/gdata[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/feedparser[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/termcolor[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] secure-updates? ( app-crypt/gnupg ) fast-libs? ( dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyyaml[libyaml,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) >=dev-python/lxml-3.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/cssselect[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-2 2027b81a576527fa16bece425941e094 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5fbb2ddd7d284188fd62a0d5fbd4fa51 diff --git a/metadata/md5-cache/www-misc/nx_util-0.3 b/metadata/md5-cache/www-misc/nx_util-0.3 index df1f4ab3efa4..e30d2c891363 100644 --- a/metadata/md5-cache/www-misc/nx_util-0.3 +++ b/metadata/md5-cache/www-misc/nx_util-0.3 @@ -10,5 +10,5 @@ RDEPEND=www-servers/nginx[nginx_modules_http_naxsi] python_single_target_python2 REQUIRED_USE=python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_7 ) SLOT=0 SRC_URI=https://naxsi.googlecode.com/files/nx_util-0.3.tgz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=78996eabed922d5ea06077b39e2ef28d diff --git a/metadata/md5-cache/www-misc/nx_util-0.52.1 b/metadata/md5-cache/www-misc/nx_util-0.52.1 index 90dbfa79a9bf..017942644df5 100644 --- a/metadata/md5-cache/www-misc/nx_util-0.52.1 +++ b/metadata/md5-cache/www-misc/nx_util-0.52.1 @@ -10,5 +10,5 @@ RDEPEND=www-servers/nginx[nginx_modules_http_naxsi] python_single_target_python2 REQUIRED_USE=python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_7 ) SLOT=0 SRC_URI=https://github.com/nbs-system/naxsi/archive/0.52-1.tar.gz -> ngx_http_naxsi-0.52-1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0d19f0cf4ab00bb660fbcac85d5842e5 diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-30.0.1599.101_p1 b/metadata/md5-cache/www-plugins/chrome-binary-plugins-30.0.1599.114_p1 similarity index 81% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-30.0.1599.101_p1 rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-30.0.1599.114_p1 index d1bb10bc72a0..c4c6c155ab3a 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-30.0.1599.101_p1 +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-30.0.1599.114_p1 @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=www-client/chromium !www-plugins/chrome-binary-plugins:0 !www-plugins/chrome-binary-plugins:beta !www-plugins/chrome-binary-plugins:unstable RESTRICT=bindist mirror strip SLOT=stable -SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_30.0.1599.101-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_30.0.1599.101-1_i386.deb ) +SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_30.0.1599.114-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_30.0.1599.114-1_i386.deb ) _eclasses_=multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 unpacker 658a981a81fd7cb0767315a541bab01d -_md5_=76d55e238273355b4d6956cd2e1c276d +_md5_=f199fff88c153f3068436c3e69d4a16c diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-32.0.1671.3_alpha1 b/metadata/md5-cache/www-plugins/chrome-binary-plugins-32.0.1678.0_alpha1 similarity index 81% rename from metadata/md5-cache/www-plugins/chrome-binary-plugins-32.0.1671.3_alpha1 rename to metadata/md5-cache/www-plugins/chrome-binary-plugins-32.0.1678.0_alpha1 index 8a46504afc60..7245d60efcc3 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-32.0.1671.3_alpha1 +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-32.0.1678.0_alpha1 @@ -8,6 +8,6 @@ LICENSE=google-chrome RDEPEND=www-client/chromium !www-plugins/chrome-binary-plugins:0 !www-plugins/chrome-binary-plugins:beta !www-plugins/chrome-binary-plugins:stable RESTRICT=bindist mirror strip SLOT=unstable -SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_32.0.1671.3-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_32.0.1671.3-1_i386.deb ) +SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_32.0.1678.0-1_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_32.0.1678.0-1_i386.deb ) _eclasses_=multilib 892e597faee02a5b94eb02ab512e7622 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 unpacker 658a981a81fd7cb0767315a541bab01d -_md5_=247eff4dd64efc26be5a05d94f334a46 +_md5_=7b6982e1c83a829dcd912d49e1213d72 diff --git a/metadata/md5-cache/www-servers/pathod-0.9 b/metadata/md5-cache/www-servers/pathod-0.9 index 682136d38c5a..dd44799a9e0a 100644 --- a/metadata/md5-cache/www-servers/pathod-0.9 +++ b/metadata/md5-cache/www-servers/pathod-0.9 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pathod/pathod-0.9.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ee474078d42053839c5f3c6fec97aa68 diff --git a/metadata/md5-cache/www-servers/pathod-0.9.1 b/metadata/md5-cache/www-servers/pathod-0.9.1 index 933db36ea77b..f9e4d06e93f5 100644 --- a/metadata/md5-cache/www-servers/pathod-0.9.1 +++ b/metadata/md5-cache/www-servers/pathod-0.9.1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pathod/pathod-0.9.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bb434d1b781471f3eb264e859eda0eb0 diff --git a/metadata/md5-cache/www-servers/tornado-2.4-r1 b/metadata/md5-cache/www-servers/tornado-2.4-r1 index 6b2fd4384403..c19b3a5995dc 100644 --- a/metadata/md5-cache/www-servers/tornado-2.4-r1 +++ b/metadata/md5-cache/www-servers/tornado-2.4-r1 @@ -10,5 +10,5 @@ RDEPEND=curl? ( dev-python/pycurl[python_targets_python2_6(-)?,-python_single_ta REQUIRED_USE=curl? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://github.com/downloads/facebook/tornado/tornado-2.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9ab9d6a63e90d9c2ab626516f981fce4 diff --git a/metadata/md5-cache/www-servers/tornado-2.4.1 b/metadata/md5-cache/www-servers/tornado-2.4.1 index 008bd5942a2f..b55bd95d0ff2 100644 --- a/metadata/md5-cache/www-servers/tornado-2.4.1 +++ b/metadata/md5-cache/www-servers/tornado-2.4.1 @@ -10,5 +10,5 @@ RDEPEND=curl? ( dev-python/pycurl[python_targets_python2_6(-)?,-python_single_ta REQUIRED_USE=curl? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_pypy2_0 ) SLOT=0 SRC_URI=http://github.com/downloads/facebook/tornado/tornado-2.4.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3131efaccb3740ba89e26a9c4cda1129 diff --git a/metadata/md5-cache/www-servers/tornado-3.1.1 b/metadata/md5-cache/www-servers/tornado-3.1.1 index dc319489e877..32ffa5a89890 100644 --- a/metadata/md5-cache/www-servers/tornado-3.1.1 +++ b/metadata/md5-cache/www-servers/tornado-3.1.1 @@ -10,5 +10,5 @@ RDEPEND=curl? ( dev-python/pycurl[python_targets_python2_6(-)?,-python_single_ta REQUIRED_USE=curl? ( || ( python_targets_python2_6 python_targets_python2_7 ) ) || ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 python_targets_pypy2_0 ) SLOT=0 SRC_URI=mirror://pypi/t/tornado/tornado-3.1.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5371d6cfa1f6fe835b0e558e44bfec12 diff --git a/metadata/md5-cache/x11-apps/ccsm-0.8.4-r4 b/metadata/md5-cache/x11-apps/ccsm-0.8.4-r4 index 825906498a70..342e19be2d41 100644 --- a/metadata/md5-cache/x11-apps/ccsm-0.8.4-r4 +++ b/metadata/md5-cache/x11-apps/ccsm-0.8.4-r4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/compizconfig-python-0.8.4[python_targets_python2_6(-)?,pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://releases.compiz.org/0.8.4/ccsm-0.8.4.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6560c0829da21aea14d7a02ae50d9210 diff --git a/metadata/md5-cache/x11-apps/simple-ccsm-0.8.4-r2 b/metadata/md5-cache/x11-apps/simple-ccsm-0.8.4-r2 index ab502400bd28..b71e0e8230aa 100644 --- a/metadata/md5-cache/x11-apps/simple-ccsm-0.8.4-r2 +++ b/metadata/md5-cache/x11-apps/simple-ccsm-0.8.4-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/compizconfig-python-0.8.4[python_targets_python2_6(-)?,pyth REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://releases.compiz.org/0.8.4/simple-ccsm-0.8.4.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dad094fb234d6a84faa56d26d7e7cb80 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-319.60 b/metadata/md5-cache/x11-drivers/nvidia-drivers-319.60 index a5adbf956c68..13b12578a547 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-319.60 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-319.60 @@ -4,7 +4,7 @@ DESCRIPTION=NVIDIA X11 driver and GLX libraries EAPI=5 HOMEPAGE=http://www.nvidia.com/ IUSE=acpi multilib kernel_FreeBSD kernel_linux pax_kernel +tools +X kernel_linux -KEYWORDS=-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=-* amd64 x86 ~amd64-fbsd ~x86-fbsd LICENSE=GPL-2 NVIDIA-r1 RDEPEND=app-admin/eselect-opencl kernel_linux? ( >=sys-libs/glibc-2.6.1 ) X? ( >=app-admin/eselect-opengl-1.0.9 ) acpi? ( sys-power/acpid ) tools? ( dev-libs/atk dev-libs/glib x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/pango[X] ) X? ( =x11-libs/libvdpau-0.3-r1 multilib? ( || ( ( x11-libs/libX11[abi_x86_32] x11-libs/libXext[abi_x86_32] ) app-emulation/emul-linux-x86-xlibs ) ) ) kernel_linux? ( virtual/modutils ) REQUIRED_USE=tools? ( X ) @@ -12,4 +12,4 @@ RESTRICT=bindist mirror strip SLOT=0 SRC_URI=amd64-fbsd? ( http://us.download.nvidia.com/XFree86/FreeBSD-x86_64/319.60/NVIDIA-FreeBSD-x86_64-319.60.tar.gz ) amd64? ( http://us.download.nvidia.com/XFree86/Linux-x86_64/319.60/NVIDIA-Linux-x86_64-319.60.run ) x86-fbsd? ( http://us.download.nvidia.com/XFree86/FreeBSD-x86/319.60/NVIDIA-FreeBSD-x86-319.60.tar.gz ) x86? ( http://us.download.nvidia.com/XFree86/Linux-x86/319.60/NVIDIA-Linux-x86-319.60.run ) _eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 linux-info a9cbd6bbe2b28166e403321882f3c73c linux-mod 708d6a92c561743e612fca9d8fde5309 multilib 892e597faee02a5b94eb02ab512e7622 nvidia-driver 92e88a2e33d056779baa88f1061c662e portability 536c5e70c5fb252ed3b769e04aa3f05b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=5888ae042301747afa62e713328e1c48 +_md5_=05d4feef3261bfdf8900979358c6e50f diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-331.17 b/metadata/md5-cache/x11-drivers/nvidia-drivers-331.17 new file mode 100644 index 000000000000..b49bf598bab3 --- /dev/null +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-331.17 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile install postinst postrm preinst prepare prerm pretend setup unpack +DEPEND=app-admin/eselect-opencl kernel_linux? ( >=sys-libs/glibc-2.6.1 ) X? ( >=app-admin/eselect-opengl-1.0.9 ) app-arch/xz-utils kernel_linux? ( virtual/linux-sources ) kernel_linux? ( virtual/modutils ) sys-apps/sed kernel_linux? ( virtual/linux-sources ) sys-apps/pciutils virtual/pkgconfig +DESCRIPTION=NVIDIA X11 driver and GLX libraries +EAPI=5 +HOMEPAGE=http://www.nvidia.com/ +IUSE=acpi multilib kernel_FreeBSD kernel_linux pax_kernel +tools +X kernel_linux +KEYWORDS=-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd +LICENSE=GPL-2 NVIDIA-r1 +RDEPEND=app-admin/eselect-opencl kernel_linux? ( >=sys-libs/glibc-2.6.1 ) X? ( >=app-admin/eselect-opengl-1.0.9 ) acpi? ( sys-power/acpid ) tools? ( dev-libs/atk dev-libs/glib x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXext x11-libs/pango[X] ) X? ( =x11-libs/libvdpau-0.3-r1 multilib? ( || ( ( x11-libs/libX11[abi_x86_32] x11-libs/libXext[abi_x86_32] ) app-emulation/emul-linux-x86-xlibs ) ) ) kernel_linux? ( virtual/modutils ) +REQUIRED_USE=tools? ( X ) +RESTRICT=bindist mirror strip +SLOT=0 +SRC_URI=amd64-fbsd? ( http://us.download.nvidia.com/XFree86/FreeBSD-x86_64/331.17/NVIDIA-FreeBSD-x86_64-331.17.tar.gz ) amd64? ( http://us.download.nvidia.com/XFree86/Linux-x86_64/331.17/NVIDIA-Linux-x86_64-331.17.run ) x86-fbsd? ( http://us.download.nvidia.com/XFree86/FreeBSD-x86/331.17/NVIDIA-FreeBSD-x86-331.17.tar.gz ) x86? ( http://us.download.nvidia.com/XFree86/Linux-x86/331.17/NVIDIA-Linux-x86-331.17.run ) +_eclasses_=eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 linux-info a9cbd6bbe2b28166e403321882f3c73c linux-mod 708d6a92c561743e612fca9d8fde5309 multilib 892e597faee02a5b94eb02ab512e7622 nvidia-driver 92e88a2e33d056779baa88f1061c662e portability 536c5e70c5fb252ed3b769e04aa3f05b readme.gentoo 2466b2f6a77a9600954c6b99ebca6e02 toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 udev a9a8d051efb42bfe884c1db82ce161de unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=35a758d749f693948ff6b08ea5c67526 diff --git a/metadata/md5-cache/x11-drivers/xf86-video-intel-2.99.905 b/metadata/md5-cache/x11-drivers/xf86-video-intel-2.99.905 new file mode 100644 index 000000000000..804375fc9261 --- /dev/null +++ b/metadata/md5-cache/x11-drivers/xf86-video-intel-2.99.905 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack +DEPEND=x11-libs/libXext x11-libs/libXfixes >=x11-libs/pixman-0.27.1 >=x11-libs/libdrm-2.4.29[video_cards_intel] glamor? ( x11-libs/glamor ) sna? ( >=x11-base/xorg-server-1.10 ) udev? ( virtual/udev ) xvmc? ( x11-libs/libXvMC >=x11-libs/libxcb-1.5 x11-libs/xcb-util ) >=x11-proto/dri2proto-2.6 x11-proto/resourceproto || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool x86-interix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) ppc-aix? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) x86-winnt? ( >=sys-devel/libtool-2.2.6a sys-devel/m4 >=x11-misc/util-macros-1.17 >=media-fonts/font-util-1.2.0 ) virtual/pkgconfig dri? ( x11-proto/xf86driproto x11-proto/glproto x11-proto/dri2proto ) x11-proto/fontsproto x11-proto/randrproto x11-proto/renderproto x11-proto/videoproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto dri? ( x11-base/xorg-server[-minimal] x11-libs/libdrm ) x11-base/xorg-server[xorg] x11-libs/libpciaccess +DESCRIPTION=X.Org driver for Intel cards +EAPI=5 +HOMEPAGE=http://xorg.freedesktop.org/ +IUSE=glamor +sna +udev uxa xvmc dri +KEYWORDS=~amd64 ~x86 ~amd64-fbsd -x86-fbsd +LICENSE=MIT +RDEPEND=x11-libs/libXext x11-libs/libXfixes >=x11-libs/pixman-0.27.1 >=x11-libs/libdrm-2.4.29[video_cards_intel] glamor? ( x11-libs/glamor ) sna? ( >=x11-base/xorg-server-1.10 ) udev? ( virtual/udev ) xvmc? ( x11-libs/libXvMC >=x11-libs/libxcb-1.5 x11-libs/xcb-util ) x11-base/xorg-server:= dri? ( x11-base/xorg-server[-minimal] x11-libs/libdrm ) x11-base/xorg-server[xorg] x11-libs/libpciaccess +REQUIRED_USE=|| ( glamor sna uxa ) +SLOT=0 +SRC_URI=http://xorg.freedesktop.org/releases/individual/driver/xf86-video-intel-2.99.905.tar.bz2 +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 autotools-utils 5f912199ed4fdfb0bfbde29c7ac7dbdb eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 libtool b1c8688e60f9580bcb9bb46e08737eb1 linux-info a9cbd6bbe2b28166e403321882f3c73c multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 xorg-2 17812f511eef87a499b62ab14e6aeaad +_md5_=0157612a19ca63933d54d2ada4194062 diff --git a/metadata/md5-cache/x11-misc/arandr-0.1.7.1 b/metadata/md5-cache/x11-misc/arandr-0.1.7.1 index 41aee9647a55..effffee38ff4 100644 --- a/metadata/md5-cache/x11-misc/arandr-0.1.7.1 +++ b/metadata/md5-cache/x11-misc/arandr-0.1.7.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pygtk-2[python_targets_python2_6(-)?,python_targets_python2 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://christian.amsuess.com/tools/arandr/files/arandr-0.1.7.1.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5a091f6b84416859d7681831d0c98d03 diff --git a/metadata/md5-cache/x11-misc/menulibre-13.01.4 b/metadata/md5-cache/x11-misc/menulibre-13.01.4 index b94ca1471748..59283fef001e 100644 --- a/metadata/md5-cache/x11-misc/menulibre-13.01.4 +++ b/metadata/md5-cache/x11-misc/menulibre-13.01.4 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/gobject-introspection dev-python/pygobject:3[python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/menulibre/trunk/13.01.4/+download/menulibre_13.01.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7a67a1aae948e1e2de2d2f3d1638b2bd diff --git a/metadata/md5-cache/x11-misc/menulibre-13.01.4-r1 b/metadata/md5-cache/x11-misc/menulibre-13.01.4-r1 index 61dc35b9bc58..4c1d65140f60 100644 --- a/metadata/md5-cache/x11-misc/menulibre-13.01.4-r1 +++ b/metadata/md5-cache/x11-misc/menulibre-13.01.4-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/gobject-introspection dev-python/pygobject:3[python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/menulibre/trunk/13.01.4/+download/menulibre_13.01.4.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a74aaf96ad07e54261aae9e73728c65e diff --git a/metadata/md5-cache/x11-misc/menulibre-13.04.17 b/metadata/md5-cache/x11-misc/menulibre-13.04.17 index 362723219eff..6425fe9b3600 100644 --- a/metadata/md5-cache/x11-misc/menulibre-13.04.17 +++ b/metadata/md5-cache/x11-misc/menulibre-13.04.17 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/gobject-introspection dev-python/pygobject:3[python_targets_pyt REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/menulibre/trunk/13.04.17/+download/menulibre_13.04.17.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a97479351aa4b2408d3214f4c41555aa diff --git a/metadata/md5-cache/x11-misc/py3status-1.0 b/metadata/md5-cache/x11-misc/py3status-1.0 index 63e2c79ed31a..c9bfef80c026 100644 --- a/metadata/md5-cache/x11-misc/py3status-1.0 +++ b/metadata/md5-cache/x11-misc/py3status-1.0 @@ -10,5 +10,5 @@ RDEPEND=x11-misc/i3status python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3 REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 python_targets_python3_3 ) SLOT=0 SRC_URI=https://github.com/ultrabug/py3status/archive/1.0.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=efb1f4933dc02fc962f0ce48e2f42721 diff --git a/metadata/md5-cache/x11-misc/redshift-1.8 b/metadata/md5-cache/x11-misc/redshift-1.8 new file mode 100644 index 000000000000..f2f54902c914 --- /dev/null +++ b/metadata/md5-cache/x11-misc/redshift-1.8 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst postrm preinst prepare +DEPEND=>=x11-libs/libX11-1.4 x11-libs/libXxf86vm x11-libs/libxcb geoclue? ( app-misc/geoclue ) gnome? ( dev-libs/glib:2 >=gnome-base/gconf-2 ) gtk? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) nls? ( sys-devel/gettext ) || ( >=sys-devel/automake-1.12:1.12 >=sys-devel/automake-1.13:1.13 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 userland_GNU? ( >=sys-apps/coreutils-8.5 ) +DESCRIPTION=A screen color temperature adjusting software +EAPI=5 +HOMEPAGE=http://jonls.dk/redshift/ +IUSE=geoclue gnome gtk nls python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=>=x11-libs/libX11-1.4 x11-libs/libXxf86vm x11-libs/libxcb geoclue? ( app-misc/geoclue ) gnome? ( dev-libs/glib:2 >=gnome-base/gconf-2 ) gtk? ( python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) gtk? ( >=dev-python/pygtk-2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyxdg[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) +SLOT=0 +SRC_URI=https://github.com/jonls/redshift/archive/v1.8.tar.gz -> redshift-1.8.tar.gz +_eclasses_=autotools 16761a2f972abd686713e5967ff3c754 eutils 4878e7f88afc0ba0866ac112190b0fd4 gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=3518dcd7cc1bf1c6d0ede9ea174abd6c diff --git a/metadata/md5-cache/x11-misc/slim-1.3.5-r4 b/metadata/md5-cache/x11-misc/slim-1.3.5-r4 index 09e029e64fb2..e126cc7d0853 100644 --- a/metadata/md5-cache/x11-misc/slim-1.3.5-r4 +++ b/metadata/md5-cache/x11-misc/slim-1.3.5-r4 @@ -4,7 +4,7 @@ DESCRIPTION=Simple Login Manager EAPI=5 HOMEPAGE=http://slim.berlios.de IUSE=branding pam consolekit -KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +KEYWORDS=~amd64 ~arm ~mips ~ppc ppc64 ~sparc ~x86 ~x86-fbsd LICENSE=GPL-2 PDEPEND=branding? ( >=x11-themes/slim-themes-1.2.3a-r3 ) RDEPEND=x11-libs/libXmu x11-libs/libX11 x11-libs/libXpm x11-libs/libXft media-libs/libpng:0= virtual/jpeg x11-apps/sessreg consolekit? ( sys-auth/consolekit sys-apps/dbus ) pam? ( virtual/pam ) @@ -12,4 +12,4 @@ REQUIRED_USE=consolekit? ( pam ) SLOT=0 SRC_URI=mirror://berlios/slim/slim-1.3.5.tar.gz _eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=db3be1515714be5263d2cd45e3632662 +_md5_=c6658a1170a9abf3e84c5e470f72ffe0 diff --git a/metadata/md5-cache/x11-misc/slim-1.3.6-r1 b/metadata/md5-cache/x11-misc/slim-1.3.6-r2 similarity index 97% rename from metadata/md5-cache/x11-misc/slim-1.3.6-r1 rename to metadata/md5-cache/x11-misc/slim-1.3.6-r2 index 5d84f0cde8be..308b8a0e2ad1 100644 --- a/metadata/md5-cache/x11-misc/slim-1.3.6-r1 +++ b/metadata/md5-cache/x11-misc/slim-1.3.6-r2 @@ -12,4 +12,4 @@ REQUIRED_USE=consolekit? ( pam ) SLOT=0 SRC_URI=mirror://berlios/slim/slim-1.3.6.tar.gz _eclasses_=cmake-utils 92319f03251f1235bc887cc84e5aef21 eutils 4878e7f88afc0ba0866ac112190b0fd4 flag-o-matic 08a40a43c401c96d16477c02e56d9a64 multilib 892e597faee02a5b94eb02ab512e7622 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 systemd 9f063b2cc19c5e8030911372aa246c4e toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=291cef2cb7a0365452802b26f3a62406 +_md5_=17b50998c06fd73506de4096da33ac8c diff --git a/metadata/md5-cache/x11-misc/winswitch-0.12.18-r1 b/metadata/md5-cache/x11-misc/winswitch-0.12.18-r1 index d2792dadb077..6d5db7490844 100644 --- a/metadata/md5-cache/x11-misc/winswitch-0.12.18-r1 +++ b/metadata/md5-cache/x11-misc/winswitch-0.12.18-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/gst-python[python_targets_python2_6(-)?,python_targets_python REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://winswitch.org/src/winswitch-0.12.18.src.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=50c196925ae053f91502f7ccf1e704f4 diff --git a/metadata/md5-cache/x11-misc/zim-0.60 b/metadata/md5-cache/x11-misc/zim-0.60 index e8aefc4f4349..bf8d66c4bb50 100644 --- a/metadata/md5-cache/x11-misc/zim-0.60 +++ b/metadata/md5-cache/x11-misc/zim-0.60 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygtk[python_targets_python2_6(-)?,python_targets_python2_7(- REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=http://zim-wiki.org/downloads/zim-0.60.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=5a95c0517741bee1fcc5ef490de5be43 diff --git a/metadata/md5-cache/x11-plugins/screenlets-0.1.6 b/metadata/md5-cache/x11-plugins/screenlets-0.1.6 index dc1d7890bcb9..24046e4c832c 100644 --- a/metadata/md5-cache/x11-plugins/screenlets-0.1.6 +++ b/metadata/md5-cache/x11-plugins/screenlets-0.1.6 @@ -10,5 +10,5 @@ RDEPEND=dev-python/beautifulsoup:python-2 dev-python/dbus-python dev-python/gcon REQUIRED_USE=python_single_target_python2_6? ( python_targets_python2_6 ) python_single_target_python2_7? ( python_targets_python2_7 ) ^^ ( python_single_target_python2_6 python_single_target_python2_7 ) SLOT=0 SRC_URI=http://code.launchpad.net/screenlets/trunk/0.1.6/+download/screenlets-0.1.6.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multilib 892e597faee02a5b94eb02ab512e7622 python-single-r1 677393e4f4667059846e1a73f205010d python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=61ad0657788304215362c8aa07cc117a diff --git a/metadata/md5-cache/x11-terms/terminator-0.96-r2 b/metadata/md5-cache/x11-terms/terminator-0.96-r2 index 3cce411802ad..828cc1a5eb98 100644 --- a/metadata/md5-cache/x11-terms/terminator-0.96-r2 +++ b/metadata/md5-cache/x11-terms/terminator-0.96-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/keybinder:0[python] x11-libs/vte:0[python] dbus? ( sys-apps/dbu REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/terminator/trunk/0.96/+download/terminator_0.96.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c21f02c347fd730002eee3ee0b044dca diff --git a/metadata/md5-cache/x11-terms/terminator-0.96-r3 b/metadata/md5-cache/x11-terms/terminator-0.96-r3 index a6e34f04c61d..56ed75d0e0e1 100644 --- a/metadata/md5-cache/x11-terms/terminator-0.96-r3 +++ b/metadata/md5-cache/x11-terms/terminator-0.96-r3 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/keybinder:0[python] x11-libs/vte:0[python] dbus? ( sys-apps/dbu REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/terminator/trunk/0.96/+download/terminator_0.96.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=edfc2fec2a1a572f23594af0f1827b91 diff --git a/metadata/md5-cache/x11-terms/terminator-0.97 b/metadata/md5-cache/x11-terms/terminator-0.97 index 95ebcc49c15c..6151de5f868f 100644 --- a/metadata/md5-cache/x11-terms/terminator-0.97 +++ b/metadata/md5-cache/x11-terms/terminator-0.97 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/keybinder:0[python] x11-libs/vte:0[python] dbus? ( sys-apps/dbu REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/terminator/trunk/0.97/+download/terminator-0.97.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d29251085c6f16ba22510e9f17340a6e diff --git a/metadata/md5-cache/x11-terms/terminator-0.97-r1 b/metadata/md5-cache/x11-terms/terminator-0.97-r1 index 08f4bd0fd79b..3eba5d0e3afc 100644 --- a/metadata/md5-cache/x11-terms/terminator-0.97-r1 +++ b/metadata/md5-cache/x11-terms/terminator-0.97-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/keybinder:0[python] x11-libs/vte:0[python] dbus? ( sys-apps/dbu REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://launchpad.net/terminator/trunk/0.97/+download/terminator-0.97.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 774182647ff84c6a2365bbcd9635044c gnome2-utils b66c7c3889d2dd0913e9f3d2ac1c0859 libtool b1c8688e60f9580bcb9bb46e08737eb1 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1f89a8658bdd222484c51682a043a070 diff --git a/metadata/md5-cache/x11-terms/terra-9999 b/metadata/md5-cache/x11-terms/terra-9999 index 13db08c62953..84c9dc16b840 100644 --- a/metadata/md5-cache/x11-terms/terra-9999 +++ b/metadata/md5-cache/x11-terms/terra-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/gobject-introspection dev-python/pygobject:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/python-xlib x11-libs/gdk-pixbuf x11-libs/gtk+:3[introspection] x11-libs/vte:2.90[introspection] python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -_eclasses_=bzr 8b59c16d7183cb93649d7abe70dc4c85 distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bzr 8b59c16d7183cb93649d7abe70dc4c85 distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2f409f1cf064dbe52c5e6899ca32d118 diff --git a/metadata/md5-cache/x11-wm/qtile-0.5-r1 b/metadata/md5-cache/x11-wm/qtile-0.5-r1 index a4c830982dc0..08c482a2f819 100644 --- a/metadata/md5-cache/x11-wm/qtile-0.5-r1 +++ b/metadata/md5-cache/x11-wm/qtile-0.5-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/qtile/qtile/archive/v0.5.tar.gz -> qtile-0.5.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 58b766562c9fbfb3268b04e33cdf2f66 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=0fa9a34a272425e0087df4346a84e12a diff --git a/metadata/md5-cache/x11-wm/qtile-0.6 b/metadata/md5-cache/x11-wm/qtile-0.6 index 8d1628b823b9..cde761367b3b 100644 --- a/metadata/md5-cache/x11-wm/qtile-0.6 +++ b/metadata/md5-cache/x11-wm/qtile-0.6 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 SRC_URI=https://github.com/qtile/qtile/archive/v0.6.tar.gz -> qtile-0.6.tar.gz -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=fb1e1d53f9a7d5a5d163ea81b64700b9 diff --git a/metadata/md5-cache/x11-wm/qtile-9999 b/metadata/md5-cache/x11-wm/qtile-9999 index 6eab46b1cb41..49a9dbbccc66 100644 --- a/metadata/md5-cache/x11-wm/qtile-9999 +++ b/metadata/md5-cache/x11-wm/qtile-9999 @@ -9,5 +9,5 @@ RDEPEND=>=dev-python/pycairo-1.10.0-r4[xcb,python_targets_python2_6(-)?,python_t REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) RESTRICT=test SLOT=0 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 git-r3 f870f5be7eb6435bdd5968f9f4df68c2 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=719d016b8f53030fa9e9b7b3fbfee7ab diff --git a/metadata/md5-cache/x11-wm/xpra-0.10.4 b/metadata/md5-cache/x11-wm/xpra-0.10.4 index ecdc6e0c66bb..6997070e5ee0 100644 --- a/metadata/md5-cache/x11-wm/xpra-0.10.4 +++ b/metadata/md5-cache/x11-wm/xpra-0.10.4 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) clipboard? ( || ( server client ) ) opengl? ( client ) || ( client server ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://xpra.org/src/xpra-0.10.4.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=561666c4053c28934bc8c280e4736afd diff --git a/metadata/md5-cache/x11-wm/xpra-0.10.6 b/metadata/md5-cache/x11-wm/xpra-0.10.7 similarity index 96% rename from metadata/md5-cache/x11-wm/xpra-0.10.6 rename to metadata/md5-cache/x11-wm/xpra-0.10.7 index 521fdea345ff..6cc1daeff821 100644 --- a/metadata/md5-cache/x11-wm/xpra-0.10.6 +++ b/metadata/md5-cache/x11-wm/xpra-0.10.7 @@ -9,6 +9,6 @@ LICENSE=GPL-2 BSD RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygobject:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygtk:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst csc? ( || ( >=media-video/ffmpeg-1.2.2 media-video/libav ) ) dec_av? ( || ( >=media-video/ffmpeg-1.2.2 media-video/libav ) ) opengl? ( dev-python/pygtkglext ) pulseaudio? ( media-sound/pulseaudio ) sound? ( media-libs/gstreamer media-libs/gst-plugins-base dev-python/gst-python ) vpx? ( media-libs/libvpx virtual/ffmpeg ) webp? ( media-libs/libwebp ) x264? ( media-libs/x264 || ( >=media-video/ffmpeg-1.0.4:0 media-video/libav ) ) dev-python/dbus-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/ipython[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/python-imaging[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/ssh x11-apps/setxkbmap x11-apps/xmodmap server? ( x11-base/xorg-server[-minimal,xvfb] x11-drivers/xf86-input-void x11-drivers/xf86-video-dummy ) python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) dev-python/python-exec:=[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) clipboard? ( || ( server client ) ) opengl? ( client ) || ( client server ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 -SRC_URI=http://xpra.org/src/xpra-0.10.6.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d2e38a27c30f9926e63fe8d63d316715 +SRC_URI=http://xpra.org/src/xpra-0.10.7.tar.bz2 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=04ab0d4d773caba3f93cbf1abfb9825a diff --git a/metadata/md5-cache/x11-wm/xpra-0.8.8 b/metadata/md5-cache/x11-wm/xpra-0.8.8 index 3a09f1cc464b..6b177ff1e45d 100644 --- a/metadata/md5-cache/x11-wm/xpra-0.8.8 +++ b/metadata/md5-cache/x11-wm/xpra-0.8.8 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pygobject:2 dev-python/pygtk:2 x11-libs/libX11 x11-libs/libXc REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://xpra.org/src/xpra-0.8.8.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6b157db21933e6bc11b37f66d51ab580 diff --git a/metadata/md5-cache/x11-wm/xpra-0.9.8 b/metadata/md5-cache/x11-wm/xpra-0.9.8 index ba55fe75d964..db6a75afef55 100644 --- a/metadata/md5-cache/x11-wm/xpra-0.9.8 +++ b/metadata/md5-cache/x11-wm/xpra-0.9.8 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( >=dev-lang/python-2.6.8-r3:2.6 ) python_targ REQUIRED_USE=|| ( python_targets_python2_6 python_targets_python2_7 ) || ( python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://xpra.org/src/xpra-0.9.8.tar.bz2 -_eclasses_=distutils-r1 2591a8991f563d02fe1c8781892dc279 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 92246f826ea9a1ca91b3d9cfc7462c50 eutils 4878e7f88afc0ba0866ac112190b0fd4 multibuild 56d4120419072116417e8de1bd1040ff multilib 892e597faee02a5b94eb02ab512e7622 multiprocessing 89580da5ec17ad687fcde876c542b91e python-r1 2ac4b3ff6f2fd520c8672843482ed427 python-utils-r1 4f3595fa07cbecf9f3cfabd0f9a6f34b toolchain-funcs 51e6c948e72c43bcc8edc7544411c953 user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5cd6cb7059c8beaca1ea2b3b9e13e124 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 2087bda83bdd..044b752267a6 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Tue, 22 Oct 2013 17:07:00 +0000 +Thu, 24 Oct 2013 05:07:00 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index ef3a3816a15f..36b3df0e31b9 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Tue Oct 22 17:06:58 UTC 2013 +Thu Oct 24 05:06:57 UTC 2013 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 4a9aaf223b3d..898685ee82ac 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Tue, 22 Oct 2013 17:30:01 +0000 +Thu, 24 Oct 2013 05:30:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 659e8c8b0c93..b64e89019e26 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1382461501 Tue Oct 22 17:05:01 2013 UTC +1382591101 Thu Oct 24 05:05:01 2013 UTC diff --git a/net-dns/pdnsd/Manifest b/net-dns/pdnsd/Manifest index 342bbfd8bd67..89d74067b84d 100644 --- a/net-dns/pdnsd/Manifest +++ b/net-dns/pdnsd/Manifest @@ -1,2 +1,2 @@ -DIST pdnsd-1.2.8-par.tar.gz 471303 SHA256 5f3cade09e445f034430863ba65047a4ab2f581b86f3eab0d0981646e7ec244e +DIST pdnsd-1.2.8-par.tar.gz 471303 SHA256 5f3cade09e445f034430863ba65047a4ab2f581b86f3eab0d0981646e7ec244e SHA512 cf3157abbd4a5a1102b802fdb64c8847861dec7dbdf782e41171ee11ed9aaa28c35b68dbd45d548867d9c90ee680022eaf0ce4e5df041ad0c86fba73e2fbaa76 WHIRLPOOL 808b494cda735b7a174d3633dc4ddfa039f9c3796eee5d084c5939278d9d15252646682d82344e86a0d1be2eba849e37ba6d00617e1c355cb62e156e7e03a68c DIST pdnsd-1.2.9a-par.tar.gz 516061 SHA256 bb5835d0caa8c4b31679d6fd6a1a090b71bdf70950db3b1d0cea9cf9cb7e2a7b SHA512 4fde296642306aa986ddb7cad0b5991bcd397656d93ef4962706276848c7fa62c664a40198e807d029637f116e8000c237d98b91cbbfec5c08b134d8bb3adf81 WHIRLPOOL 9f1f94d6aece1d5cdffe4799e532b1f88217e8d0fef83d097fd03a24a958ad551154efa1f1b719a31315be5e225f33cc7da5c40e3f13a0acba6686e0f6376573 diff --git a/net-dns/pdnsd/pdnsd-1.2.9a.ebuild b/net-dns/pdnsd/pdnsd-1.2.9a.ebuild index a6acc3a1eb83..b270175736a4 100644 --- a/net-dns/pdnsd/pdnsd-1.2.9a.ebuild +++ b/net-dns/pdnsd/pdnsd-1.2.9a.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.2.9a.ebuild,v 1.2 2013/10/08 06:06:58 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.2.9a.ebuild,v 1.3 2013/10/23 16:47:49 maekke Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://members.home.nl/p.a.rombouts/pdnsd/releases/${P}-par.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 arm ~ia64 ~ppc ~s390 ~sparc ~x86" IUSE="debug ipv6 isdn +urandom test" RDEPEND="sys-apps/openrc" diff --git a/net-fs/autofs/autofs-5.0.8.ebuild b/net-fs/autofs/autofs-5.0.8.ebuild index 63eafa1e5013..3bdb0d63b849 100644 --- a/net-fs/autofs/autofs-5.0.8.ebuild +++ b/net-fs/autofs/autofs-5.0.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.8.ebuild,v 1.1 2013/10/21 02:16:34 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/autofs/autofs-5.0.8.ebuild,v 1.2 2013/10/23 04:02:26 patrick Exp $ EAPI=5 @@ -47,7 +47,6 @@ DEPEND="${RDEPEND} CONFIG_CHECK="~AUTOFS4_FS" - src_prepare() { # Upstream's patchset if [[ -n ${PATCH_VER} ]]; then diff --git a/net-irc/quassel/Manifest b/net-irc/quassel/Manifest index 817750c12005..b591eb90d96b 100644 --- a/net-irc/quassel/Manifest +++ b/net-irc/quassel/Manifest @@ -1,3 +1 @@ -DIST quassel-0.8.0.tar.bz2 2663465 SHA256 a3515bd18e2b100eb9a72480e76b1faefaa5e84cdb236b6af1f05b477a1e9071 SHA512 36a9395d7706f771d5477c233aec49fdd94b9b3c3bf723025b77ce299d05c36fa672ab178863aef5c1b8e5ca9500dd73094af3754c9f14d4b4b5274cd7ee909c WHIRLPOOL 99f44cd09f5913834f6558f144083b77d0bd2636e1ea3c09edd0434b664d16e54859ba1da7b14bbb5bc33aa14364a479de2db7ed7a6d75fa8d154ae6e5b9f45e -DIST quassel-0.9.0.tar.bz2 2751143 SHA256 2e3fe06ae3731c829aa3c2f6bb5320619bad264c831f322985c3aa3fe58b6027 SHA512 5f0b54c7c0e839d30ec5cc1c76f115f60aef35c53b2ed1cc69cb856413e0b381bfa3b56d6a9b60d8a118d216930adb52856d39b1bbd4c96e8c0f3809756f6f21 WHIRLPOOL 1dbcdb6e2e2e9055e8b6dcccae3fb5e781ca619f90be3565d350e86637dc9f52a25b6e6d5b4b94e2cc1727e8337ba73f93b21bcf82305d651111866831be9396 DIST quassel-0.9.1.tar.bz2 2777104 SHA256 39e97bd67160d6575a57d4f71c4b1be5c13461ca238baef462ab43164419864e SHA512 c14a709872e40071a655f5c59fa8eb544f5f2097d3edecfa51d4b59e59936b8c5f0f4b1d6cd26414d94c5c88003662ed03347dc763415b66b8278e354d549977 WHIRLPOOL 94a90f0f711911d4187b68d7cb3e6e7f8e623825d351f2f1d0279376d2932fa91b7a4b39cdd260dd0303e7fb14b57803c2bb6030e57bfe353c3b1fd636832aad diff --git a/net-irc/quassel/quassel-0.8.0.ebuild b/net-irc/quassel/quassel-0.8.0.ebuild deleted file mode 100644 index e186fed35b6a..000000000000 --- a/net-irc/quassel/quassel-0.8.0.ebuild +++ /dev/null @@ -1,177 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.8.0.ebuild,v 1.11 2013/04/07 21:28:23 floppym Exp $ - -EAPI=4 - -inherit cmake-utils eutils pax-utils user versionator - -EGIT_REPO_URI="git://git.quassel-irc.org/quassel.git" -EGIT_BRANCH="master" -[[ "${PV}" == "9999" ]] && inherit git-2 - -QT_MINIMAL="4.6.0" -KDE_MINIMAL="4.4" - -DESCRIPTION="Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity." -HOMEPAGE="http://quassel-irc.org/" -[[ "${PV}" == "9999" ]] || SRC_URI="http://quassel-irc.org/pub/${P/_/-}.tar.bz2" - -LICENSE="GPL-3" -KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~sparc-solaris" -SLOT="0" -IUSE="ayatana crypt dbus debug kde monolithic phonon postgres +server +ssl syslog webkit X" - -SERVER_RDEPEND=" - >=dev-qt/qtscript-${QT_MINIMAL}:4 - crypt? ( - app-crypt/qca:2 - app-crypt/qca-ossl - ) - !postgres? ( >=dev-qt/qtsql-${QT_MINIMAL}:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) - postgres? ( >=dev-qt/qtsql-${QT_MINIMAL}:4[postgres] ) - syslog? ( virtual/logger ) -" - -GUI_RDEPEND=" - >=dev-qt/qtgui-${QT_MINIMAL}:4 - ayatana? ( dev-libs/libindicate-qt ) - dbus? ( - >=dev-qt/qtdbus-${QT_MINIMAL}:4 - dev-libs/libdbusmenu-qt - ) - kde? ( - >=kde-base/kdelibs-${KDE_MINIMAL} - >=kde-base/oxygen-icons-${KDE_MINIMAL} - ayatana? ( kde-misc/plasma-widget-message-indicator ) - ) - phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-${QT_MINIMAL}:4 ) ) - webkit? ( >=dev-qt/qtwebkit-${QT_MINIMAL}:4 ) -" - -RDEPEND=" - >=dev-qt/qtcore-${QT_MINIMAL}:4[ssl?] - monolithic? ( - ${SERVER_RDEPEND} - ${GUI_RDEPEND} - ) - !monolithic? ( - server? ( ${SERVER_RDEPEND} ) - X? ( ${GUI_RDEPEND} ) - ) - " -DEPEND="${RDEPEND}" - -DOCS="AUTHORS ChangeLog README" - -S="${WORKDIR}/${P/_/-}" - -REQUIRED_USE=" - || ( X server monolithic ) - crypt? ( || ( server monolithic ) ) - postgres? ( || ( server monolithic ) ) - syslog? ( || ( server monolithic ) ) - kde? ( || ( X monolithic ) ) - phonon? ( || ( X monolithic ) ) - dbus? ( || ( X monolithic ) ) - ayatana? ( || ( X monolithic ) ) - webkit? ( || ( X monolithic ) ) -" - -pkg_setup() { - if use server; then - QUASSEL_DIR=/var/lib/${PN} - QUASSEL_USER=${PN} - # create quassel:quassel user - enewgroup "${QUASSEL_USER}" - enewuser "${QUASSEL_USER}" -1 -1 "${QUASSEL_DIR}" "${QUASSEL_USER}" - fi -} - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_with ayatana LIBINDICATE) - $(cmake-utils_use_want X QTCLIENT) - $(cmake-utils_use_want server CORE) - $(cmake-utils_use_want monolithic MONO) - $(cmake-utils_use_with webkit) - $(cmake-utils_use_with phonon) - $(cmake-utils_use_with kde) - $(cmake-utils_use_with dbus) - $(cmake-utils_use_with ssl OPENSSL) - $(cmake-utils_use_with syslog) - $(cmake-utils_use_with !kde OXYGEN) - $(cmake-utils_use_with crypt) - "-DEMBED_DATA=OFF" - ) - - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - if use server ; then - # needs PAX marking wrt bug#346255 - pax-mark m "${ED}/usr/bin/quasselcore" - - # prepare folders in /var/ - keepdir "${QUASSEL_DIR}" - fowners "${QUASSEL_USER}":"${QUASSEL_USER}" "${QUASSEL_DIR}" - - # init scripts - newinitd "${FILESDIR}"/quasselcore.init quasselcore - newconfd "${FILESDIR}"/quasselcore.conf quasselcore - - # logrotate - insinto /etc/logrotate.d - newins "${FILESDIR}/quassel.logrotate" quassel - fi -} - -pkg_postinst() { - if use monolithic && use ssl ; then - elog "Information on how to enable SSL support for client/core connections" - elog "is available at http://bugs.quassel-irc.org/wiki/quassel-irc." - fi - - if use server; then - einfo "If you want to generate SSL certificate remember to run:" - einfo " emerge --config =${CATEGORY}/${PF}" - fi - - if use server || use monolithic ; then - einfo "Quassel can use net-misc/oidentd package if installed on your system." - einfo "Consider installing it if you want to run quassel within identd daemon." - fi - - # temporary info mesage - if use server && [[ $(get_version_component_range 2 ${REPLACING_VERSIONS}) -lt 7 ]]; then - echo - ewarn "Please note that all configuration moved from" - ewarn "/home/\${QUASSEL_USER}/.config/quassel-irc.org/" - ewarn "to: ${QUASSEL_DIR}." - echo - ewarn "For migration, stop the core, move quasselcore files (pretty much" - ewarn "everything apart from quasselclient.conf and settings.qss) into" - ewarn "new location and then start server again." - fi -} - -pkg_config() { - if use server && use ssl; then - # generate the pem file only when it does not already exist - if [ ! -f "${QUASSEL_DIR}/quasselCert.pem" ]; then - einfo "Generating QUASSEL SSL certificate to: \"${QUASSEL_DIR}/quasselCert.pem\"" - openssl req -x509 -nodes -days 365 -newkey rsa:2048 \ - -keyout "${QUASSEL_DIR}/quasselCert.pem" \ - -out "${QUASSEL_DIR}/quasselCert.pem" - # permissions for the key - chown ${QUASSEL_USER}:${QUASSEL_USER} "${QUASSEL_DIR}/quasselCert.pem" - chmod 400 "${QUASSEL_DIR}/quasselCert.pem" - else - einfo "Certificate \"${QUASSEL_DIR}/quasselCert.pem\" already exists." - einfo "Remove it if you want to create new one." - fi - fi -} diff --git a/net-irc/quassel/quassel-0.9.0.ebuild b/net-irc/quassel/quassel-0.9.0.ebuild deleted file mode 100644 index 8813f4731e98..000000000000 --- a/net-irc/quassel/quassel-0.9.0.ebuild +++ /dev/null @@ -1,177 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.9.0.ebuild,v 1.4 2013/08/18 13:44:01 ago Exp $ - -EAPI=4 - -inherit cmake-utils eutils pax-utils user versionator - -EGIT_REPO_URI="git://git.quassel-irc.org/quassel.git" -EGIT_BRANCH="master" -[[ "${PV}" == "9999" ]] && inherit git-2 - -QT_MINIMAL="4.6.0" -KDE_MINIMAL="4.4" - -DESCRIPTION="Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity." -HOMEPAGE="http://quassel-irc.org/" -[[ "${PV}" == "9999" ]] || SRC_URI="http://quassel-irc.org/pub/${P/_/-}.tar.bz2" - -LICENSE="GPL-3" -KEYWORDS="amd64 ~arm ppc x86 ~amd64-linux ~sparc-solaris" -SLOT="0" -IUSE="ayatana crypt dbus debug kde monolithic phonon postgres +server +ssl syslog webkit X" - -SERVER_RDEPEND=" - >=dev-qt/qtscript-${QT_MINIMAL}:4 - crypt? ( - app-crypt/qca:2 - app-crypt/qca-ossl - ) - !postgres? ( >=dev-qt/qtsql-${QT_MINIMAL}:4[sqlite] dev-db/sqlite:3[threadsafe(+),-secure-delete] ) - postgres? ( >=dev-qt/qtsql-${QT_MINIMAL}:4[postgres] ) - syslog? ( virtual/logger ) -" - -GUI_RDEPEND=" - >=dev-qt/qtgui-${QT_MINIMAL}:4 - ayatana? ( dev-libs/libindicate-qt ) - dbus? ( - >=dev-qt/qtdbus-${QT_MINIMAL}:4 - dev-libs/libdbusmenu-qt - ) - kde? ( - >=kde-base/kdelibs-${KDE_MINIMAL} - >=kde-base/oxygen-icons-${KDE_MINIMAL} - ayatana? ( kde-misc/plasma-widget-message-indicator ) - ) - phonon? ( || ( media-libs/phonon >=dev-qt/qtphonon-${QT_MINIMAL}:4 ) ) - webkit? ( >=dev-qt/qtwebkit-${QT_MINIMAL}:4 ) -" - -RDEPEND=" - >=dev-qt/qtcore-${QT_MINIMAL}:4[ssl?] - monolithic? ( - ${SERVER_RDEPEND} - ${GUI_RDEPEND} - ) - !monolithic? ( - server? ( ${SERVER_RDEPEND} ) - X? ( ${GUI_RDEPEND} ) - ) - " -DEPEND="${RDEPEND}" - -DOCS="AUTHORS ChangeLog README" - -S="${WORKDIR}/${P/_/-}" - -REQUIRED_USE=" - || ( X server monolithic ) - crypt? ( || ( server monolithic ) ) - postgres? ( || ( server monolithic ) ) - syslog? ( || ( server monolithic ) ) - kde? ( || ( X monolithic ) ) - phonon? ( || ( X monolithic ) ) - dbus? ( || ( X monolithic ) ) - ayatana? ( || ( X monolithic ) ) - webkit? ( || ( X monolithic ) ) -" - -pkg_setup() { - if use server; then - QUASSEL_DIR=/var/lib/${PN} - QUASSEL_USER=${PN} - # create quassel:quassel user - enewgroup "${QUASSEL_USER}" - enewuser "${QUASSEL_USER}" -1 -1 "${QUASSEL_DIR}" "${QUASSEL_USER}" - fi -} - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_with ayatana LIBINDICATE) - $(cmake-utils_use_want X QTCLIENT) - $(cmake-utils_use_want server CORE) - $(cmake-utils_use_want monolithic MONO) - $(cmake-utils_use_with webkit) - $(cmake-utils_use_with phonon) - $(cmake-utils_use_with kde) - $(cmake-utils_use_with dbus) - $(cmake-utils_use_with ssl OPENSSL) - $(cmake-utils_use_with syslog) - $(cmake-utils_use_with !kde OXYGEN) - $(cmake-utils_use_with crypt) - "-DEMBED_DATA=OFF" - ) - - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - - if use server ; then - # needs PAX marking wrt bug#346255 - pax-mark m "${ED}/usr/bin/quasselcore" - - # prepare folders in /var/ - keepdir "${QUASSEL_DIR}" - fowners "${QUASSEL_USER}":"${QUASSEL_USER}" "${QUASSEL_DIR}" - - # init scripts - newinitd "${FILESDIR}"/quasselcore.init quasselcore - newconfd "${FILESDIR}"/quasselcore.conf quasselcore - - # logrotate - insinto /etc/logrotate.d - newins "${FILESDIR}/quassel.logrotate" quassel - fi -} - -pkg_postinst() { - if use monolithic && use ssl ; then - elog "Information on how to enable SSL support for client/core connections" - elog "is available at http://bugs.quassel-irc.org/wiki/quassel-irc." - fi - - if use server; then - einfo "If you want to generate SSL certificate remember to run:" - einfo " emerge --config =${CATEGORY}/${PF}" - fi - - if use server || use monolithic ; then - einfo "Quassel can use net-misc/oidentd package if installed on your system." - einfo "Consider installing it if you want to run quassel within identd daemon." - fi - - # temporary info mesage - if use server && [[ $(get_version_component_range 2 ${REPLACING_VERSIONS}) -lt 7 ]]; then - echo - ewarn "Please note that all configuration moved from" - ewarn "/home/\${QUASSEL_USER}/.config/quassel-irc.org/" - ewarn "to: ${QUASSEL_DIR}." - echo - ewarn "For migration, stop the core, move quasselcore files (pretty much" - ewarn "everything apart from quasselclient.conf and settings.qss) into" - ewarn "new location and then start server again." - fi -} - -pkg_config() { - if use server && use ssl; then - # generate the pem file only when it does not already exist - if [ ! -f "${QUASSEL_DIR}/quasselCert.pem" ]; then - einfo "Generating QUASSEL SSL certificate to: \"${QUASSEL_DIR}/quasselCert.pem\"" - openssl req -x509 -nodes -days 365 -newkey rsa:2048 \ - -keyout "${QUASSEL_DIR}/quasselCert.pem" \ - -out "${QUASSEL_DIR}/quasselCert.pem" - # permissions for the key - chown ${QUASSEL_USER}:${QUASSEL_USER} "${QUASSEL_DIR}/quasselCert.pem" - chmod 400 "${QUASSEL_DIR}/quasselCert.pem" - else - einfo "Certificate \"${QUASSEL_DIR}/quasselCert.pem\" already exists." - einfo "Remove it if you want to create new one." - fi - fi -} diff --git a/net-irc/quassel/quassel-0.9.1.ebuild b/net-irc/quassel/quassel-0.9.1.ebuild index ed9f9b4fccdf..c1a880a6d935 100644 --- a/net-irc/quassel/quassel-0.9.1.ebuild +++ b/net-irc/quassel/quassel-0.9.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.9.1.ebuild,v 1.4 2013/10/14 16:57:38 zlogene Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-0.9.1.ebuild,v 1.5 2013/10/23 23:58:13 creffett Exp $ EAPI=4 @@ -13,7 +13,7 @@ EGIT_BRANCH="master" QT_MINIMAL="4.6.0" KDE_MINIMAL="4.4" -DESCRIPTION="Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity." +DESCRIPTION="Qt4/KDE4 IRC client supporting a remote daemon for 24/7 connectivity." HOMEPAGE="http://quassel-irc.org/" [[ "${PV}" == "9999" ]] || SRC_URI="http://quassel-irc.org/pub/${P/_/-}.tar.bz2" diff --git a/net-irc/quassel/quassel-9999.ebuild b/net-irc/quassel/quassel-9999.ebuild index cf57ab6737cb..d88258609079 100644 --- a/net-irc/quassel/quassel-9999.ebuild +++ b/net-irc/quassel/quassel-9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-9999.ebuild,v 1.67 2013/04/07 21:28:23 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/quassel/quassel-9999.ebuild,v 1.68 2013/10/23 23:58:13 creffett Exp $ EAPI=4 @@ -13,7 +13,7 @@ EGIT_BRANCH="master" QT_MINIMAL="4.6.0" KDE_MINIMAL="4.4" -DESCRIPTION="Qt4/KDE4 IRC client suppporting a remote daemon for 24/7 connectivity." +DESCRIPTION="Qt4/KDE4 IRC client supporting a remote daemon for 24/7 connectivity." HOMEPAGE="http://quassel-irc.org/" [[ "${PV}" == "9999" ]] || SRC_URI="http://quassel-irc.org/pub/${P/_/-}.tar.bz2" diff --git a/net-libs/gnutls/Manifest b/net-libs/gnutls/Manifest index e558b703189c..63eca5933fc2 100644 --- a/net-libs/gnutls/Manifest +++ b/net-libs/gnutls/Manifest @@ -1,3 +1,4 @@ DIST gnutls-2.12.23.tar.bz2 7279415 SHA256 dfa67a7e40727eb0913e75f3c44911d5d8cd58d1ead5acfe73dd933fc0d17ed2 SHA512 7780e9ca7b592350ce9b11e53a63d3212320402d8ad2462bfbc0e69aec4a48bb372a1925627abb7996535c87c90e3d79537ea118c8bb36d26aae8e19eaae3a06 WHIRLPOOL 8cab909c961760c72b478d5cbe75633ce0d26190fdece018e9f33b171879753ed38348c33c00fda7b5f3a6b596a5439fb62f1c82a891e9e62fee5bb784cf7e11 DIST gnutls-3.2.3.tar.xz 5119264 SHA256 0543ca13ce9ee1dea95a9349d319623b74d93b8a23935543197b1682bb7f2b5b SHA512 c00cc8a73e26c57050e124ed95f98681e41aee5b59a47c545555ba6571b08063152bf81903c3b7c97d3dcefb938ef3fbd5a76e5816a23fce64f799740d61c9bc WHIRLPOOL 5c61309651fa3eafe44b92a72583732756038ea036df530af1759bfe8d7c6b04a06c8ed081ccad1c5955ed8624e1aaf40f15bfc17eb7e7fe134569015a2cf07d +DIST gnutls-3.2.4-no-error.patch 99348 SHA256 122ee40895b1693124cdbb190d4f07ee8274b287086c62cf728af30ef6140e09 SHA512 ac95c24e79431b47078b8389bfa9d2a08498e4af5936b1e16e21fd99613278df6d2fdc71c921b43360ac7f7545f9a7fc0a0aa23e796db5c7366fd226a653fbae WHIRLPOOL e74c1818337ba20fac66fddc2d06d9fb70fac3b99eed5233a27855f3d20201178824afbd8963ae81eced035d9a84519e05776d0ab1035919aa563124e2809707 DIST gnutls-3.2.4.tar.xz 4959876 SHA256 119570af3eb83b411252bf617688b9b9143e4349f48657b7ebaea57d90ff707f SHA512 d0ae82e34421b74cca42f14e9564d52324c1becfeeef0fb3e301fe3919bff4186e13661c93156a3f0515be544be3a34db10887efef59c6a3c74512d2f14351a7 WHIRLPOOL 10124de2f568f05304a989511d6d8139be56de125412d8b66f3827de84c0538b3af00cd49457ca7a039d06dde7cc2bc80d3d03ff9b836c0ed3e27a184301ab6f diff --git a/net-libs/gnutls/gnutls-3.2.4.ebuild b/net-libs/gnutls/gnutls-3.2.4.ebuild index 5e04e180165f..97d7a023efb6 100644 --- a/net-libs/gnutls/gnutls-3.2.4.ebuild +++ b/net-libs/gnutls/gnutls-3.2.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.2.4.ebuild,v 1.1 2013/09/01 18:51:32 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.2.4.ebuild,v 1.2 2013/10/22 18:41:24 grobian Exp $ EAPI=5 @@ -8,7 +8,8 @@ inherit autotools libtool eutils versionator DESCRIPTION="A TLS 1.2 and SSL 3.0 implementation for the GNU project" HOMEPAGE="http://www.gnutls.org/" -SRC_URI="ftp://ftp.gnutls.org/gcrypt/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz" +SRC_URI="ftp://ftp.gnutls.org/gcrypt/gnutls/v$(get_version_component_range 1-2)/${P}.tar.xz + https://gitorious.org/gnutls/gnutls/commit/1df1b0f7b28c733bf01e5d1faa2f8ccdb3db1665.patch -> ${P}-no-error.patch" # LGPL-3 for libgnutls library and GPL-3 for libgnutls-extra library. # soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled. @@ -62,6 +63,9 @@ src_prepare() { rm src/$(basename ${file} .c).{c,h} || die done + # from upstream, #488498 + epatch "${DISTDIR}"/${P}-no-error.patch + # support user patches epatch_user diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.30.ebuild b/net-libs/libmicrohttpd/libmicrohttpd-0.9.30.ebuild index 5055adb7fd31..8c8efeafde7d 100644 --- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.30.ebuild +++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.30.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.30.ebuild,v 1.1 2013/09/02 23:09:27 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libmicrohttpd/libmicrohttpd-0.9.30.ebuild,v 1.2 2013/10/23 19:55:01 maekke Exp $ EAPI="5" @@ -11,7 +11,7 @@ HOMEPAGE="http://www.gnu.org/software/libmicrohttpd/" SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz" IUSE="messages ssl static-libs test" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 arm ~mips ~ppc ~ppc64 ~x86" LICENSE="LGPL-2.1" SLOT="0" diff --git a/net-libs/libsrtp/libsrtp-1.4.4_p20121108-r1.ebuild b/net-libs/libsrtp/libsrtp-1.4.4_p20121108-r1.ebuild index db7fec29d965..b1f34815f03d 100644 --- a/net-libs/libsrtp/libsrtp-1.4.4_p20121108-r1.ebuild +++ b/net-libs/libsrtp/libsrtp-1.4.4_p20121108-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libsrtp/libsrtp-1.4.4_p20121108-r1.ebuild,v 1.4 2013/10/14 06:17:13 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libsrtp/libsrtp-1.4.4_p20121108-r1.ebuild,v 1.5 2013/10/23 17:39:40 ago Exp $ EAPI="4" @@ -15,7 +15,7 @@ SRC_URI="http://dev.gentoo.org/~phajdan.jr/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ~ppc64 -sparc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 -sparc x86 ~x86-fbsd ~ppc-macos ~x64-macos ~x86-macos" IUSE="aesicm console debug doc static-libs syslog" PATCHES=( "${FILESDIR}/${P}-shared.patch" diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest index 4419468350bf..0524e49102ef 100644 --- a/net-misc/youtube-dl/Manifest +++ b/net-misc/youtube-dl/Manifest @@ -12,3 +12,4 @@ DIST youtube-dl-2013.10.15.tar.gz 1224060 SHA256 f09a629f2d16f591413e9c1bcf62de3 DIST youtube-dl-2013.10.17.tar.gz 424256 SHA256 789aa2d66379a9dd2f541b4c210348e83d0b6eea61925564b064f98105087927 SHA512 b89ca46fa8ae04df060b55c5be77553fff727cde8032a9a925996a76e224dcf1357cfa614155097767e1e7ee766f8dbddc5cde6c2ddba0da675aa7f1da6c4407 WHIRLPOOL bc7c2b8396724314bbf35694186f3284dac4c14503af5853ffccf09b26bac829e0a96da756701474ded5254765febb4b7cb1e133b2d2a6d6cc3d9cb98d8fcda5 DIST youtube-dl-2013.10.18.1.tar.gz 428287 SHA256 bc025bda569b0f98caf9b411fb63406787014983a35f771409d3f0020dc7a960 SHA512 3a176419908cde9dd4a2c10f70d65d3404feb78de3c0a2111526914cdeaa1388a2d65d12f3bd2e473c9eb4e23e20fc8383285c458b358b8b6c823d81bd7ebb19 WHIRLPOOL 8f26e12d1718e5d793bfeaffbb38525963796b8272ff89fba9d527349ef86edd8a97ff383c26d84d7592ef651f598d3163e589ea72f376de77b7ce760220154d DIST youtube-dl-2013.10.18.2.tar.gz 428697 SHA256 3577bd3dcf50c2220c6d1e30b8fe20ec0d535b96be8c24ce61a18ad923a91524 SHA512 1b79850e839227fc33e2405180531fc24b51dfc6be0cea9f1842162b7af988a95495e28135a3bfd73b7be6e4c85f8d4aaa606c126aff7406417ed646c5de9ecd WHIRLPOOL f76ed21b4647a5221554ae7ef3f28f1460c382963238f7c6cbe57927c95750de5b8cd156a6506c01dc7030ca87d5919ed019194a38b06e7a6daab7851ab19162 +DIST youtube-dl-2013.10.23.2.tar.gz 431585 SHA256 d3f4c9e0da165395856e690314caa5eef4382bd994dd46f041a520bf9747c35d SHA512 d3c605a32b3a4cc1ed8cec1adf6bbd9f23af267d928f0cc410fcc6333809df07cb6c807b6f6acc387108d2afb766b62f803ce8f49e948b6136ae57c31cf655da WHIRLPOOL b386e75c65613f670777f5f4932d24f4b56cf2b58dd6fb5816a5af30ade32869e4fbb3da2b917b6a9397156c4689c386e453a1f9d9d7029e6af4b25c10231dc8 diff --git a/net-misc/youtube-dl/youtube-dl-2013.10.23.2.ebuild b/net-misc/youtube-dl/youtube-dl-2013.10.23.2.ebuild new file mode 100644 index 000000000000..6c03f2617e7d --- /dev/null +++ b/net-misc/youtube-dl/youtube-dl-2013.10.23.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/youtube-dl/youtube-dl-2013.10.23.2.ebuild,v 1.1 2013/10/23 23:19:48 jer Exp $ + +EAPI=5 + +PYTHON_COMPAT=(python{2_6,2_7,3_3}) +DISTUTILS_SINGLE_IMPL=true +inherit bash-completion-r1 distutils-r1 eutils + +DESCRIPTION="Download videos from YouTube.com (and mores sites...)" +HOMEPAGE="http://rg3.github.com/youtube-dl/" +SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +IUSE="offensive test" + +DEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[coverage(+)] ) +" + +S="${WORKDIR}/${PN}" + +src_prepare() { + if ! use offensive; then + local xxx=( pornotube redtube thisav xhamster xnxx xvideos youjizz youporn ) + sed -i -e $( printf '/%s/d;' ${xxx[@]} ) youtube_dl/extractor/__init__.py || die + rm $( printf 'youtube_dl/extractor/%s.py ' ${xxx[@]} ) \ + test/test_age_restriction.py || die + fi +} + +src_compile() { + distutils-r1_src_compile +} + +src_test() { + emake test +} + +src_install() { + python_domodule youtube_dl + dobin bin/${PN} + dodoc CHANGELOG README.txt + doman ${PN}.1 + newbashcomp ${PN}.bash-completion ${PN} + python_fix_shebang "${ED}" +} diff --git a/profiles/package.mask b/profiles/package.mask index c5cbfd2b748d..f6db247844d5 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -1,6 +1,6 @@ #################################################################### -# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15177 2013/10/22 15:43:34 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.15178 2013/10/23 13:06:46 pesa Exp $ # # When you add an entry to the top of this file, add your name, the date, and # an explanation of why something is getting masked. Please be extremely @@ -31,6 +31,10 @@ #--- END OF EXAMPLES --- +# Davide Pesavento (23 Oct 2013) +# Some features require Qt 5.2, which is not in tree yet. +=dev-qt/qt-creator-3* + # Mike Gilbert (21 Oct 2013) # Causes sys-boot/grub:2 build to fail, bug 488642. =media-fonts/unifont-6.3* diff --git a/profiles/use.local.desc b/profiles/use.local.desc index 9bc8eb4c9b97..5b4bb928d42a 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -1958,16 +1958,19 @@ dev-qt/designer:webkit - Build the qwebview plugin dev-qt/linguist:exceptions - Add support for exceptions - like catching them inside the event loop (recommended by Nokia) dev-qt/pixeltool:exceptions - Add support for exceptions - like catching them inside the event loop (recommended by Nokia) dev-qt/qdbusviewer:exceptions - Add support for exceptions - like catching them inside the event loop (recommended by Nokia) -dev-qt/qt-creator:android - Build Android plugin +dev-qt/qt-creator:android - Build plugin for Android devices dev-qt/qt-creator:autotools - Enable autotools project manager plugin +dev-qt/qt-creator:baremetal - Build plugin for bare metal devices dev-qt/qt-creator:bazaar - Add support for dev-vcs/bzr version control system dev-qt/qt-creator:clearcase - Add support for IBM ClearCase version control system (requires manual installation of ClearCase client) dev-qt/qt-creator:cmake - Enable cmake project manager plugin dev-qt/qt-creator:fakevim - Enable support for vim-like key bindings +dev-qt/qt-creator:ios - Build plugin for Apple iOS devices dev-qt/qt-creator:madde - Enable integration with MADDE (Maemo Application Development and Debugging Environment) dev-qt/qt-creator:mercurial - Add support for dev-vcs/mercurial version control system dev-qt/qt-creator:perforce - Add support for Perforce version control system (requires manual installation of Perforce client) -dev-qt/qt-creator:qnx - Build QNX/Blackberry plugin +dev-qt/qt-creator:python - Enable Python source code editor +dev-qt/qt-creator:qnx - Build plugin for QNX/Blackberry devices dev-qt/qt-creator:valgrind - Add support for memory debugging using dev-util/valgrind dev-qt/qt-meta:kde - Select media-libs/phonon as Phonon variant (needed for KDE) dev-qt/qt-meta:opengl - Enable the QtOpenGL module @@ -5737,6 +5740,7 @@ sci-libs/plplot:dynamic - Build with dynamic drivers sci-libs/plplot:octave - Add bindings for sci-mathematics/octave sci-libs/plplot:qhull - Add bindings for media-libs/qhull sci-libs/scikits_image:freeimage - Enable support for image i/o via media-libs/freeimage +sci-libs/scikits_image:pyamg - Enable support for algebraic solvers via dev-python/pyamg sci-libs/scipy:sparse - Adds support for sparse solving with sci-libs/umfpack sci-libs/scotch:int64 - Build the 64 bits integer library (needed for > 2^31 vertices) sci-libs/scotch:tools - Build and install extra exec tools diff --git a/sci-geosciences/merkaartor/metadata.xml b/sci-geosciences/merkaartor/metadata.xml index 64e776852cf3..c619c41c0b94 100644 --- a/sci-geosciences/merkaartor/metadata.xml +++ b/sci-geosciences/merkaartor/metadata.xml @@ -2,9 +2,6 @@ sci-geosciences - - hanno@gentoo.org - Use net-libs/libproxy for getting the HTTP/HTTPS/SOCKS proxy configuration Enable Webkit browser plugin using dev-qt/qtwebkit diff --git a/sci-geosciences/qlandkartegt/Manifest b/sci-geosciences/qlandkartegt/Manifest index 3a903b1af604..08875265dd38 100644 --- a/sci-geosciences/qlandkartegt/Manifest +++ b/sci-geosciences/qlandkartegt/Manifest @@ -2,3 +2,4 @@ DIST qlandkartegt-1.4.2.tar.gz 6347471 SHA256 89f1021bda2bba054cb6d4363bb04fd500 DIST qlandkartegt-1.5.1.tar.gz 7113881 SHA256 095cd2390684eead61b2868e1efc85500d6d61e95f3d54d0fd255cd95f55aadd SHA512 28078f5c36dad271b49d377eea26ac1fd45a75b7376c4e73310114c153d1512ec47f5457293f00e7cf9263350380e92261e786735bb0b2fede0416cf3ca5a13a WHIRLPOOL ecc9025aa0936187766d02b1023aad2d4d9d2f51b62126ba39e2029686eb659d676938eebb1ede1f97493498957e08938d1cdb2d75ae2443f1fa24c7cbb7d4d7 DIST qlandkartegt-1.6.0.tar.gz 7221049 SHA256 995a55cf45acba67aa0144b64782566187c3ed3240652f22d4002127f6f2fcb4 SHA512 c4736f9ca21d7002184c563a488f8c1ae194ab6f73675d3f7c947baeda82c6b655aeadd8402f05ac792f9986879b7b73f49fffa0a3c15b76bb90c6d6b6af0ee2 WHIRLPOOL f17cb0828d2eb99f9a50370acc77bc63ff2d31b60c4e4d954f75807db05c8bae74042186e6164807c2c75beaf3c55779995a15126a7385fdeff0c253a844dafe DIST qlandkartegt-1.7.0.tar.gz 8136806 SHA256 4dbab9ed00824647a9afd315619e7974e176a3b47e50f3754441e69f1dbee72d SHA512 c5e5aabb0c44558ce639b3e70df045011c3b2080bddfa2c0685a3b6d171e9e4cc44abd4804f9e0a7f2d62ea6e6a997b8d041374f23eeb2b43accc6b9d4d48802 WHIRLPOOL 27003f9d87efb555567f1f53af1e930107d6c90c6aeaafc684cfed485cd294cbf9b0f401b95c62b6fd4304fab0209b2bc505a7e5cede37fff78f10ebc3ca84b6 +DIST qlandkartegt-1.7.5.tar.gz 8351098 SHA256 a8b571ba838568ed258c61fa0ab18b370c7d22d2539a632a0028b78f4a22aa2c SHA512 c68e98b5cbba0fa535e3a2e32566a2451ad602da651a0dade2ba61c040f1c91f9dabad23bdac0d0fcd5cc3ef71394743a5fa10fdd9dd5865b9a32650e808c2f2 WHIRLPOOL bbedd041c8cfc8824ec809b4b30d5c9d5f69a7acc993fe1f12c11a5775b96708815eac2fc5a9b845223767d38c4454a581d648d44012121c9270fc0b26a13f12 diff --git a/sci-geosciences/qlandkartegt/metadata.xml b/sci-geosciences/qlandkartegt/metadata.xml index 73004fce31e3..454eee1016ac 100644 --- a/sci-geosciences/qlandkartegt/metadata.xml +++ b/sci-geosciences/qlandkartegt/metadata.xml @@ -2,9 +2,6 @@ sci-geosciences - - hanno@gentoo.org - Enable libdmtx support for summarizing waypoints as 2D barcode Enable support for wide range of geodata file formats diff --git a/sci-geosciences/qlandkartegt/qlandkartegt-1.7.5.ebuild b/sci-geosciences/qlandkartegt/qlandkartegt-1.7.5.ebuild new file mode 100644 index 000000000000..772db29c4c19 --- /dev/null +++ b/sci-geosciences/qlandkartegt/qlandkartegt-1.7.5.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/qlandkartegt/qlandkartegt-1.7.5.ebuild,v 1.2 2013/10/23 11:24:55 jlec Exp $ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="View and upload map files, track and waypoint data to your Garmin GPS device" +HOMEPAGE="http://www.qlandkarte.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dbus dmtx exif gps +gpsbabel +gpx-extensions mikrokopter +rmap" + +RDEPEND=" + >=sci-libs/gdal-1.8 + >=sci-libs/proj-4.7 + sys-libs/zlib + dev-qt/qtgui:4 + dev-qt/qtscript:4 + dev-qt/qtsql:4[sqlite] + dev-qt/qtwebkit:4 + dbus? ( dev-qt/qtdbus:4 ) + dmtx? ( media-libs/libdmtx ) + exif? ( media-libs/libexif ) + gps? ( >=sci-geosciences/gpsd-2.90 ) + gpsbabel? ( sci-geosciences/gpsbabel ) + dev-qt/qtopengl:4 + virtual/glu +" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use dbus DBUS) + $(cmake-utils_use dmtx WITH_DMTX) + $(cmake-utils_use exif WITH_EXIF) + $(cmake-utils_use gps WITH_GPSD) + $(cmake-utils_use gpx-extensions GPX_EXTENSIONS) + $(cmake-utils_use mikrokopter MIKROKOPTER) + $(cmake-utils_use rmap RMAP) + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + sed \ + -e 's:\(Geography;\):\1Education;:g' \ + -i ./qlandkartegt.desktop || die +} diff --git a/sci-libs/ceres-solver/Manifest b/sci-libs/ceres-solver/Manifest index 2f5541c1866c..91cb01b9abeb 100644 --- a/sci-libs/ceres-solver/Manifest +++ b/sci-libs/ceres-solver/Manifest @@ -1,2 +1,3 @@ DIST ceres-solver-1.4.0.tar.gz 3659154 SHA256 0a88bbfa20a98c780e4a3371b4f4059d77f7daa0515ef6bb31c25f335bf2a2be SHA512 6489d4840072729652ef95badd7eecf48755dc2d7fce54b7926eab5e3411d6dde20142576683ff45bf649950b445bbb1bead1bad2f10ed63ae319f0f3069cd66 WHIRLPOOL 6f76c0329fda0a31620627b2c6ab777739bea7f11068841f545e2cfc2511e8950a0399a7c4c3cda5152e15676a0a760ce9e7219fd5ed5408a317b9ecb6e96e0f DIST ceres-solver-1.6.0.tar.gz 3947640 SHA256 4d0887ec5081505ab73e65a8a70c14b20e0c08ef7075ec3bba801cf5f014775b SHA512 a32556edaf1295051cb8aba29c348dc3a6be3b6be545b219df45a50e222effc7ebe384d9c9fcad33c23b85a75429ad73a5926a7af4a520706bed47c5b52840cc WHIRLPOOL b42610289a5be1d2b1fc381a113c6bd6256813c9364e85152268fce83e9ed7a005580e23324ea3d9cd97d47086c499deb5619ff122f4ea86d763d2b48f241824 +DIST ceres-solver-1.7.0.tar.gz 3455041 SHA256 5dd60e4dd076824574841ddc6fdeb5dbcdba3035c5a208ec0a58c970724b6f05 SHA512 617fda19de55105ad349cc111e0f393b40daffb2d9bd91a676beae209795628f1c21e2dfdb8a6247f212c2636349ebf5d592cf4e050f05741db080af5fd7f2e9 WHIRLPOOL 8314590bc9f29ca082d707b8f450069c79c7f2427b4ed32048ec5e58331f8c318643e7113a61f505f9475886307e6c60aaae400d1fa78ef1474a63eed35d2131 diff --git a/sci-libs/ceres-solver/ceres-solver-1.7.0.ebuild b/sci-libs/ceres-solver/ceres-solver-1.7.0.ebuild new file mode 100644 index 000000000000..5d27a1ac243b --- /dev/null +++ b/sci-libs/ceres-solver/ceres-solver-1.7.0.ebuild @@ -0,0 +1,87 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/ceres-solver/ceres-solver-1.7.0.ebuild,v 1.1 2013/10/23 18:36:55 bicatali Exp $ + +EAPI=5 + +inherit cmake-utils eutils multilib toolchain-funcs + +DESCRIPTION="Nonlinear least-squares minimizer" +HOMEPAGE="https://code.google.com/p/ceres-solver/" +SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc examples gflags metis openmp protobuf +schur +sparse static-libs test" +REQUIRED_USE="test? ( gflags )" + +RDEPEND=" + dev-cpp/eigen:3 + dev-cpp/glog[gflags?] + protobuf? ( dev-libs/protobuf ) + sparse? ( + sci-libs/amd + sci-libs/camd + sci-libs/ccolamd + sci-libs/cholmod[metis?] + sci-libs/colamd + sci-libs/cxsparse + sci-libs/spqr + virtual/blas + virtual/lapack )" +DEPEND="${RDEPEND} + sparse? ( virtual/pkgconfig ) + doc? ( dev-python/sphinx )" + +src_prepare() { + # prefix love + # disable blas/lapack forced library names + sed -i \ + -e "s:/usr:${EPREFIX}/usr:g" \ + -e '/FIND_LIBRARY(BLAS_LIB NAMES blas)/d' \ + -e '/FIND_LIBRARY(LAPACK_LIB NAMES lapack)/d' \ + -e 's/EXISTS ${BLAS_LIB}/BLAS_LIB/g' \ + -e 's/EXISTS ${LAPACK_LIB}/LAPACK_LIB/g' \ + -e 's/-Werror//g' \ + CMakeLists.txt || die + + # respect gentoo doc dir + sed -i \ + -e "s:share/doc/ceres:share/doc/${PF}:" \ + docs/source/CMakeLists.txt || die +} + +src_configure() { + local blibs llibs + if use sparse; then + blibs=$($(tc-getPKG_CONFIG) --libs blas) + llibs=$($(tc-getPKG_CONFIG) --libs lapack) + fi + local mycmakeargs=( + -DBLAS_LIB="${blibs}" + -DLAPACK_LIB="${llibs}" + $(cmake-utils_use_enable test TESTING) + $(cmake-utils_use doc BUILD_DOCUMENTATION) + $(cmake-utils_use gflags GFLAGS) + $(cmake-utils_use openmp OPENMP) + $(cmake-utils_use protobuf PROTOBUF) + $(cmake-utils_use schur SCHUR_SPECIALIZATIONS) + $(cmake-utils_use sparse CXSPARSE) + $(cmake-utils_use sparse SUITESPARSE) + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + dodoc README VERSION + + use static-libs || rm "${ED}"/usr/$(get_libdir)/libceres.a + dosym libceres_shared.so /usr/$(get_libdir)/libceres.so + + if use examples; then + insinto /usr/share/doc/${PF} + doins -r examples + fi +} diff --git a/sci-libs/cminpack/Manifest b/sci-libs/cminpack/Manifest index 0b8d72b5e2b4..971724788ffd 100644 --- a/sci-libs/cminpack/Manifest +++ b/sci-libs/cminpack/Manifest @@ -1 +1,2 @@ DIST cminpack-1.3.0.tar.gz 303637 SHA256 bd04b1e5b7b4046f37dc4b3221516f36681a1bb35e8b88b091b8b86b0df203fc SHA512 e8a5e8333390611ea17bb21ae5d5d30a1f6f24c41a8bf90f85cb11678d1fe2116e2e186c4a0c1e682c644facd63dbe413d274721f65535468f206a5cf8ad7f6e WHIRLPOOL c76812823e409f474afab8276d8e4fc499a7e9f26182e29ecc2a34a6c6359e83e98522d1bdaf7bb7bb9ed02b35c1d657135f152a130d7ba20542b848c7a57a5e +DIST cminpack-1.3.1.tar.gz 297228 SHA256 3d66bcbe9531eee24061c7b80a827b48b2a9897735db52aa942e7cbf3caa3230 SHA512 b9c90e05e850730c14489322ea22553a1cae05cd6fcb4bf40ea2853f7efe272008ee1d74d6cd38f7e52147dabc9e99f242205a930efbbf9e899a6ac273693d21 WHIRLPOOL 1336eb531df562ac062dff3fff51627351a85accc0736bbda5d6f24fcf97058bf057b42fc6b54d85c4e3e9791c45d6b1d5d32e414508f922b13b84c6f6cc9986 diff --git a/sci-libs/cminpack/cminpack-1.3.1.ebuild b/sci-libs/cminpack/cminpack-1.3.1.ebuild new file mode 100644 index 000000000000..26056062d1aa --- /dev/null +++ b/sci-libs/cminpack/cminpack-1.3.1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cminpack/cminpack-1.3.1.ebuild,v 1.1 2013/10/23 18:42:08 bicatali Exp $ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="C implementation of the MINPACK nonlinear optimization library" +HOMEPAGE="http://devernay.free.fr/hacks/cminpack/" +SRC_URI="${HOMEPAGE}/${P}.tar.gz" + +LICENSE="minpack" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc test" + +PATCHES=( "${FILESDIR}"/${PN}-1.2.2-underlinking.patch ) + +src_configure() { + local mycmakeargs+=( + -DSHARED_LIBS=ON + $(cmake-utils_use_build test examples) + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + dodoc readme* + use doc && dohtml -A .txt doc/* +} diff --git a/sci-libs/cminpack/metadata.xml b/sci-libs/cminpack/metadata.xml index 243b487434c9..7f432fd0dc55 100644 --- a/sci-libs/cminpack/metadata.xml +++ b/sci-libs/cminpack/metadata.xml @@ -1,8 +1,8 @@ - sci - +sci + Minpack includes software for solving nonlinear equations and nonlinear least squares problems. Five algorithmic paths each include a core subroutine and an easy-to-use driver. The algorithms diff --git a/sci-libs/scikits_image/Manifest b/sci-libs/scikits_image/Manifest index 4916d4d3bef7..4df239e19859 100644 --- a/sci-libs/scikits_image/Manifest +++ b/sci-libs/scikits_image/Manifest @@ -1 +1,2 @@ DIST scikit-image-0.8.2.tar.gz 4872917 SHA256 df078f18f9dde7b354b6524cc85b6e78bc5c42a8851a173609052f7c7d4e0846 SHA512 c04f9f369d16f44395abcd8123fcd7c2d1e8558d3c52f821e2e1d3e6a63542b738f5814d53423a9e523427b256b5f30201dba6f3bd5e1b8e0d1942f4413f3bb2 WHIRLPOOL fe63817d2c8a25aaffe84192b78f730872cf0498799a3a3e18f3bfbd8950efc7f1122b2d8f8acafb6925b260ae4fafd754ce1024c2cde95a355d9b1d597f2ab4 +DIST scikit-image-0.9.1.tar.gz 7828218 SHA256 a0346b11830b57e85add95595a69f5f6bb82d7fdb7d6a9f28471176c700300b5 SHA512 6119df192b41f3446fa45754c849b8320235e29504e0080e91d3988fd2db441b545683ee795aefd196cecf0029d3683513fec3156021b897a88ed9f6702b47f6 WHIRLPOOL 20f8e99df40b70840721ca1dbfcd0fa283c4eb7c96dc0fbe21269eb002cc2cf064bdc84dd445cd6440e7154396ccaa4df0c1db94b73159e5047cb1b868cc4d80 diff --git a/sci-libs/scikits_image/metadata.xml b/sci-libs/scikits_image/metadata.xml index 4e57c7f06fea..83878f678d34 100644 --- a/sci-libs/scikits_image/metadata.xml +++ b/sci-libs/scikits_image/metadata.xml @@ -1,17 +1,19 @@ - sci - +sci + This SciKit (toolkit for SciPy) includes useful image processing algorithms for use with Python and NumPy. While SciPy’s ndimage provides low-level manipulation, scikits.image centres around algorithms and applications. - - Enable support for image i/o via media-libs/freeimage - - - scikit-image - + + Enable support for image i/o via + media-libs/freeimage + Enable support for algebraic solvers via dev-python/pyamg + + + scikit-image + diff --git a/sci-libs/scikits_image/scikits_image-0.9.1.ebuild b/sci-libs/scikits_image/scikits_image-0.9.1.ebuild new file mode 100644 index 000000000000..39b124adbef1 --- /dev/null +++ b/sci-libs/scikits_image/scikits_image-0.9.1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scikits_image/scikits_image-0.9.1.ebuild,v 1.1 2013/10/23 17:19:56 bicatali Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) +#PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit distutils-r1 + +MYPN="${PN/scikits_/scikit-}" +MYP="${MYPN}-${PV}" + +DESCRIPTION="Image processing routines for SciPy" +HOMEPAGE="http://scikit-image.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${MYPN}/${MYP}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="doc freeimage gtk pyamg qt4 test" + +RDEPEND=" + sci-libs/scipy[sparse,${PYTHON_USEDEP}] + freeimage? ( media-libs/freeimage ) + gtk? ( dev-python/pygtk[$(python_gen_usedep 'python2*')] ) + pyamg? ( dev-python/pyamg[$(python_gen_usedep 'python2*')] ) + qt4? ( dev-python/PyQt4[${PYTHON_USEDEP}] )" +DEPEND=" + >=dev-python/cython-0.17[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] + sci-libs/scipy[sparse,${PYTHON_USEDEP}] )" + +S="${WORKDIR}/${MYP}" + +DOCS=( CONTRIBUTORS.txt CONTRIBUTING.txt DEPENDS.txt RELEASE.txt TASKS.txt TODO.txt ) + +python_test() { + distutils_install_for_testing + mkdir for_test && cd for_test + echo "backend : Agg" > matplotlibrc || die + MPLCONFIGDIR=. nosetests --exe -v --cover-package=skimage skimage || die +} diff --git a/sci-libs/scipy/scipy-0.12.1.ebuild b/sci-libs/scipy/scipy-0.12.1.ebuild index 3a89b64e2011..7a8813dd963a 100644 --- a/sci-libs/scipy/scipy-0.12.1.ebuild +++ b/sci-libs/scipy/scipy-0.12.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.12.1.ebuild,v 1.3 2013/10/22 08:57:01 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/scipy/scipy-0.12.1.ebuild,v 1.4 2013/10/23 17:40:00 ago Exp $ EAPI=5 @@ -19,7 +19,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz LICENSE="BSD LGPL-2" SLOT="0" IUSE="doc sparse test" -KEYWORDS="amd64 ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +KEYWORDS="amd64 ppc ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" CDEPEND=" dev-python/numpy[lapack,${PYTHON_USEDEP}] diff --git a/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild b/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild index 36f68443757b..4e73f9720adf 100644 --- a/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild +++ b/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.1 2013/10/22 09:28:31 haubi Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-prefix/baselayout-prefix-2.2-r3.ebuild,v 1.2 2013/10/23 07:28:36 haubi Exp $ EAPI=3 @@ -29,6 +29,7 @@ pkg_preinst() { } src_prepare() { + epatch "${FILESDIR}"/${EINFO}-checkfuncs-aix.patch # generic aix port # POSIX specifies , AIX lacks sed -i -e 's|||' src/libeinfo/libeinfo.c || die # exotic platforms still aren't fixed in upstream libtool diff --git a/sys-apps/baselayout-prefix/files/einfo-1.0.3-checkfuncs-aix.patch b/sys-apps/baselayout-prefix/files/einfo-1.0.3-checkfuncs-aix.patch new file mode 100644 index 000000000000..0468d4c741ab --- /dev/null +++ b/sys-apps/baselayout-prefix/files/einfo-1.0.3-checkfuncs-aix.patch @@ -0,0 +1,123 @@ +Generic port to AIX, may apply for other platforms too. + +http://prefix.gentooexperimental.org:8000/einfo/rev/c75747287497 +http://prefix.gentooexperimental.org:8000/einfo/rev/d5770e2343a1 + +Better patch autoconf-output here rather than autoconf-input. +#diff -ru einfo-1.0.3.orig/configure.ac einfo-1.0.3/configure.ac +#--- einfo-1.0.3.orig/configure.ac 2013-05-06 17:06:34.000000000 +0000 +#+++ einfo-1.0.3/configure.ac 2013-10-22 11:12:51.000000000 +0000 +#@@ -27,7 +27,7 @@ +# AC_SUBST([TERMCAP_LIBS], [$HAVE_TERMCAP]) +# +# # Checks for library functions. +#-AC_CHECK_FUNCS([gettimeofday strcasecmp strrchr strdup]) +#+AC_CHECK_FUNCS([gettimeofday strcasecmp strrchr strdup strlcpy strlcat vsyslog]) +# AC_SEARCH_LIBS([nanosleep], [rt]) +# +# # defines for functions.sh +diff -ru einfo-1.0.3.orig/configure einfo-1.0.3/configure +--- einfo-1.0.3.orig/configure 2013-05-06 17:08:23.000000000 +0000 ++++ einfo-1.0.3/configure 2013-10-22 11:13:11.000000000 +0000 +@@ -11453,7 +11453,7 @@ + + + # Checks for library functions. +-for ac_func in gettimeofday strcasecmp strrchr strdup ++for ac_func in gettimeofday strcasecmp strrchr strdup strlcpy strlcat vsyslog + do : + as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` + ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" +diff -ru einfo-1.0.3.orig/config.h.in einfo-1.0.3/config.h.in +--- einfo-1.0.3.orig/config.h.in 2013-05-06 17:10:47.000000000 +0000 ++++ einfo-1.0.3/config.h.in 2013-10-22 11:14:24.000000000 +0000 +@@ -30,6 +30,12 @@ + /* Define to 1 if you have the header file. */ + #undef HAVE_STRING_H + ++/* Define to 1 if you have the `strlcat' function. */ ++#undef HAVE_STRLCAT ++ ++/* Define to 1 if you have the `strlcpy' function. */ ++#undef HAVE_STRLCPY ++ + /* Define to 1 if you have the `strrchr' function. */ + #undef HAVE_STRRCHR + +@@ -45,6 +51,9 @@ + /* Define to 1 if you have the header file. */ + #undef HAVE_UNISTD_H + ++/* Define to 1 if you have the `vsyslog' function. */ ++#undef HAVE_VSYSLOG ++ + /* Define to the sub-directory in which libtool stores uninstalled libraries. + */ + #undef LT_OBJDIR +diff -ru einfo-1.0.3.orig/src/includes/helpers.h einfo-1.0.3/src/includes/helpers.h +--- einfo-1.0.3.orig/src/includes/helpers.h 2013-01-06 15:26:41.000000000 +0000 ++++ einfo-1.0.3/src/includes/helpers.h 2013-10-22 11:15:52.000000000 +0000 +@@ -67,10 +67,8 @@ + (var) = (tvar)) + #endif + +-#ifdef __GLIBC__ +-# if ! defined (__UCLIBC__) && ! defined (__dietlibc__) +-# define strlcpy(dst, src, size) snprintf(dst, size, "%s", src) +-# endif ++#if !HAVE_STRLCPY ++# define strlcpy(dst, src, size) snprintf(dst, size, "%s", src) + #endif + + #ifndef timespecsub +diff -ru einfo-1.0.3.orig/src/libeinfo/libeinfo.c einfo-1.0.3/src/libeinfo/libeinfo.c +--- einfo-1.0.3.orig/src/libeinfo/libeinfo.c 2013-05-05 11:08:36.000000000 +0000 ++++ einfo-1.0.3/src/libeinfo/libeinfo.c 2013-10-22 11:16:28.000000000 +0000 +@@ -195,8 +195,7 @@ + #endif + + /* strlcat and strlcpy are nice, shame glibc does not define them */ +-#ifdef __GLIBC__ +-# if ! defined (__UCLIBC__) && ! defined (__dietlibc__) ++#if !HAVE_STRLCAT + static size_t + strlcat(char *dst, const char *src, size_t size) + { +@@ -224,7 +223,6 @@ + + return dst_n + (s - src); + } +-# endif + #endif + + static bool +@@ -530,7 +528,29 @@ + closelog(); + openlog(e, LOG_PID, LOG_DAEMON); + va_copy(apc, ap); ++#if HAVE_VSYSLOG + vsyslog(level, fmt, apc); ++#else /* !HAVE_VSYSLOG */ ++ { ++ int len = 900; ++ int buflen; ++ char *buf = NULL; ++ do { ++ buflen = len; ++ if (buf) free(buf); ++ buf = (char*)malloc(sizeof(char) * (buflen+1)); ++ if (buf) { ++ len = vsnprintf(buf, buflen, fmt, apc); ++ } else { ++ syslog(level, "cannot allocate %d bytes: %m", buflen+1); ++ } ++ } while(buf && len < (1024*1024*1024) && len > buflen); ++ if (buf) { ++ syslog(level, buf); /* resolve "%m" */ ++ free(buf); ++ } ++ } ++#endif + va_end(apc); + closelog(); + } diff --git a/sys-apps/pkgcore/metadata.xml b/sys-apps/pkgcore/metadata.xml index a0079e0484d1..4936434464a3 100644 --- a/sys-apps/pkgcore/metadata.xml +++ b/sys-apps/pkgcore/metadata.xml @@ -1,14 +1,14 @@ - - dolsen@gentoo.org - Brian Dolbec - radhermit@gentoo.org Tim Harder + + dolsen@gentoo.org + Brian Dolbec + Build and install API docs. diff --git a/sys-apps/pkgcore/pkgcore-9999.ebuild b/sys-apps/pkgcore/pkgcore-9999.ebuild index a236ba2a6572..a8ce8a94c10c 100644 --- a/sys-apps/pkgcore/pkgcore-9999.ebuild +++ b/sys-apps/pkgcore/pkgcore-9999.ebuild @@ -1,53 +1,78 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v 1.12 2013/09/12 22:37:09 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v 1.13 2013/10/22 19:46:57 radhermit Exp $ -EAPI="3" -DISTUTILS_SRC_TEST="setup.py" +EAPI=4 +PYTHON_COMPAT=( python{2_6,2_7,3_2,3_3} ) +inherit distutils-r1 -EGIT_REPO_URI="https://code.google.com/p/pkgcore/" -inherit distutils git-2 +if [[ ${PV} == *9999 ]] ; then + EGIT_REPO_URI="https://code.google.com/p/pkgcore/" + EGIT_NONSHALLOW=1 + inherit git-r3 +else + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + SRC_URI="http://pkgcore.googlecode.com/files/${P}.tar.bz2" +fi DESCRIPTION="pkgcore package manager" HOMEPAGE="http://pkgcore.googlecode.com/" -SRC_URI="" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" IUSE="+doc" -RDEPEND=">=dev-lang/python-2.5 - =dev-python/snakeoil-9999 - || ( >=dev-lang/python-2.5 dev-python/pycrypto )" +RDEPEND="=dev-python/snakeoil-9999[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} - dev-python/sphinx - dev-python/pyparsing" - -DOCS="AUTHORS NEWS" + dev-python/sphinx[${PYTHON_USEDEP}] + dev-python/pyparsing[${PYTHON_USEDEP}]" pkg_setup() { # disable snakeoil 2to3 caching... unset PY2TO3_CACHEDIR - python_pkg_setup + + mydistutilsargs=( + build + --disable-html-docs + --disable-man-pages + ) +} + +python_compile_all() { + esetup.py build_man $(use doc && echo 'build_docs') + + # symlinks generated manpages into source root + # dead symlinks are tolerated + ln -s "${BUILD_DIR}/sphinx/man" man || die + ln -s "${BUILD_DIR}/sphinx/html" html || die } -src_compile() { - local x - distutils_src_compile $(use_enable doc html-docs) - # Find the first set of generated manpages, and symlink - # those into the source root. - for x in ${PYTHON_ABIS}; do - ln -s "${S}/build-${x}/sphinx/man" "${S}/man" - break - done +python_test() { + esetup.py test } src_install() { - distutils_src_install $(use_enable doc html-docs) + mydistutilsargs+=( + install + --disable-html-docs + --disable-man-pages + ) + + distutils-r1_src_install +} + +python_install_all() { + local cmds=( + install_man + ) + use doc && cmds+=( + install_docs --path="${ED%/}"/usr/share/doc/${PF}/html + ) + + distutils-r1_python_install "${cmds[@]}" + distutils-r1_python_install_all } pkg_postinst() { - distutils_pkg_postinst pplugincache } diff --git a/sys-apps/portage/portage-2.2.7.ebuild b/sys-apps/portage/portage-2.2.7.ebuild index 9fda3580f743..d0236645b091 100644 --- a/sys-apps/portage/portage-2.2.7.ebuild +++ b/sys-apps/portage/portage-2.2.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.7.ebuild,v 1.3 2013/10/20 22:59:36 chainsaw Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/portage/portage-2.2.7.ebuild,v 1.4 2013/10/23 16:49:36 maekke Exp $ # Require EAPI 2 since we now require at least python-2.6 (for python 3 # syntax support) which also requires EAPI 2. @@ -15,7 +15,7 @@ inherit eutils multilib DESCRIPTION="Portage is the package management and distribution system for Gentoo" HOMEPAGE="http://www.gentoo.org/proj/en/portage/index.xml" LICENSE="GPL-2" -KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd" SLOT="0" IUSE="build doc epydoc +ipc linguas_ru pypy2_0 python2 python3 selinux xattr" diff --git a/sys-auth/keystone/keystone-2013.2.9999.ebuild b/sys-auth/keystone/keystone-2013.2.9999.ebuild index 391b9ad5a522..5c151b881593 100644 --- a/sys-auth/keystone/keystone-2013.2.9999.ebuild +++ b/sys-auth/keystone/keystone-2013.2.9999.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/keystone-2013.2.9999.ebuild,v 1.1 2013/10/22 05:57:52 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-auth/keystone/keystone-2013.2.9999.ebuild,v 1.2 2013/10/22 18:26:59 prometheanfire Exp $ EAPI=5 #test restricted becaues of bad requirements given (old webob for instance) @@ -37,11 +37,11 @@ RDEPEND="${DEPEND} dev-python/paste[${PYTHON_USEDEP}] >=dev-python/routes-1.12.3[${PYTHON_USEDEP}] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite,${PYTHON_USEDEP}] - =dev-python/sqlalchemy-0.7.8[mysql,${PYTHON_USEDEP}] - =dev-python/sqlalchemy-0.7.8[postgres,${PYTHON_USEDEP}] - =dev-python/sqlalchemy-migrate-0.7.2[${PYTHON_USEDEP}] dev-python/passlib[${PYTHON_USEDEP}] >=dev-python/lxml-2.3[${PYTHON_USEDEP}] diff --git a/sys-boot/grub/Manifest b/sys-boot/grub/Manifest index e97427506743..5493835339f0 100644 --- a/sys-boot/grub/Manifest +++ b/sys-boot/grub/Manifest @@ -1,3 +1,4 @@ +DIST dejavu-sans-ttf-2.34.zip 406977 SHA256 242e8c1cb2bdc7458bece02cca898f962c2bc919dcf67d97428149228290184d SHA512 dcd802b9c83cfa749b7542d0855eb1facb665a035af8c05f58830fce3ce37ba8d4a6f0353c07ae924c7fc25460d330b7312cbaffd34a2cb314a8e222de385c1b WHIRLPOOL d8b3289997cc39aca1c909ac1cae79727a19932f07b116a4a0bcc83e4a2f136d05d18c8ef2b05504a2f1f65eba85f93d61d52b0c913be7bb3e23f6a403eb6a82 DIST grub-0.92-gentoo-0.2.tar.bz2 21727 SHA256 f579b49b2d24702905c333ce2b6170a554ce26d0232c65478a21a1fd2eb8b8fe SHA512 ac90f58913203b970808e3a6e20ce367af1d6a262eba5f229d080c7f5eebd228bd9add9a423d642f8a53d915930921975af1d45116f18bc0be982320b898ef1d WHIRLPOOL 2bbfddab5da2e786047e25d95c0c8c6cb70f5174df5991db3b09657bc15802af81bcb124bf7723fca3c2016eb42d9f06ef2b8500920ae15de3624ae87c8d3d51 DIST grub-0.92.tar.gz 877112 SHA256 197e690faed45bcbf854ab5dc591053d6f6ed1a5b8e5596c4ba27d6f0d50eb37 SHA512 11750f4dc6606e354acc7f459416f0a2efaedcd6e60ab85c708de0d04eb7876a899292067c651cc857db30a7a533714f21719a9eb65c14aef9306c5187843bee WHIRLPOOL be47d1ff182dc8305d748b2e6bcf0c6796019eb1f59abfb042ad3bb4c0922c25b5420ce8c6bfe2c098ef120088866b9623e85e47902f8441e061a13c65b58ae1 DIST grub-0.94-gentoo-0.1.tar.bz2 40585 SHA256 6f5ac30e0495917cd062c48568bab582f68f288bb3fe4fb968869fdefcd012e3 SHA512 c24e5b394a12c557bb023ace27975415540c0a6386a57fcd966c3acc15284e76163bdac4a2878cdae217c4ee276860691dfe7e061b734adf2c493ac3be66fb37 WHIRLPOOL 78abf4a7211a246e99eb30bf74df7a016fdcc66e3bbd2e3abc847e000896723c144f9a0b96d707149ed0cc230d01effad9d4001ad9dc7d4d2ae44a53476b6afb @@ -20,3 +21,4 @@ DIST grub-1.99.tar.xz 2639224 SHA256 f308148d4c83c6f16a73b58a0cd39381656edb74092 DIST grub-2.00.tar.xz 5136412 SHA256 784ec38e7edc32239ad75b8e66df04dc8bfb26d88681bc9f627133a6eb85c458 SHA512 f0dbfc90639491e5c671d2df206dec0139171bf096a99ee236f7ebf21cdafc6e6d39a9607e14ad2a6aee7c199ecc63f0a39573d969318e1a0cd32f989aa6b44a WHIRLPOOL b9690c023ab507926b8615ce28bf9de82b793ebd02126a5ecd52a130ab4bc52e2ae650b02ae2d784d4089e2981be944ba8b4800cde742aab793ff0d9029843c8 DIST grub-2.00_p5107.tar.xz 5836972 SHA256 92fd8f93621e7083f32ba6ef407f2984e5d3caaafdc35fb3d89ed054ca7c4dac SHA512 a70017dfc837e8fa869af7f71ca6191973f3f44f5a93378100cff5da425aa132b3903a3602ab907ef070872bb7a17f0586c8415845645c596d0621a4929ca83d WHIRLPOOL 5d88806fc849d2ff78ca590312110be4505e2801fee7c68faba39a54a44eedc16eb25dad88f1ff0058dea2e98382944c7e7632ccfa6f4a171ff0ef00cf67fd2d DIST splash.xpm.gz 33856 SHA256 b95600f777331b0dd31d51c68f60f0e846e4c8b628857a41165f4e6b30e6acaf SHA512 5ae1f786f7d46a95a7061068d5b2b3ad64607c7b190d6f28379508c5dce67e26308325bfd637542a84855dfcf1ea3d143947326fdb189a6a8972208d3ead23da WHIRLPOOL d95b7b588ea8ac7c2c8c53eb8057aef21c825da6411afe3b7e864c606aeffaaebce8ae41ce3e979f277bd6b48a9e82a1f2ea8afc836213b56523d8a854227d7b +DIST unifont-5.1.20080820.pcf.gz 1379965 SHA256 122b9c470f29b70223b0e07404a6dfa7f339fcfa6ae74c024f478945af7a9a63 SHA512 8939e2bc82ca97b60e6678f3ff079a2be7ba9b702f2e8ee289e853af5823695f7baafbf14b674fc5e41071f2a6de4f2dadd56bf8b4653849dd756d59622f1649 WHIRLPOOL 0f083d66781cc4c3e554ebeda4e21843fa275ecf3e1908b4873fadfe37b7c88e8346a124656704bb1b29f89afee23d6301b4df0f19e788f454c60d47156fe78d diff --git a/sys-boot/grub/grub-2.00_p5107-r2.ebuild b/sys-boot/grub/grub-2.00_p5107-r2.ebuild index 927f692e4190..b8f67c2f23b0 100644 --- a/sys-boot/grub/grub-2.00_p5107-r2.ebuild +++ b/sys-boot/grub/grub-2.00_p5107-r2.ebuild @@ -1,11 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.00_p5107-r2.ebuild,v 1.3 2013/10/21 01:20:56 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.00_p5107-r2.ebuild,v 1.4 2013/10/23 22:05:11 floppym Exp $ EAPI=5 if [[ ${PV} == 9999 ]]; then AUTOTOOLS_AUTORECONF=1 + GRUB_AUTOGEN=1 fi inherit autotools-utils bash-completion-r1 eutils flag-o-matic mount-boot multibuild pax-utils toolchain-funcs versionator @@ -24,14 +25,23 @@ if [[ ${PV} != 9999 ]]; then KEYWORDS="amd64 x86" PATCHES=() else - inherit bzr - EBZR_REPO_URI="http://bzr.savannah.gnu.org/r/grub/trunk/grub/" + inherit git-r3 + EGIT_REPO_URI="git://git.sv.gnu.org/grub.git + http://git.savannah.gnu.org/r/grub.git" fi +DEJAVU=dejavu-sans-ttf-2.34 +UNIFONT=unifont-5.1.20080820.pcf +SRC_URI+=" truetype? ( + mirror://sourceforge/dejavu/${DEJAVU}.zip + http://unifoundry.com/${UNIFONT}.gz +)" + DESCRIPTION="GNU GRUB boot loader" HOMEPAGE="http://www.gnu.org/software/grub/" -LICENSE="GPL-3" +# Includes licenses for dejavu and unifont +LICENSE="GPL-3 truetype? ( BitstreamVera GPL-2-with-font-exception )" SLOT="2" IUSE="custom-cflags debug device-mapper doc efiemu mount +multislot nls static sdl test truetype libzfs" @@ -63,9 +73,7 @@ RDEPEND=" device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) - truetype? ( - media-libs/freetype - ) + truetype? ( media-libs/freetype ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) " @@ -88,10 +96,6 @@ DEPEND="${RDEPEND} dev-libs/libisoburn app-emulation/qemu ) - truetype? ( - media-fonts/dejavu - >=media-fonts/unifont-5 - ) " RDEPEND+=" kernel_linux? ( @@ -101,7 +105,7 @@ RDEPEND+=" !multislot? ( !sys-boot/grub:0 ) " -if [[ -n ${AUTOTOOLS_AUTORECONF} ]]; then +if [[ -n ${GRUB_AUTOGEN} ]]; then DEPEND+=" >=sys-devel/autogen-5.10" fi @@ -139,6 +143,13 @@ pkg_pretend() { fi } +src_unpack() { + if [[ ${PV} == 9999 ]]; then + git-r3_src_unpack + fi + default_src_unpack +} + src_prepare() { [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" sed -i -e /autoreconf/d autogen.sh || die @@ -147,13 +158,20 @@ src_prepare() { sed -i -e 's/^\* GRUB:/* GRUB2:/' -e 's/(grub)/(grub2)/' docs/grub.texi || die fi epatch_user - if [[ -n ${AUTOTOOLS_AUTORECONF} ]]; then + if [[ -n ${GRUB_AUTOGEN} ]]; then bash autogen.sh || die + fi + if [[ -n ${AUTOTOOLS_AUTORECONF} ]]; then autopoint() { return 0; } eautoreconf fi } +setup_fonts() { + ln -s "${WORKDIR}/${DEJAVU}/ttf/DejaVuSans.ttf" DejaVuSans.ttf || die + ln -s "${WORKDIR}/${UNIFONT}" unifont.pcf || die +} + grub_configure() { local platform @@ -198,6 +216,11 @@ grub_configure() { myeconfargs+=( --program-transform-name="s,grub,grub2," ) fi + if use truetype; then + mkdir -p "${BUILD_DIR}" || die + run_in_build_dir setup_fonts + fi + autotools-utils_src_configure } diff --git a/sys-boot/grub/grub-9999.ebuild b/sys-boot/grub/grub-9999-r1.ebuild similarity index 88% rename from sys-boot/grub/grub-9999.ebuild rename to sys-boot/grub/grub-9999-r1.ebuild index 58ae197df826..b36ac3c5e53f 100644 --- a/sys-boot/grub/grub-9999.ebuild +++ b/sys-boot/grub/grub-9999-r1.ebuild @@ -1,11 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999.ebuild,v 1.109 2013/10/21 01:20:56 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999-r1.ebuild,v 1.2 2013/10/23 21:29:46 floppym Exp $ EAPI=5 if [[ ${PV} == 9999 ]]; then AUTOTOOLS_AUTORECONF=1 + GRUB_AUTOGEN=1 fi inherit autotools-utils bash-completion-r1 eutils flag-o-matic mount-boot multibuild pax-utils toolchain-funcs versionator @@ -24,14 +25,23 @@ if [[ ${PV} != 9999 ]]; then KEYWORDS="~amd64 ~x86" PATCHES=() else - inherit bzr - EBZR_REPO_URI="http://bzr.savannah.gnu.org/r/grub/trunk/grub/" + inherit git-r3 + EGIT_REPO_URI="git://git.sv.gnu.org/grub.git + http://git.savannah.gnu.org/r/grub.git" fi +DEJAVU=dejavu-sans-ttf-2.34 +UNIFONT=unifont-5.1.20080820.pcf +SRC_URI+=" truetype? ( + mirror://sourceforge/dejavu/${DEJAVU}.zip + http://unifoundry.com/${UNIFONT}.gz +)" + DESCRIPTION="GNU GRUB boot loader" HOMEPAGE="http://www.gnu.org/software/grub/" -LICENSE="GPL-3" +# Includes licenses for dejavu and unifont +LICENSE="GPL-3 truetype? ( BitstreamVera GPL-2-with-font-exception )" SLOT="2" IUSE="custom-cflags debug device-mapper doc efiemu mount +multislot nls static sdl test truetype libzfs" @@ -63,9 +73,7 @@ RDEPEND=" device-mapper? ( >=sys-fs/lvm2-2.02.45 ) libzfs? ( sys-fs/zfs ) mount? ( sys-fs/fuse ) - truetype? ( - media-libs/freetype - ) + truetype? ( media-libs/freetype ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) " @@ -88,10 +96,6 @@ DEPEND="${RDEPEND} dev-libs/libisoburn app-emulation/qemu ) - truetype? ( - media-fonts/dejavu - >=media-fonts/unifont-5 - ) " RDEPEND+=" kernel_linux? ( @@ -101,7 +105,7 @@ RDEPEND+=" !multislot? ( !sys-boot/grub:0 ) " -if [[ -n ${AUTOTOOLS_AUTORECONF} ]]; then +if [[ -n ${GRUB_AUTOGEN} ]]; then DEPEND+=" >=sys-devel/autogen-5.10" fi @@ -139,6 +143,13 @@ pkg_pretend() { fi } +src_unpack() { + if [[ ${PV} == 9999 ]]; then + git-r3_src_unpack + fi + default_src_unpack +} + src_prepare() { [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" sed -i -e /autoreconf/d autogen.sh || die @@ -147,13 +158,20 @@ src_prepare() { sed -i -e 's/^\* GRUB:/* GRUB2:/' -e 's/(grub)/(grub2)/' docs/grub.texi || die fi epatch_user - if [[ -n ${AUTOTOOLS_AUTORECONF} ]]; then + if [[ -n ${GRUB_AUTOGEN} ]]; then bash autogen.sh || die + fi + if [[ -n ${AUTOTOOLS_AUTORECONF} ]]; then autopoint() { return 0; } eautoreconf fi } +setup_fonts() { + ln -s "${WORKDIR}/${DEJAVU}/ttf/DejaVuSans.ttf" DejaVuSans.ttf || die + ln -s "${WORKDIR}/${UNIFONT}" unifont.pcf || die +} + grub_configure() { local platform @@ -198,6 +216,11 @@ grub_configure() { myeconfargs+=( --program-transform-name="s,grub,grub2," ) fi + if use truetype; then + mkdir -p "${BUILD_DIR}" || die + run_in_build_dir setup_fonts + fi + autotools-utils_src_configure } diff --git a/sys-cluster/cinder/cinder-2013.2.9999.ebuild b/sys-cluster/cinder/cinder-2013.2.9999.ebuild new file mode 100644 index 000000000000..73b4c922e79b --- /dev/null +++ b/sys-cluster/cinder/cinder-2013.2.9999.ebuild @@ -0,0 +1,95 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/cinder/cinder-2013.2.9999.ebuild,v 1.1 2013/10/23 02:30:59 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 eutils git-2 + +DESCRIPTION="Cinder is the OpenStack Block storage service. This is a spin out +of nova-volumes." +HOMEPAGE="https://launchpad.net/cinder" +EGIT_REPO_URI="https://github.com/openstack/cinder.git" +EGIT_BRANCH="stable/havana" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="" +IUSE="+api +scheduler +volume mysql postgres sqlite" +REQUIRED_USE="|| ( mysql postgres sqlite )" + +#sudo is a build dep because I want the sudoers.d directory to exist, lazy. +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pbr-0.5.21[${PYTHON_USEDEP}] + -maintainer-needed@gentoo.org + +pva@gentoo.org +Peter Volkov + diff --git a/sys-kernel/aufs-sources/Manifest b/sys-kernel/aufs-sources/Manifest index e7d3c2a72644..2290b386ee7f 100644 --- a/sys-kernel/aufs-sources/Manifest +++ b/sys-kernel/aufs-sources/Manifest @@ -42,6 +42,8 @@ DIST genpatches-3.4-46.base.tar.xz 824908 SHA256 98f1a4de9f10cd902fd671cf4f8eaba DIST genpatches-3.4-46.extras.tar.xz 18144 SHA256 71ac6f1d18613ac09f7f953a4e261f10458556949e1929ce50a63b9c2bed465e SHA512 1ca2ca6e44343b652a4ebe5216442cf30bea96652c41c6b7277e767a4e2569ac8201a5aa32f5e2627ecf996a73009b5bdccb22fc8bede85a747490bbdc99fd5f WHIRLPOOL c7fe7288a3bc6c9a4b3603c1d7f363eef7e82b758bbcaef7fbb10f9e13ac8918959f0f99f960cc441a805bf28abe8420f273ec41166b266cc545ec3ea1ba74d3 DIST genpatches-3.4-47.base.tar.xz 836088 SHA256 060fce7f9f08b40acd793316f9f2fec810db74fafe8a710366e3bf23064c128d SHA512 29291d1dbf67d200f9cf3ca8aafbdbe6879a309135022d7c9772e3da0319c84bcc10db79c551f6ef3edbd8b6207f3b91a963cada3f1cdae390265fe617d9e475 WHIRLPOOL ee8c4284160ff4221220b3ba1053ddfc606a03e7ebeeed4dcb2b44bdb8ec6ef053c928a734cef0b920865cefef62177d1bbfa286f79fccb7cd4f4139a585e940 DIST genpatches-3.4-47.extras.tar.xz 18144 SHA256 71ac6f1d18613ac09f7f953a4e261f10458556949e1929ce50a63b9c2bed465e SHA512 1ca2ca6e44343b652a4ebe5216442cf30bea96652c41c6b7277e767a4e2569ac8201a5aa32f5e2627ecf996a73009b5bdccb22fc8bede85a747490bbdc99fd5f WHIRLPOOL c7fe7288a3bc6c9a4b3603c1d7f363eef7e82b758bbcaef7fbb10f9e13ac8918959f0f99f960cc441a805bf28abe8420f273ec41166b266cc545ec3ea1ba74d3 +DIST genpatches-3.4-48.base.tar.xz 838672 SHA256 587320d3683a896419b7cabcff56edacbcf915c0625dd2d5d1f1e08d7ee779ba SHA512 2f4b9985ede36488f86e34ade63a7301c0093404282984e4c55c2fdc480794879a5846a204e9165cd639cb7a986cbcfbc0cc957bb1fd19f2b47b5207e0f11986 WHIRLPOOL 3da0e0ef0c19f866fbcd0b39b3f17a48fb8ef6b331f1a1a9301007e27204707e24b9096ac04bc3cf679999d2d6c9c9f23a63d155dc04b059dd7a1dcb322c4ffb +DIST genpatches-3.4-48.extras.tar.xz 18152 SHA256 2078dc6cca6f9345218e76c7eeaadc505ae1f45e140e3eb1b1517be6b6c0f69d SHA512 934140d99080cb6e91d6d5d7e809e067501a94a1f3e17bac4350f5725ec2569a623765a0b96d9d98424f9f6fd7c5c000660ae0e52b919f6cb2eb28b497d70250 WHIRLPOOL daffa0528e4ff5c0874418ed228e20744e7a0a7a1485587ee2505e19a20f51c5d831896c535be015cb72fab3c09e0ebf9e10a0739667f75a220aeafbc10c89af DIST linux-3.10.tar.xz 73175088 SHA256 df27fa92d27a9c410bfe6c4a89f141638500d7eadcca5cce578954efc2ad3544 SHA512 5fb109fcbd59bf3dffc911b853894f0a84afa75151368f783a1252c5ff60c7a1504de216c0012be446df983e2dea400ad8eeed3ce04f24dc61d0ef76c174dc35 WHIRLPOOL e7c0ccc2231e430b831218fc66f1940d095d2d5447d391329c6a7373d4a1d16708f64778b32e4847802ee2dae4fcf7cb67a1238fd4eb204fd0c4bce2d8134053 DIST linux-3.11.tar.xz 75082460 SHA256 803ec8f0ad4b2ddedcb0332a590cd2b5e10dfc57c3b1c95bc9c46af81d51d7f9 SHA512 b3680d3a45a7308383cf8634a7f1908e94f6e1c6d1cb587332a9418a95fb93bd3c73ab70c6976c7330508d7c8c6b0f43c2a9a2efde5fe1f76e9bfffb1de5686c WHIRLPOOL 96c9c27ffe155fe2c1760b53d87ef981943d58ab2dcf1ed6bd2c1e762e18bceec81d85d49c523947ec6fe52e41f25c4a86310347705c8d4b80a1748cec5b90d3 DIST linux-3.4.tar.xz 66748028 SHA256 ff3dee6a855873d12487a6f4070ec2f7996d073019171361c955639664baa0c6 SHA512 1c49b336750c9c2b49d21e54126f22a800367296be0d57e6df28b1532cbeba7fc3bdf4cfe27d9810576e76c2db2e9c2493f0804451c915137cb78d7aa61f236c WHIRLPOOL a36e62fe197ba7c08d498a79034da58091a94348f69542241067c9ebef683f86371b2c0a3b3fb6c4611e2fb885d9b74eee5c1f46a493c72dfb76c5665f0b8a6a diff --git a/sys-kernel/aufs-sources/aufs-sources-3.4.67.ebuild b/sys-kernel/aufs-sources/aufs-sources-3.4.67.ebuild new file mode 100644 index 000000000000..2566dc3f47db --- /dev/null +++ b/sys-kernel/aufs-sources/aufs-sources-3.4.67.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/aufs-sources/aufs-sources-3.4.67.ebuild,v 1.1 2013/10/23 11:07:21 jlec Exp $ + +EAPI=5 + +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="48" +K_DEBLOB_AVAILABLE="1" +inherit kernel-2 eutils +detect_version +detect_arch + +AUFS_VERSION=3.4_p20131014 +AUFS_TARBALL="aufs-sources-${AUFS_VERSION}.tar.xz" +# git archive -v --remote=git://git.code.sf.net/p/aufs/aufs3-standalone aufs${AUFS_VERSION/_p*} > aufs-sources-${AUFS_VERSION}.tar +AUFS_URI="http://dev.gentoo.org/~jlec/distfiles/${AUFS_TARBALL}" + +KEYWORDS="~amd64 ~x86" +HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches http://aufs.sourceforge.net/" +IUSE="deblob module proc vanilla" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree and aufs3 support" +SRC_URI=" + ${KERNEL_URI} + ${ARCH_URI} + ${AUFS_URI} + !vanilla? ( ${GENPATCHES_URI} ) + " + +PDEPEND=">=sys-fs/aufs-util-3.2" + +src_unpack() { + if use vanilla; then + unset UNIPATCH_LIST_GENPATCHES UNIPATCH_LIST_DEFAULT + ewarn "You are using USE=vanilla" + ewarn "This will drop all support from the gentoo kernel security team" + fi + + UNIPATCH_LIST=""${WORKDIR}"/aufs3-kbuild.patch "${WORKDIR}"/aufs3-base.patch" + use module && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-standalone.patch" + use proc && UNIPATCH_LIST+=" "${WORKDIR}"/aufs3-proc_map.patch" + unpack ${AUFS_TARBALL} + kernel-2_src_unpack +} + +src_prepare() { + if ! use module; then + sed -e 's:tristate:bool:g' -i "${WORKDIR}"/fs/aufs/Kconfig || die + fi + if ! use proc; then + sed '/config AUFS_PROC_MAP/,/^$/d' -i "${WORKDIR}"/fs/aufs/Kconfig || die + fi + cp -f "${WORKDIR}"/include/linux/aufs_type.h include/linux/aufs_type.h || die + cp -f "${WORKDIR}"/include/linux/aufs_type.h include/linux/aufs_type.h || die + cp -rf "${WORKDIR}"/{Documentation,fs} . || die +} + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" + has_version sys-fs/aufs-util && \ + einfo "In order to use aufs FS you need to install sys-fs/aufs-util" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/genkernel-next/Manifest b/sys-kernel/genkernel-next/Manifest index 035c2493dcac..af62d37846db 100644 --- a/sys-kernel/genkernel-next/Manifest +++ b/sys-kernel/genkernel-next/Manifest @@ -1,2 +1,2 @@ DIST genkernel-next-35.tar.xz 2285208 SHA256 b50b164240d6428588c163e7f01c0f6090cb5c55a2a0f2e2e9c62154b254ae20 SHA512 a288c89dfb482ea90a59dd71308d22441e40360912e9cdc5e3ee16e2f7b52eaa08a5bcb542e0b95e97999fa20eda4151751b38e98131b7b52d6dad208e773495 WHIRLPOOL bf44120eacf20d322c52c191e673c1a7e0c7b73aa795a921d35bfdd187269d2e22fd385cf8acf712f109c5a701a7474a2e37f151a8508937ee4c3623d361a2f2 -DIST genkernel-next-38.tar.xz 2286380 SHA256 6207e6295ed8d18ba285b5ef8ad6cade5579787ec88436ef20b62c0fe0580116 SHA512 20df876c9d7e19eb247a944edeaf30df72e2f643cd504a0927ef5caec7606ea79c9a43c8481b0b6c7a30f2a386a50bde6102d3c01a52dc0ab69d317349c89a5c WHIRLPOOL b15266a9232235754df462cf0c49af9b3c30d1d26e1c4e6fa01aecbfec0281496b0349152b2754bde88adaaee8d2270b8224c4f4d668bd676e709d052379a6e6 +DIST genkernel-next-40.tar.xz 2286348 SHA256 9c824dd04c42a77bf73d1058855d4d22918f2ab0981be83706d0383a357414c9 SHA512 13d0720044073d8a36769f9a9623eb8ebe814841f697ac103452e4192f8638df533c82ac942932151c63b3abe15d450b4374e0167f407c8aa1b32b4b11ad0735 WHIRLPOOL 0fd1f62e0dea992e5a102cff7606747ae7ab47fce81f59a7b9eba2ea4ca434f46a15c56611ba0027197c971207561fb0659d7b619a9ed723139a99009327104d diff --git a/sys-kernel/genkernel-next/genkernel-next-38.ebuild b/sys-kernel/genkernel-next/genkernel-next-40.ebuild similarity index 96% rename from sys-kernel/genkernel-next/genkernel-next-38.ebuild rename to sys-kernel/genkernel-next/genkernel-next-40.ebuild index bd18e48ccfdc..4275bf71fb25 100644 --- a/sys-kernel/genkernel-next/genkernel-next-38.ebuild +++ b/sys-kernel/genkernel-next/genkernel-next-40.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/genkernel-next/genkernel-next-38.ebuild,v 1.1 2013/10/20 10:19:52 lxnay Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/genkernel-next/genkernel-next-40.ebuild,v 1.1 2013/10/23 05:42:27 lxnay Exp $ EAPI=5 diff --git a/sys-kernel/gentoo-sources/Manifest b/sys-kernel/gentoo-sources/Manifest index 00bb1a3b1be5..63cf189dcdb6 100644 --- a/sys-kernel/gentoo-sources/Manifest +++ b/sys-kernel/gentoo-sources/Manifest @@ -18,6 +18,8 @@ DIST genpatches-3.0-69.base.tar.xz 1027248 SHA256 a3f5be6909fba3515a71a749244f69 DIST genpatches-3.0-69.extras.tar.xz 17900 SHA256 19bbac15a1bea770a744a52c254b1b75eda55e215d6cea07d58ecf0411110145 SHA512 d65af47a827f17cd0c4622150b1be413214fab5984beae50a23995227f6744d4df9533939659cae6b8624cf1f783c215e349ade3cca94ea25197aabfc5ec40e6 WHIRLPOOL 4b90d4c63667f1887ce66517f5a5ee0289fe9a5e20e6c99fba9a1fcdf6309a2916ecda323598bfcb794e3101d34bd4108382175b678badeee96020e0e626f682 DIST genpatches-3.0-70.base.tar.xz 1036908 SHA256 dc1461c530d03c6a9253d5026b591c705cbced55cf2030a85a5efc7bd8127286 SHA512 766b291f9301dddd07764a718cb255be7025def32e9e16abfa2a6f7b68ddb365222e8a993ef2498e90c4e6a45c2ef268c41b5ad25cbb7d70acf04fda135e99a3 WHIRLPOOL 906f0e547524598be17aa486feec59a270e246f7267532acb97f04c16bdc5fe68bb64cae63ea9b52799afe4be542cc8434b4a8b7271c2e8d77518087632f6f41 DIST genpatches-3.0-70.extras.tar.xz 17900 SHA256 19bbac15a1bea770a744a52c254b1b75eda55e215d6cea07d58ecf0411110145 SHA512 d65af47a827f17cd0c4622150b1be413214fab5984beae50a23995227f6744d4df9533939659cae6b8624cf1f783c215e349ade3cca94ea25197aabfc5ec40e6 WHIRLPOOL 4b90d4c63667f1887ce66517f5a5ee0289fe9a5e20e6c99fba9a1fcdf6309a2916ecda323598bfcb794e3101d34bd4108382175b678badeee96020e0e626f682 +DIST genpatches-3.0-71.base.tar.xz 1037812 SHA256 83c99f95a2023596babe84293f880f9252f612fc2e8a0b2609de882dd1297b9b SHA512 160860d1944512eb0279237af84becda9bd0daac841fa3cb417a0472b94886d512f9fae9a939b658adc5ab96f1d2068a186ecdc8f2b2abc833baa194f60a39a9 WHIRLPOOL b3b52d092df1098dbff56b27728b3383ce300f0a78af62401c82ff44a463d49a8edc965d3ddb97a9485a32d8ffe0e47f66ddc5165025eb33102a9274eec86ab5 +DIST genpatches-3.0-71.extras.tar.xz 17908 SHA256 67850f19c3a960b2d583a3136f0e4e9abfafc8193bd14ac17088ca7c29315227 SHA512 13dde481b8e427befd547bca67a928ae4c0d99f148534d6c90a8ddb57b81e209639f4d4f6613ca05da8f741b77b73018a56c5e8b21b97bc54dc27bb57d55d9f3 WHIRLPOOL fef2e358284a99933cce14e91cb24ca6793a6c788acb59cc56414f4d36265a46744dff662093dcf456c3fc98ff93a60e653df8df11ba28d4a9a7543091262edc DIST genpatches-3.10-13.base.tar.xz 220108 SHA256 cc2c91b479e7dd78e5a793e220b4f4d067d8bb2cd89e84c35f82612eba2a62c2 SHA512 01a1b73bcf6ee1add8a307dd23e39cd0f8ef4798c6ccea42e676ac2dc8f8c2cb3e0c3802d80b5800c9c607f318aa63feaef90ae95375d29e664ce8d9c02ea671 WHIRLPOOL c938d8aa11eb2e701c6bff69301253e896c6c65f5f6c5da3cd1737e376fb2ef50aac5b80e1d0e4110298e17ab4c06db3e395e1e882b189a141412e41d83f3f01 DIST genpatches-3.10-13.extras.tar.xz 17732 SHA256 aaec50b87931d58b16a0ca1a920e59baee9256fc2465a5ee9a3b9e7dde6d1a81 SHA512 9e30d1ff47600c85d655ffb6f4caefec5140550b517b6c97a5c668e93bc8c0dbd13dc12952f64c8070d3636860bcd41b7d9b428815a5cfed37a1228c646f3785 WHIRLPOOL dd80d37ca76da035dfdc457cd40f5bfb2b8398d604bec8ed0be27619a33ef68af5a02c93d604b6c7b322aab5aec9d9b11b0b2c628c959c562220082b18c65b72 DIST genpatches-3.10-21.base.tar.xz 275904 SHA256 6944c68dda893a862f343286fdf2e455ddf8ba931503252809ec53c420e50a57 SHA512 c4636b3e5f9b686fbd60f24ca80e25ce523923d4e952057e2565ea9c1da97c6c650484450e3d39d73c22389e7777ad3c7039fae8c4258d9e03f8f0d3bd303cba WHIRLPOOL f42c1de237ea25a8d510fc5d9023eba57f5eed7d6fb6b9d51311df3418c5d21fc5431c87539c7164831f2a939430912a51363fd112135a5db217589775f79ee1 @@ -58,6 +60,8 @@ DIST genpatches-3.4-46.base.tar.xz 824908 SHA256 98f1a4de9f10cd902fd671cf4f8eaba DIST genpatches-3.4-46.extras.tar.xz 18144 SHA256 71ac6f1d18613ac09f7f953a4e261f10458556949e1929ce50a63b9c2bed465e SHA512 1ca2ca6e44343b652a4ebe5216442cf30bea96652c41c6b7277e767a4e2569ac8201a5aa32f5e2627ecf996a73009b5bdccb22fc8bede85a747490bbdc99fd5f WHIRLPOOL c7fe7288a3bc6c9a4b3603c1d7f363eef7e82b758bbcaef7fbb10f9e13ac8918959f0f99f960cc441a805bf28abe8420f273ec41166b266cc545ec3ea1ba74d3 DIST genpatches-3.4-47.base.tar.xz 836088 SHA256 060fce7f9f08b40acd793316f9f2fec810db74fafe8a710366e3bf23064c128d SHA512 29291d1dbf67d200f9cf3ca8aafbdbe6879a309135022d7c9772e3da0319c84bcc10db79c551f6ef3edbd8b6207f3b91a963cada3f1cdae390265fe617d9e475 WHIRLPOOL ee8c4284160ff4221220b3ba1053ddfc606a03e7ebeeed4dcb2b44bdb8ec6ef053c928a734cef0b920865cefef62177d1bbfa286f79fccb7cd4f4139a585e940 DIST genpatches-3.4-47.extras.tar.xz 18144 SHA256 71ac6f1d18613ac09f7f953a4e261f10458556949e1929ce50a63b9c2bed465e SHA512 1ca2ca6e44343b652a4ebe5216442cf30bea96652c41c6b7277e767a4e2569ac8201a5aa32f5e2627ecf996a73009b5bdccb22fc8bede85a747490bbdc99fd5f WHIRLPOOL c7fe7288a3bc6c9a4b3603c1d7f363eef7e82b758bbcaef7fbb10f9e13ac8918959f0f99f960cc441a805bf28abe8420f273ec41166b266cc545ec3ea1ba74d3 +DIST genpatches-3.4-48.base.tar.xz 838672 SHA256 587320d3683a896419b7cabcff56edacbcf915c0625dd2d5d1f1e08d7ee779ba SHA512 2f4b9985ede36488f86e34ade63a7301c0093404282984e4c55c2fdc480794879a5846a204e9165cd639cb7a986cbcfbc0cc957bb1fd19f2b47b5207e0f11986 WHIRLPOOL 3da0e0ef0c19f866fbcd0b39b3f17a48fb8ef6b331f1a1a9301007e27204707e24b9096ac04bc3cf679999d2d6c9c9f23a63d155dc04b059dd7a1dcb322c4ffb +DIST genpatches-3.4-48.extras.tar.xz 18152 SHA256 2078dc6cca6f9345218e76c7eeaadc505ae1f45e140e3eb1b1517be6b6c0f69d SHA512 934140d99080cb6e91d6d5d7e809e067501a94a1f3e17bac4350f5725ec2569a623765a0b96d9d98424f9f6fd7c5c000660ae0e52b919f6cb2eb28b497d70250 WHIRLPOOL daffa0528e4ff5c0874418ed228e20744e7a0a7a1485587ee2505e19a20f51c5d831896c535be015cb72fab3c09e0ebf9e10a0739667f75a220aeafbc10c89af DIST genpatches-3.9-17.base.tar.xz 290752 SHA256 66f3fc418d7faee9809d35df9e4c17da8d84286c8b48e0e5149fa626af2c7a2d SHA512 5a849ad1b2259a5ba45698942ef224231b664cff7bcc6a02b2fe94e317a961ceb1198b6a9c0550bafdc53671fd4db5d323c3f0efb24d3956e8297e32f9369d25 WHIRLPOOL 1cd46b907bc07d130199085c58b5793681577921542b099241aa937cd95dff0f18c91ea8a6eda52e3d1ae2928709678947de4d1f5266aeafe6406a785ec1d75b DIST genpatches-3.9-17.extras.tar.xz 16572 SHA256 6a93041aba5cfa6a45a348b654e129b4ba3659c87437217bbd65eb7a0a841827 SHA512 53c94f50f63d866a66869cfa0b2692c8b71ceb17a703424948d5a92c5390942667651e30fb4a662ba02147b70849cd7fb6bf71f0a4940f19ee1b392e684eb7a4 WHIRLPOOL cc2b332caffd5411c55ed9f7ddcde4c3275e6a68ec765f579e682e1e957b48a1c8601f9d607b4b4b3137af40ae0bcc091390ce733b2fdfaf95db00d77ce57370 DIST linux-3.0.tar.xz 63798008 SHA256 ef5e8c2dedb20a6eab01bb379e9982cd7d47cf95bd87c9ee3e872272e85c24b6 SHA512 d1ce2369a8f6d73043b7cd992c47953c227afa591bca31e8d5ae8a549052cc2f70c035382332335ae9cf6af2d183cc88c3a41e7f0a582c7f493b8022f82816f5 WHIRLPOOL 0ea5069df287b2d86f148b59f38193ec40d5add585213bfac3efe4aa9e250ecea96017d9c54be6004894106049eac5e8fbef1d8605fd39441795d0c88c96a1c3 diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.0.101.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.0.101.ebuild new file mode 100644 index 000000000000..0c30effc5034 --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-3.0.101.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.0.101.ebuild,v 1.1 2013/10/23 11:02:49 tomwij Exp $ + +EAPI="5" +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="71" +K_DEBLOB_AVAILABLE="1" +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" +IUSE="deblob" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.4.67.ebuild b/sys-kernel/gentoo-sources/gentoo-sources-3.4.67.ebuild new file mode 100644 index 000000000000..d43d74a6460b --- /dev/null +++ b/sys-kernel/gentoo-sources/gentoo-sources-3.4.67.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/gentoo-sources/gentoo-sources-3.4.67.ebuild,v 1.1 2013/10/23 11:02:49 tomwij Exp $ + +EAPI="5" +ETYPE="sources" +K_WANT_GENPATCHES="base extras" +K_GENPATCHES_VER="48" +K_DEBLOB_AVAILABLE="1" +inherit kernel-2 +detect_version +detect_arch + +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +HOMEPAGE="http://dev.gentoo.org/~mpagano/genpatches" +IUSE="deblob" + +DESCRIPTION="Full sources including the Gentoo patchset for the ${KV_MAJOR}.${KV_MINOR} kernel tree" +SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}" + +pkg_postinst() { + kernel-2_pkg_postinst + einfo "For more info on this patchset, and how to report problems, see:" + einfo "${HOMEPAGE}" +} + +pkg_postrm() { + kernel-2_pkg_postrm +} diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index bd88f103131c..9053fcb4b36b 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -13,8 +13,8 @@ DIST linux-3.10.tar.xz 73175088 SHA256 df27fa92d27a9c410bfe6c4a89f141638500d7ead DIST linux-3.11.tar.xz 75082460 SHA256 803ec8f0ad4b2ddedcb0332a590cd2b5e10dfc57c3b1c95bc9c46af81d51d7f9 SHA512 b3680d3a45a7308383cf8634a7f1908e94f6e1c6d1cb587332a9418a95fb93bd3c73ab70c6976c7330508d7c8c6b0f43c2a9a2efde5fe1f76e9bfffb1de5686c WHIRLPOOL 96c9c27ffe155fe2c1760b53d87ef981943d58ab2dcf1ed6bd2c1e762e18bceec81d85d49c523947ec6fe52e41f25c4a86310347705c8d4b80a1748cec5b90d3 DIST linux-3.2.tar.xz 65065516 SHA256 dd96ed02b53fb5d57762e4b1f573460909de472ca588f81ec6660e4a172e7ba7 SHA512 77e9a52d78d6c8e951df1e166023eebe5defc5ef3c45d3ac84b613137b3c2e55cee5693d828ebd06c5034bd89ea2a5f862f55824f2b7839c9ad7212c81e3ecb0 WHIRLPOOL 7cc68baac4441740e2171fbbc4195ee6c0351de099aadaee8cb3487f6d1f8b7e1d3144ee54ba38dbd24d6be431a1ea3b921ffce82ff84df21a98da7bc61c1d17 DIST linux-3.4.tar.xz 66748028 SHA256 ff3dee6a855873d12487a6f4070ec2f7996d073019171361c955639664baa0c6 SHA512 1c49b336750c9c2b49d21e54126f22a800367296be0d57e6df28b1532cbeba7fc3bdf4cfe27d9810576e76c2db2e9c2493f0804451c915137cb78d7aa61f236c WHIRLPOOL a36e62fe197ba7c08d498a79034da58091a94348f69542241067c9ebef683f86371b2c0a3b3fb6c4611e2fb885d9b74eee5c1f46a493c72dfb76c5665f0b8a6a -DIST patch-3.0.100.xz 937672 SHA256 53e26caab6382e278b47b6a526075889b921bb2791aec9b0e3143d07f6f34f42 SHA512 49fbe477cbb99d01abcbfd04e94fb86be33370dba8b3c2475c09a5e1db7289481d679849a7d36222ea05a1813c2cfa4290e5ab449cab335e91e3d630d8ac3bef WHIRLPOOL c40e460881e95ab2a9672778c40012018c11db057d5edf267ef2cb5dcc5f8dc8377ac6c7897c62d52dd4cca5e1750f6c86d8e2fec57c420f83a88f8cc8e8b42f +DIST patch-3.0.101.xz 938412 SHA256 76de0e0179f991501a77c9ea2b52857d2fb5565ec3fba9b9a7123b7b3ea17f53 SHA512 a092f5d82fedf729802332a19c6b09636f9af5b4174413d25ccc03b02c1a8cdea3e327b25c6e32c387243896cd4fa6df8b76d034a9ad0e18f06673242715e4f2 WHIRLPOOL 99f71b4323cdd2c521bdfc6156ecce9e97e51cabac9b98655e09236afcf8d865e41c9c67380cd5f1e8821449eeab9353474eae8e7e88a0b4cc20e0708d1cfd28 DIST patch-3.10.17.xz 324036 SHA256 5552fc6f24a56d13d603ddc7759114a7b52e92ad2fb84a23a1b80b37b739a33b SHA512 38f9085d67d59cb37c32db69b84714a96f327fe74b69bb4a7304861ea6e474614216067ee08093f41739ce803b83a70400c83f06c695cb1114cf41c0b2dc7aa7 WHIRLPOOL 8e0fcce60f7aa60de733d99421683599076e28959fb77afbe38ca2534d5fcc47b16a07f2e1a15fb3f9431bce1fd5957f4760e6c0610b8e78a0f0ee6d62d16218 DIST patch-3.11.6.xz 136916 SHA256 61ca45a96f9db6477eca0f2170a7c79c2e3b83893f8445249ec7a360d8be244e SHA512 547e9b7edceec2cadb792118c219a68d1d0f3a180d4c1f22dc301c780be5c2669caf3a5585085e9ec0440d5d94bbea82255624132affbbe52163dd922eb91738 WHIRLPOOL 9c6c9b67ad08e1adb1a5718bffc672b241b46b4c3c183848d3bf50bf6882af81184bfa65f49e31d00c00274b841efea6dc7acf9c00acc15277f9db3f4d88e571 DIST patch-3.2.51.xz 977392 SHA256 acc3b9a27b07ee05b592ba0de9267e766b5ac2976c711992260a3f8ecfd43db5 SHA512 5b86e4bbf0601bf9ad8edf97b68761f7333743c66345275424a5482da5bb38d3f0cc25e5169447b002ceba78f3faf0666310d20b5e12c72ebc0660d499f8f114 WHIRLPOOL 01b226c5546dd3605cd183f4f4145ef7eec8717d27cc72cfc2b6b75c622a41f858a472d839ecc4f5895c2bda2a93bccd30417f304f0dc03e28987e0a463ccd4b -DIST patch-3.4.66.xz 770440 SHA256 34750a0ecf41bdb25178577334bc8ea85ad20136442905e91f831606c886b9be SHA512 f4f490fac9d3d5e8920c4698d4929faa3888d48affce26823e1e1c04b93f3b588711802348551502c2f4dcbb7539f529416cfcabe45d97811b3ab90123d48678 WHIRLPOOL 216893388369cbf922a94e49e4ef940c7d27e1d99f4015f6e58c0513a0589d662fa48a982f71984c1f7d6e24811c7364281973b487c2b4ff0f785ff29b7abb49 +DIST patch-3.4.67.xz 772524 SHA256 3d3c9048423ed98f9ed5202542711a0616c247a43eaa65dcf48994bbbf613c66 SHA512 eeec960202e5a17eafd78fc5cb70e1d73af52cb6a3290206d92ababe492a9a2db683d3d7b9aba997890dbbda10451f00c512f48f17ee9960f956c24c03317c47 WHIRLPOOL b007774e642b323c715618b0d825c3549ee62a5a9b45d4d6f6e4e03da1c39999807f2c350e8a5bd5b75067a1bf735e7823a5d48ae29b9810077a65a04ffa9003 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.0.100.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-3.0.101.ebuild similarity index 89% rename from sys-kernel/vanilla-sources/vanilla-sources-3.0.100.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-3.0.101.ebuild index 4b936f1e45bb..a7dae936b6ae 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-3.0.100.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-3.0.101.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.0.100.ebuild,v 1.1 2013/10/13 23:20:55 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.0.101.ebuild,v 1.1 2013/10/23 06:54:53 tomwij Exp $ EAPI="5" K_NOUSENAME="yes" diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.4.66.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-3.4.67.ebuild similarity index 89% rename from sys-kernel/vanilla-sources/vanilla-sources-3.4.66.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-3.4.67.ebuild index 85e3da81ddb4..63de941771ee 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-3.4.66.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-3.4.67.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.4.66.ebuild,v 1.1 2013/10/13 23:20:55 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.4.67.ebuild,v 1.1 2013/10/23 06:54:53 tomwij Exp $ EAPI="5" K_NOUSENAME="yes" diff --git a/sys-power/apcupsd/apcupsd-3.14.10-r1.ebuild b/sys-power/apcupsd/apcupsd-3.14.10-r1.ebuild deleted file mode 100644 index 9c0fc4ebe05e..000000000000 --- a/sys-power/apcupsd/apcupsd-3.14.10-r1.ebuild +++ /dev/null @@ -1,136 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.10-r1.ebuild,v 1.3 2013/03/26 14:54:47 floppym Exp $ - -EAPI=4 - -inherit eutils linux-info flag-o-matic udev - -DESCRIPTION="APC UPS daemon with integrated tcp/ip remote shutdown" -HOMEPAGE="http://www.apcupsd.org/" -SRC_URI="mirror://sourceforge/apcupsd/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd" -IUSE="snmp +usb cgi nls gnome kernel_linux" - -DEPEND=" - cgi? ( >=media-libs/gd-1.8.4 ) - nls? ( sys-devel/gettext ) - snmp? ( net-analyzer/net-snmp ) - gnome? ( >=x11-libs/gtk+-2.4.0:2 - dev-libs/glib:2 - >=gnome-base/gconf-2.0 )" -RDEPEND="${DEPEND} - sys-apps/openrc - virtual/mailx" - -CONFIG_CHECK="~USB_HIDDEV ~HIDRAW" -ERROR_USB_HIDDEV="CONFIG_USB_HIDDEV: needed to access USB-attached UPSes" -ERROR_HIDRAW="CONFIG_HIDRAW: needed to access USB-attached UPSes" - -pkg_setup() { - if use kernel_linux && use usb && linux_config_exists; then - check_extra_config - fi -} - -src_prepare() { - epatch "${FILESDIR}/${PN}-3.14.9-aliasing.patch" -} - -src_configure() { - local myconf - use cgi && myconf="${myconf} --enable-cgi --with-cgi-bin=/usr/libexec/${PN}/cgi-bin" - if use usb; then - myconf="${myconf} --with-upstype=usb --with-upscable=usb --enable-usb --with-dev= " - else - myconf="${myconf} --with-upstype=apcsmart --with-upscable=smart --disable-usb" - fi - - # We force the DISTNAME to gentoo so it will use gentoo's layout also - # when installed on non-linux systems. - econf \ - --sbindir=/sbin \ - --sysconfdir=/etc/apcupsd \ - --with-pwrfail-dir=/etc/apcupsd \ - --with-lock-dir=/var/lock \ - --with-pid-dir=/var/run \ - --with-log-dir=/var/log \ - --with-nis-port=3551 \ - --enable-net --enable-pcnet \ - --with-distname=gentoo \ - $(use_enable snmp net-snmp) \ - $(use_enable gnome gapcmon) \ - ${myconf} \ - APCUPSD_MAIL=/bin/mail -} - -src_compile() { - # Workaround for bug #280674; upstream should really just provide - # the text files in the distribution, but I wouldn't count on them - # doing that anytime soon. - MANPAGER=$(type -p cat) \ - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "installed failed" - rm -f "${D}"/etc/init.d/halt - - insinto /etc/apcupsd - newins examples/safe.apccontrol safe.apccontrol - - dodoc ChangeLog* ReleaseNotes - doman doc/*.8 doc/*.5 - - dohtml -r doc/manual/* - - rm "${D}"/etc/init.d/apcupsd - newinitd "${FILESDIR}/${PN}.init.3" "${PN}" - newinitd "${FILESDIR}/${PN}.powerfail.init" "${PN}".powerfail - - # remove hal settings, we don't really want to have it around still. - rm -r "${D}"/usr/share/hal - - # replace it with our udev rules if we're in Linux - if use kernel_linux; then - udev_newrules "${FILESDIR}"/apcupsd-udev.rules 60-${PN}.rules - fi - - # Without this it'll crash at startup. When merging in ROOT= this - # won't be created by default, so we want to make sure we got it! - keepdir /var/lock - fowners root:uucp /var/lock - fperms 0775 /var/lock -} - -pkg_postinst() { - if use cgi; then - elog "The cgi-bin directory for ${PN} is /usr/libexec/${PN}/cgi-bin." - elog "Set up your ScriptAlias or symbolic links accordingly." - fi - - elog "" - elog "Since version 3.14.0 you can use multiple apcupsd instances to" - elog "control more than one UPS in a single box." - elog "To do this, create a link between /etc/init.d/apcupsd to a new" - elog "/etc/init.d/apcupsd.something, and it will then load the" - elog "configuration file at /etc/apcupsd/something.conf." - elog "" - - elog 'If you want apcupsd to power off your UPS when it' - elog 'shuts down your system in a power failure, you must' - elog 'add apcupsd.powerfail to your shutdown runlevel:' - elog '' - elog ' \e[01m rc-update add apcupsd.powerfail shutdown \e[0m' - elog '' - - if use kernel_linux; then - elog "Starting from version 3.14.9-r1, ${PN} installs udev rules" - elog "for persistent device naming. If you have multiple UPS" - elog "connected to the machine, you can point them to the devices" - elog "in /dev/apcups/by-id directory." - fi -} diff --git a/sys-power/apcupsd/apcupsd-3.14.10-r2.ebuild b/sys-power/apcupsd/apcupsd-3.14.10-r2.ebuild deleted file mode 100644 index 3bf8bea57144..000000000000 --- a/sys-power/apcupsd/apcupsd-3.14.10-r2.ebuild +++ /dev/null @@ -1,138 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.10-r2.ebuild,v 1.1 2013/08/31 12:46:20 pacho Exp $ - -EAPI=4 - -inherit eutils linux-info flag-o-matic systemd udev - -DESCRIPTION="APC UPS daemon with integrated tcp/ip remote shutdown" -HOMEPAGE="http://www.apcupsd.org/" -SRC_URI="mirror://sourceforge/apcupsd/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd" -IUSE="snmp +usb cgi nls gnome kernel_linux" - -DEPEND=" - cgi? ( >=media-libs/gd-1.8.4 ) - nls? ( sys-devel/gettext ) - snmp? ( net-analyzer/net-snmp ) - gnome? ( >=x11-libs/gtk+-2.4.0:2 - dev-libs/glib:2 - >=gnome-base/gconf-2.0 )" -RDEPEND="${DEPEND} - sys-apps/openrc - virtual/mailx" - -CONFIG_CHECK="~USB_HIDDEV ~HIDRAW" -ERROR_USB_HIDDEV="CONFIG_USB_HIDDEV: needed to access USB-attached UPSes" -ERROR_HIDRAW="CONFIG_HIDRAW: needed to access USB-attached UPSes" - -pkg_setup() { - if use kernel_linux && use usb && linux_config_exists; then - check_extra_config - fi -} - -src_prepare() { - epatch "${FILESDIR}/${PN}-3.14.9-aliasing.patch" -} - -src_configure() { - local myconf - use cgi && myconf="${myconf} --enable-cgi --with-cgi-bin=/usr/libexec/${PN}/cgi-bin" - if use usb; then - myconf="${myconf} --with-upstype=usb --with-upscable=usb --enable-usb --with-dev= " - else - myconf="${myconf} --with-upstype=apcsmart --with-upscable=smart --disable-usb" - fi - - # We force the DISTNAME to gentoo so it will use gentoo's layout also - # when installed on non-linux systems. - econf \ - --sbindir=/sbin \ - --sysconfdir=/etc/apcupsd \ - --with-pwrfail-dir=/etc/apcupsd \ - --with-lock-dir=/var/lock \ - --with-pid-dir=/var/run \ - --with-log-dir=/var/log \ - --with-nis-port=3551 \ - --enable-net --enable-pcnet \ - --with-distname=gentoo \ - $(use_enable snmp net-snmp) \ - $(use_enable gnome gapcmon) \ - ${myconf} \ - APCUPSD_MAIL=/bin/mail -} - -src_compile() { - # Workaround for bug #280674; upstream should really just provide - # the text files in the distribution, but I wouldn't count on them - # doing that anytime soon. - MANPAGER=$(type -p cat) \ - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "installed failed" - rm -f "${D}"/etc/init.d/halt - - insinto /etc/apcupsd - newins examples/safe.apccontrol safe.apccontrol - - dodoc ChangeLog* ReleaseNotes - doman doc/*.8 doc/*.5 - - dohtml -r doc/manual/* - - rm "${D}"/etc/init.d/apcupsd - newinitd "${FILESDIR}/${PN}.init.3" "${PN}" - newinitd "${FILESDIR}/${PN}.powerfail.init" "${PN}".powerfail - systemd_dounit "${FILESDIR}"/${PN}.service - systemd_dotmpfilesd "${FILESDIR}"/${PN}-tmpfiles.conf - - # remove hal settings, we don't really want to have it around still. - rm -r "${D}"/usr/share/hal - - # replace it with our udev rules if we're in Linux - if use kernel_linux; then - udev_newrules "${FILESDIR}"/apcupsd-udev.rules 60-${PN}.rules - fi - - # Without this it'll crash at startup. When merging in ROOT= this - # won't be created by default, so we want to make sure we got it! - keepdir /var/lock - fowners root:uucp /var/lock - fperms 0775 /var/lock -} - -pkg_postinst() { - if use cgi; then - elog "The cgi-bin directory for ${PN} is /usr/libexec/${PN}/cgi-bin." - elog "Set up your ScriptAlias or symbolic links accordingly." - fi - - elog "" - elog "Since version 3.14.0 you can use multiple apcupsd instances to" - elog "control more than one UPS in a single box with openRC." - elog "To do this, create a link between /etc/init.d/apcupsd to a new" - elog "/etc/init.d/apcupsd.something, and it will then load the" - elog "configuration file at /etc/apcupsd/something.conf." - elog "" - - elog 'If you want apcupsd to power off your UPS when it' - elog 'shuts down your system in a power failure, you must' - elog 'add apcupsd.powerfail to your shutdown runlevel:' - elog '' - elog ' \e[01m rc-update add apcupsd.powerfail shutdown \e[0m' - elog '' - - if use kernel_linux; then - elog "Starting from version 3.14.9-r1, ${PN} installs udev rules" - elog "for persistent device naming. If you have multiple UPS" - elog "connected to the machine, you can point them to the devices" - elog "in /dev/apcups/by-id directory." - fi -} diff --git a/sys-power/apcupsd/apcupsd-3.14.10-r4.ebuild b/sys-power/apcupsd/apcupsd-3.14.10-r4.ebuild deleted file mode 100644 index e7b6c9512560..000000000000 --- a/sys-power/apcupsd/apcupsd-3.14.10-r4.ebuild +++ /dev/null @@ -1,140 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.10-r4.ebuild,v 1.2 2013/10/21 21:12:15 floppym Exp $ - -EAPI=4 - -inherit eutils linux-info flag-o-matic systemd udev - -DESCRIPTION="APC UPS daemon with integrated tcp/ip remote shutdown" -HOMEPAGE="http://www.apcupsd.org/" -SRC_URI="mirror://sourceforge/apcupsd/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="snmp +usb cgi nls gnome kernel_linux systemd" - -DEPEND=" - || ( >=sys-apps/util-linux-2.23[tty-helpers(-)] - <=sys-apps/sysvinit-2.88-r4 - ) - cgi? ( >=media-libs/gd-1.8.4 ) - nls? ( sys-devel/gettext ) - snmp? ( net-analyzer/net-snmp ) - gnome? ( >=x11-libs/gtk+-2.4.0:2 - dev-libs/glib:2 - >=gnome-base/gconf-2.0 )" -RDEPEND="${DEPEND} - sys-apps/openrc - virtual/mailx" - -CONFIG_CHECK="~USB_HIDDEV ~HIDRAW" -ERROR_USB_HIDDEV="CONFIG_USB_HIDDEV: needed to access USB-attached UPSes" -ERROR_HIDRAW="CONFIG_HIDRAW: needed to access USB-attached UPSes" - -pkg_setup() { - if use kernel_linux && use usb && linux_config_exists; then - check_extra_config - fi -} - -src_prepare() { - epatch "${FILESDIR}/${PN}-3.14.9-aliasing.patch" -} - -src_configure() { - local myconf - use cgi && myconf="${myconf} --enable-cgi --with-cgi-bin=/usr/libexec/${PN}/cgi-bin" - if use usb; then - myconf="${myconf} --with-upstype=usb --with-upscable=usb --enable-usb --with-dev= " - else - myconf="${myconf} --with-upstype=apcsmart --with-upscable=smart --disable-usb" - fi - - # We force the DISTNAME to gentoo so it will use gentoo's layout also - # when installed on non-linux systems. - econf \ - --sbindir=/sbin \ - --sysconfdir=/etc/apcupsd \ - --with-pwrfail-dir=/etc/apcupsd \ - --with-lock-dir=/var/run/apcupsd \ - --with-pid-dir=/var/run/apcupsd \ - --with-log-dir=/var/log \ - --with-nis-port=3551 \ - --enable-net --enable-pcnet \ - --with-distname=gentoo \ - $(use_enable snmp net-snmp) \ - $(use_enable gnome gapcmon) \ - ${myconf} \ - APCUPSD_MAIL=/bin/mail -} - -src_compile() { - # Workaround for bug #280674; upstream should really just provide - # the text files in the distribution, but I wouldn't count on them - # doing that anytime soon. - MANPAGER=$(type -p cat) \ - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "installed failed" - rm -f "${D}"/etc/init.d/halt - - insinto /etc/apcupsd - newins examples/safe.apccontrol safe.apccontrol - doins "${FILESDIR}"/apcupsd.conf - - dodoc ChangeLog* ReleaseNotes - doman doc/*.8 doc/*.5 - - dohtml -r doc/manual/* - - rm "${D}"/etc/init.d/apcupsd - newinitd "${FILESDIR}/${PN}.init.4" "${PN}" - newinitd "${FILESDIR}/${PN}.powerfail.init" "${PN}".powerfail - - if use systemd; then - systemd_dounit "${FILESDIR}"/${PN}.service - systemd_dotmpfilesd "${FILESDIR}"/${PN}-tmpfiles.conf - fi - - # remove hal settings, we don't really want to have it around still. - rm -r "${D}"/usr/share/hal - - # replace it with our udev rules if we're in Linux - if use kernel_linux; then - udev_newrules "${FILESDIR}"/apcupsd-udev.rules 60-${PN}.rules - fi - -} - -pkg_postinst() { - if use cgi; then - elog "The cgi-bin directory for ${PN} is /usr/libexec/${PN}/cgi-bin." - elog "Set up your ScriptAlias or symbolic links accordingly." - fi - - elog "" - elog "Since version 3.14.0 you can use multiple apcupsd instances to" - elog "control more than one UPS in a single box with openRC." - elog "To do this, create a link between /etc/init.d/apcupsd to a new" - elog "/etc/init.d/apcupsd.something, and it will then load the" - elog "configuration file at /etc/apcupsd/something.conf." - elog "" - - elog 'If you want apcupsd to power off your UPS when it' - elog 'shuts down your system in a power failure, you must' - elog 'add apcupsd.powerfail to your shutdown runlevel:' - elog '' - elog ' \e[01m rc-update add apcupsd.powerfail shutdown \e[0m' - elog '' - - if use kernel_linux; then - elog "Starting from version 3.14.9-r1, ${PN} installs udev rules" - elog "for persistent device naming. If you have multiple UPS" - elog "connected to the machine, you can point them to the devices" - elog "in /dev/apcups/by-id directory." - fi -} diff --git a/sys-power/apcupsd/apcupsd-3.14.10-r5.ebuild b/sys-power/apcupsd/apcupsd-3.14.10-r5.ebuild index de81cb59e94f..f67054afa68b 100644 --- a/sys-power/apcupsd/apcupsd-3.14.10-r5.ebuild +++ b/sys-power/apcupsd/apcupsd-3.14.10-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.10-r5.ebuild,v 1.1 2013/10/21 22:01:49 mattm Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/apcupsd/apcupsd-3.14.10-r5.ebuild,v 1.2 2013/10/22 20:24:22 mattm Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/apcupsd/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="" +KEYWORDS="~amd64 ~x86 ~ppc ~x86-fbsd" IUSE="snmp +usb cgi nls gnome kernel_linux systemd" DEPEND=" diff --git a/sys-process/parallel/Manifest b/sys-process/parallel/Manifest index 5b9e3a0953ec..3c1d03413b9c 100644 --- a/sys-process/parallel/Manifest +++ b/sys-process/parallel/Manifest @@ -5,3 +5,4 @@ DIST parallel-20130622.tar.bz2 243064 SHA256 e815e7dbffd4d91e298b3b6d0bba12a5159 DIST parallel-20130722.tar.bz2 245705 SHA256 68185dfe3e94656c680c713f495840edf00bac0e8233e9fe1161f2ae3f99f66b SHA512 24e8cffda93de007fe7bdc9a8ac32f66d5836f4be620ba670659f251968f21bece074d298e465b1bb5b9ee85ced22ccbfc43b42add7a4a7a74ec6708a4ba0b6f WHIRLPOOL 8436a6327fdf3dbb0410aa87e126ff6a82fcf280fb5492308df4d3badb4a815949bc3c6d896e44ca546caee830d4cb2e16e662a2783e4f91ee26a99270f332a9 DIST parallel-20130822.tar.bz2 270689 SHA256 b857c744479fe19137bdbd240dd6205882b31be924c9ce0a0f4566e67e8d25d9 SHA512 a9a625d3118de03fd67926e12fc0c510925267de2eb32c45348a9633f77ca7936cff9ee9be63949b59dbddbbb4ff0aebc66c520bcee5929e1ddd9637e1780ceb WHIRLPOOL f0ef22cc51f8d03badc9b409a673a2fccfc4f65d847b8b3cca15582482244fe3d09312632cee3e3ebdbf5ab95cc208fdc84e18d8b6475a755d3da6b92f57fe97 DIST parallel-20130922.tar.bz2 769344 SHA256 e8fa0e4dd06781aa90f4567493ae61233b8db6a1b35257f8d229f9efd737b909 SHA512 265488415177c6941db5c4b188bb695bacfba34e1efb47be850d6f62b4c3de71987e070f7cc7a0ca5f751a9ab4a1b9ce181ad9164a9ee52aae38b44b88484459 WHIRLPOOL 6846c832046531c9a57921e1946933f0a831f421299f818fe2b3fecfd545f461fb652d19a3534ac60a0091d5c7ce9872db26f4def71272b64e90ea7028753eb7 +DIST parallel-20131022.tar.bz2 772831 SHA256 93280c7a03c18b07685157af36f2dfc82bbc59828acbdfe86ed27171a442b6f9 SHA512 b16818d174c3305177c78acfd94ccd009047cc1ca06fd5b7a0305df1ee9865ad32cfb14fb37d86226895e32dadf6d1b135907335b3951690584132c6ebabf5ac WHIRLPOOL 7d2a2448f99102c0aa1497ecfe4b9dfe849b552d6097dfe6dd7f3ca8533cfb6b4e29613d53b7644e676ac3c7ed91ebf36ab508b4fad3c96b50fc1258c17c6d43 diff --git a/sys-process/parallel/parallel-20131022.ebuild b/sys-process/parallel/parallel-20131022.ebuild new file mode 100644 index 000000000000..4df3ba105a4f --- /dev/null +++ b/sys-process/parallel/parallel-20131022.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/parallel/parallel-20131022.ebuild,v 1.1 2013/10/23 03:55:15 radhermit Exp $ + +EAPI=5 + +DESCRIPTION="A shell tool for executing jobs in parallel locally or on remote machines" +HOMEPAGE="http://www.gnu.org/software/parallel/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND="dev-lang/perl + dev-perl/Devel-Size + virtual/perl-Data-Dumper + virtual/perl-File-Temp + virtual/perl-IO" +# moreutils for `parallel` and grass for 'sql.1' manpage +DEPEND="${RDEPEND} + !=dev-ruby/daemon_controller-1.1.0 + >=dev-ruby/rack-1.0.0" + +CDEPEND=">=dev-libs/libev-4.11 net-misc/curl[ssl]" + +RDEPEND="${RDEPEND} ${CDEPEND}" +DEPEND="${DEPEND} ${CDEPEND}" + +APACHE2_MOD_CONF="30_mod_${PN}-4.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}-${PV}-gentoo.patch + + # Change these with sed instead of a patch so that we can easily use + # the toolchain-funcs methods. + sed -i -e "s/gcc/$(tc-getCC)/" \ + -e "s/g++/$(tc-getCXX)/" \ + -e 's/PlatformInfo.debugging_cflags//' build/basics.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:" \ + lib/phusion_passenger.rb || die + sed -i -e "s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" ext/common/ResourceLocator.h || die + + # Don't install a tool that won't work in our setup. + sed -i -e '/passenger-install-apache2-module/d' lib/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. + rm -rf ext/libev || die "Unable to remove vendored libev." + + # Avoid building documentation to avoid a dependency on mizuho. + #sed -i -e 's/, :doc//' build/packaging.rb || die + touch doc/*.html || die + + # Use the correct arch-specific lib directory + sed -i -e 's:/usr/lib/:/usr/'$(get_libdir)'/:' build/packaging.rb || die +} + +all_ruby_compile() { + V=1 EXTRA_LDFLAGS="${LDFLAGS}" \ + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + USE_VENDORED_LIBEV="no" LIBEV_LIBS="-lev" \ + 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}" \ + USE_VENDORED_LIBEV="no" LIBEV_LIBS="-lev" \ + ${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 +} + +each_ruby_install() { + DISTDIR="${D}" \ + APXS2="${APXS}" \ + HTTPD="${APACHE_BIN}" \ + USE_VENDORED_LIBEV="no" LIBEV_LIBS="-lev" \ + ${RUBY} -S rake fakeroot || die "rake failed" +} + +pkg_postint() { + einfo "The apache module is compiled for the currently eselected ruby." + einfo" If you eselect another ruby you must recompile passenger as well." +} diff --git a/www-apps/bugzilla/Manifest b/www-apps/bugzilla/Manifest index ce961d82bef6..d18e4fac0679 100644 --- a/www-apps/bugzilla/Manifest +++ b/www-apps/bugzilla/Manifest @@ -1,4 +1,3 @@ -DIST bugzilla-3.6.13.tar.gz 2509771 SHA256 b8432180e0c8caa8993130db069b30e338f245e46d8829a2c1cee19667820f08 SHA512 7c352f602d6015c211cad5abc4f47016524c1229db0bbea7bc5ee15fab9706aaef3404f49828b49b6df122cfb9c6c3ad37e400b5ec9a2869ac235515c42b980c WHIRLPOOL 4966720503006395391be2b2bcd2c45978ee7786ca889bca073b8e66a2e6f92e009497901db4cd2ebf49ebe3eb68fb871370d95486503c7e073e5c537446b29c DIST bugzilla-4.0.11.tar.gz 2785420 SHA256 d2e454a5a705f3728a6645c27793f7c8d3058dda675704eac4a9a856f16b0c0f SHA512 664de2bc8ab43dddc570891659b0c791462852c5c1974250201b6e71c80618d17aff7a5fd4766d85efb8e8747aa89229e690230c6960219a95cda9a3ebcac68b WHIRLPOOL 2a71250e432b8d95440941a6482b05a678d2758b0cfd110a70c2dd8274dc2ab526c9d4d159a109f0abbd033caf537d5b43e3f8fbc70a0c98b08013466a4ea41f DIST bugzilla-4.2.7.tar.gz 2964784 SHA256 c2350e02e287f10dc21d7a1813d5311d84804fb1f3418d4ef5c7e335458fc189 SHA512 a0e1b5a11580d90d7e67b2b39425093f59198d88f54f3343d5c5908b76a7dbbcd6f32b21e07dc7aae12a2d881a60e9d1d68950789f8d547a4ea2b39e6e450948 WHIRLPOOL ddff698c124b2ee91a550a7c24926b1f299964022a1f85859401220baf676083c4dbd65fb91b9b88adfb3bd71b09b23f81befb79f29279ad4c57bd2621853aae DIST bugzilla-4.4.1.tar.gz 2966058 SHA256 cc63513b98f7f0a523c58c642554ec72ee1e941f7d13c306e2e8c7e4cceeb428 SHA512 9df6f497f50254a6ecbb19e450b1dbe6aa9c4213a490261545f71e381d8c85998546fcbf4e31382af2dd8650ebd20fd8dbd56a188806fbd61779f41f54dadc1d WHIRLPOOL 29c33243b4b601ec4d4a90a2a69e65dcd8e95636d5c42a05ec33e74032b994f5d6d77336963f618f3ef1c2d133cc18d70ae683d78cc67f686f6041694b7336c8 diff --git a/www-apps/bugzilla/bugzilla-3.6.13.ebuild b/www-apps/bugzilla/bugzilla-3.6.13.ebuild deleted file mode 100644 index bc0851804530..000000000000 --- a/www-apps/bugzilla/bugzilla-3.6.13.ebuild +++ /dev/null @@ -1,106 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/bugzilla/bugzilla-3.6.13.ebuild,v 1.3 2013/09/21 10:55:52 ago Exp $ - -EAPI="3" - -inherit webapp depend.apache versionator eutils - -MY_PB=$(get_version_component_range 1-2) - -DESCRIPTION="Bugzilla is the Bug-Tracking System from the Mozilla project" -SRC_URI="http://ftp.mozilla.org/pub/mozilla.org/webtools/archived/${P}.tar.gz" -HOMEPAGE="http://www.bugzilla.org" - -LICENSE="MPL-1.1" -KEYWORDS="amd64 x86" - -IUSE="modperl extras graphviz mysql postgres" - -RDEPEND=" - virtual/httpd-cgi - >=dev-lang/perl-5.8.8 - - >=dev-perl/DBI-1.601 - >=dev-perl/DateTime-0.50 - >=dev-perl/DateTime-Locale-0.43 - >=dev-perl/DateTime-TimeZone-0.71 - >=dev-perl/URI-1.38 - >=dev-perl/Email-MIME-1.900 - >=dev-perl/Email-MIME-Encodings-1.313 - >=dev-perl/Email-Send-2.190 - >=dev-perl/MIME-tools-5.427 - >=dev-perl/Template-Toolkit-2.22 - >=dev-perl/TimeDate-1.16 - >=virtual/perl-CGI-3.510 - >=virtual/perl-Digest-SHA-5.46 - >=virtual/perl-File-Spec-3.27.01 - >=virtual/perl-MIME-Base64-3.07 - - mysql? ( >=dev-perl/DBD-mysql-4.00.5 ) - postgres? ( >=dev-perl/DBD-Pg-1.49 ) - graphviz? ( media-gfx/graphviz ) - - modperl? ( - >=dev-perl/Apache-DBI-1.06 - www-apache/mod_perl:1 - ) - - extras? ( - dev-perl/Authen-SASL - >=dev-perl/Chart-2.4.1 - dev-perl/Email-MIME-Attachment-Stripper - dev-perl/Email-Reply - >=dev-perl/GD-2.35 - dev-perl/GDGraph - dev-perl/GDTextUtil - >=dev-perl/HTML-Parser-3.60 - dev-perl/HTML-Scrubber - dev-perl/JSON-RPC - dev-perl/libwww-perl - >=dev-perl/PatchReader-0.9.5 - dev-perl/perl-ldap - dev-perl/SOAP-Lite - dev-perl/Template-GD - dev-perl/Test-Taint - dev-perl/XML-Twig - || ( media-gfx/imagemagick[perl] media-gfx/graphicsmagick[imagemagick,perl] ) - dev-perl/TheSchwartz - dev-perl/Daemon-Generic - dev-perl/Math-Random-Secure - ) -" -# from extras we miss: -# (nothing) - -want_apache modperl - -pkg_setup() { - depend.apache_pkg_setup modperl - webapp_pkg_setup -} - -src_prepare() { - ecvs_clean - # Remove bundled perl modules - rm -rf "${S}"/lib || die -} - -src_install () { - webapp_src_preinst - - insinto "${MY_HTDOCSDIR}" - doins -r . || die - for f in bugzilla.cron.daily bugzilla.cron.tab; do - doins "${FILESDIR}"/${MY_PB}/${f} || die - done - - webapp_hook_script "${FILESDIR}"/${MY_PB}/reconfig - webapp_postinst_txt en "${FILESDIR}"/${MY_PB}/postinstall-en.txt - webapp_src_install - - # bug #124282 - chmod +x "${D}${MY_HTDOCSDIR}"/*.cgi - # configuration must be executable - chmod u+x "${D}${MY_HTDOCSDIR}"/checksetup.pl -} diff --git a/www-apps/gallery/gallery-3.0.9.ebuild b/www-apps/gallery/gallery-3.0.9.ebuild index 0bdfaee5285d..7c0ac861c8fa 100644 --- a/www-apps/gallery/gallery-3.0.9.ebuild +++ b/www-apps/gallery/gallery-3.0.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-3.0.9.ebuild,v 1.5 2013/10/22 08:57:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/gallery/gallery-3.0.9.ebuild,v 1.6 2013/10/23 17:40:55 ago Exp $ EAPI="5" @@ -11,7 +11,7 @@ HOMEPAGE="http://gallery.menalto.com/" SRC_URI="mirror://sourceforge/gallery/${PN}/${P}.zip" LICENSE="GPL-2" -KEYWORDS="amd64 hppa ppc ~ppc64 x86" +KEYWORDS="amd64 hppa ppc ppc64 x86" IUSE="ffmpeg +gd imagemagick mysql mysqli" # Build depend is on unzip diff --git a/www-apps/horizon/horizon-2013.2.9999.ebuild b/www-apps/horizon/horizon-2013.2.9999.ebuild new file mode 100644 index 000000000000..6e63b31ba6d1 --- /dev/null +++ b/www-apps/horizon/horizon-2013.2.9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/horizon/horizon-2013.2.9999.ebuild,v 1.1 2013/10/23 06:19:19 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 git-2 + +DESCRIPTION="Horizon is a Django-based project aimed at providing a complete +OpenStack Dashboard." +HOMEPAGE="https://launchpad.net/horizon" +EGIT_REPO_URI="https://github.com/openstack/horizon.git" +EGIT_BRANCH="stable/havana" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/pbr-0.5.21[${PYTHON_USEDEP}] + =dev-python/jinja-2.7 dev-python/ply dev-python/simplejson >=dev-util/gperf-3.0.3 @@ -97,6 +97,30 @@ if ! has chromium_pkg_die ${EBUILD_DEATH_HOOKS}; then EBUILD_DEATH_HOOKS+=" chromium_pkg_die"; fi +DISABLE_AUTOFORMATTING="yes" +DOC_CONTENTS=" +Some web pages may require additional fonts to display properly. +Try installing some of the following packages if some characters +are not displayed properly: +- media-fonts/arphicfonts +- media-fonts/bitstream-cyberbit +- media-fonts/droid +- media-fonts/ipamonafont +- media-fonts/ja-ipafonts +- media-fonts/takao-fonts +- media-fonts/wqy-microhei +- media-fonts/wqy-zenhei + +Depending on your desktop environment, you may need +to install additional packages to get icons on the Downloads page. + +For KDE, the required package is kde-base/oxygen-icons. + +For other desktop environments, try one of the following: +- x11-themes/gnome-icon-theme +- x11-themes/tango-icon-theme +" + pkg_setup() { if [[ "${SLOT}" == "0" ]]; then CHROMIUM_SUFFIX="" @@ -126,9 +150,7 @@ src_prepare() { # touch out/Release/gen/sdk/toolchain/linux_x86_newlib/stamp.untar || die # fi - epatch "${FILESDIR}/${PN}-chromedriver-r0.patch" - epatch "${FILESDIR}/${PN}-system-icu-r0.patch" - epatch "${FILESDIR}/${PN}-system-jinja-r0.patch" + epatch "${FILESDIR}/${PN}-system-jinja-r1.patch" epatch_user @@ -318,10 +340,11 @@ src_configure() { local myarch="$(tc-arch)" if [[ $myarch = amd64 ]] ; then - myconf+=" -Dtarget_arch=x64" + target_arch=x64 elif [[ $myarch = x86 ]] ; then - myconf+=" -Dtarget_arch=ia32" + target_arch=ia32 elif [[ $myarch = arm ]] ; then + target_arch=arm # TODO: re-enable NaCl (NativeClient). local CTARGET=${CTARGET:-${CHOST}} if [[ $(tc-is-softfloat) == "no" ]]; then @@ -336,19 +359,14 @@ src_configure() { else myconf+=" -Darmv7=0" fi - myconf+=" -Dtarget_arch=arm - -Dsysroot= + myconf+=" -Dsysroot= $(gyp_use neon arm_neon) -Ddisable_nacl=1" else die "Failed to determine target arch, got '$myarch'." fi - if host-is-pax; then - # Prevent the build from failing (bug #301880, bug #487144). The performance - # difference is very small. - myconf+=" -Dv8_use_snapshot=0" - fi + myconf+=" -Dtarget_arch=${target_arch}" # Make sure that -Werror doesn't get added to CFLAGS by the build system. # Depending on GCC version the warnings are different and we don't want @@ -392,6 +410,10 @@ src_compile() { ninja_targets+=" $test_targets" fi + # Build mksnapshot and pax-mark it. + ninja -C out/Release -v -j $(makeopts_jobs) mksnapshot.${target_arch} || die + pax-mark m out/Release/mksnapshot.${target_arch} + # Even though ninja autodetects number of CPUs, we respect # user's options, for debugging with -j 1 or any other reason. ninja -C out/Release -v -j $(makeopts_jobs) ${ninja_targets} || die @@ -563,4 +585,12 @@ src_install() { "${ED}"/usr/share/gnome-control-center/default-apps/chromium-browser${CHROMIUM_SUFFIX}.xml fi fi + + readme.gentoo_create_doc +} + +pkg_postinst() { + fdo-mime_desktop_database_update + gnome2_icon_cache_update + readme.gentoo_print_elog } diff --git a/www-client/google-chrome/Manifest b/www-client/google-chrome/Manifest index 928f28b1b8db..0c5a344983a6 100644 --- a/www-client/google-chrome/Manifest +++ b/www-client/google-chrome/Manifest @@ -1,6 +1,6 @@ DIST google-chrome-beta_31.0.1650.26-1_amd64.deb 49528196 SHA256 74348ad15dfaade6e879ca7c1f7b69107f6e5d9d6aa42eed805edad9ecef10a0 SHA512 add463fa2e67181c744b1de4833fdccdb8e91841b8bd6d7d39666ffe4606cf88dbc92d028e7ffe9c0cd3426058e6681e86a9682a1958dba8063f9bc4fdeea48e WHIRLPOOL 9c06c3f420debc18c1e57a283773e46c08d636cd23c733edc208c273c22d477b722df02b9fe2a076dda3764cb9c29a59a251a00cff4f0fb6c9ffffabf70f1650 DIST google-chrome-beta_31.0.1650.26-1_i386.deb 47150108 SHA256 b71bc45ee025b9b918f73ed5ebefed342726d516be09ee811f537c6665a4491b SHA512 df350131e1db9557bc0bbfe86131062ff3aef331473eb058280c551eeb88c00ed967435226ed7af1675ccfc04a49d8efee99fa702310d8f267fe82af5da4facd WHIRLPOOL f50c3ec20fd9f52362913566727c6cef2cbe816ff854c669d6d577d673dc186da159e5390d49d7548bc34ba51452d7e141243754df052193f8bb134efdb94177 -DIST google-chrome-stable_30.0.1599.101-1_amd64.deb 44497784 SHA256 3e1ba5d372d114a278e27d21f14c7377102b56c258505c9c3dfbd69138904d0a SHA512 24d27822ff7d84aba8319a40a1587fa7f481e98c1075373564484f338b269ebaca87a9575c114c00689a7abc7ff75c3507acc7eb054fcebb3bd14fcd12fc72fb WHIRLPOOL 3dd09757dd739792cef76fc3d4f56f5621668d300ae2b20a13816e1d64327ebc5db3ba203790d0005643325d130dd04658e24a980d0cf11ed3ce2073180afbf3 -DIST google-chrome-stable_30.0.1599.101-1_i386.deb 42314102 SHA256 79950010dd2bc1afdc33fbec6b6746b3e23f29bfdea6797d62b18499c3c41c5c SHA512 4d30637dd719c6bd3016bc17fc2a78a7deae516672ec3beb3989da2f7ee4f4f06e8b7df0a5b7f70f7c3027fdd826e28420b5428e2679555f4de8eb77bf4159c5 WHIRLPOOL ee47bcd49272537646737a3a1b33bb2d1a5742f1c9bf9c907d9ddcc452354067006f2ec1d6ff907d4deed66029eabc8c212aad86261d214f7c30f96f16563ffb -DIST google-chrome-unstable_32.0.1671.3-1_amd64.deb 49680124 SHA256 9c8cd27d72a2710d4c58ae06089ede3f715a615e72bb9307a5b5531e53e8e919 SHA512 e09ef15362655df2057d3294be9b3659dd2b00f474422f4781c5bb79a7a253ae8bcc7f1cecfbf354f7cc55738bb9486f57b0a9747b7ac6c762cddcdc230f54e0 WHIRLPOOL 74d573aa49021cec3a000d654ca1044e384074113fcb8623f290c975ee3f7b4bf7ef1a8e9051b840bd4b8501056c6a9d9a962339e2f0756f1f7731d21a242da1 -DIST google-chrome-unstable_32.0.1671.3-1_i386.deb 47258718 SHA256 a34ddcd9980bd1e9ead1a59471c7ec24cedab5ac1f17507fc22edfc8fa1bbb64 SHA512 181d8f7584fe2e5322981ca9e651824f8515ca6ad8b01d51cc01103e0d0ecb3c6cf408d8b4a6a283b8f8dba7209874585c8e717fecca00b0a688325960481696 WHIRLPOOL 47b441a64f8716620211fb47e18957f077cb5350bb417db38d19b9a03ab208d9298a9a94229e674dd703aa88d737ac6ea4bebc371c78a3d41e5eef366606598e +DIST google-chrome-stable_30.0.1599.114-1_amd64.deb 44536710 SHA256 b8270e57f9d60782e0ae41ff74f70a92acb3ec8fcee093e88a4f8a031f08545b SHA512 c22d3fa6db5f2464e8f2902d4e8099726f18c0b0fcded2217b543979c6ae3a3a61260e2f34911c458dae720d82b16fe5772ed2a5d10bfe9c8db203fed9f9c51f WHIRLPOOL f4a57fcaacb7ea98e3a3f73bdee0afd8883c691972e509106bfd8b3b00f8bb567c71703b01f2a528efbd47721f01098a68c10dcac8aca9a33adcf980aee5b424 +DIST google-chrome-stable_30.0.1599.114-1_i386.deb 42193880 SHA256 3a5dfb7f1e698e5280b63fec3ecb5e301c10f2fdce3a0cf6c31aa64d5f1fb6c5 SHA512 8bbc623eb4562d2eae7297b61ae20adf5751da3a10e202a68b11ec943883591593fa19eb54b4a8406c0ea6cd7496b09a9c2a37751f875f17ad86c051f050c6e2 WHIRLPOOL 305ba352cba8e3b6bcba8b8af2ec7c81052c9bdc2ad99b1a26399f2dd6a034594e19666823afd6d685e0b5135ce5fef380fb2891bfeed63716e6c3a9e7218a68 +DIST google-chrome-unstable_32.0.1678.0-1_amd64.deb 49933080 SHA256 f7a3f8196eb09ddc6f866356e32ca9c1dbc51882aa355019ec41d8c422dccbaa SHA512 02d7fd771cf39613579601461e6e5a496a695f1d2c80cec126068a04657ba526c5e114486f3f5afdb11d4dcefe12e4ee22266d68c4217649555632bb5040e11e WHIRLPOOL 50b41058fc7a4abd4ad12d846079214190d31b68a0a2672a40bce9d230f98aa2821c623e9f90f6fdd4cf80c240b940b4c465648604a54613b8f22bcab3941f03 +DIST google-chrome-unstable_32.0.1678.0-1_i386.deb 47454446 SHA256 3c76ab1971ffd3888d1b3a3e86dcc2877ded89216fe749d386886c4000528337 SHA512 6bd269b59e2fc9ec9b22c6728f77a793a5b36a7ea962fb8260f0a485c670a39d0f16ad299a6cddd9a5a6ba09f76555b80846574a54e0a0a31d6e65eb43959166 WHIRLPOOL c7e8ecb78b7d273d8dfde3420568a3c5b8d937fabb60a81457d8e2955c6f1ad1baa112bde24fbb8c2f3a373a7078490f0aa99bcb3f6cf0c9c1c5fd58b1a18a06 diff --git a/www-client/google-chrome/google-chrome-30.0.1599.101_p1.ebuild b/www-client/google-chrome/google-chrome-30.0.1599.114_p1.ebuild similarity index 98% rename from www-client/google-chrome/google-chrome-30.0.1599.101_p1.ebuild rename to www-client/google-chrome/google-chrome-30.0.1599.114_p1.ebuild index 64027f398d9a..b8bb0e425d94 100644 --- a/www-client/google-chrome/google-chrome-30.0.1599.101_p1.ebuild +++ b/www-client/google-chrome/google-chrome-30.0.1599.114_p1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/google-chrome-30.0.1599.101_p1.ebuild,v 1.2 2013/10/18 18:46:06 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/google-chrome-30.0.1599.114_p1.ebuild,v 1.1 2013/10/23 01:01:21 floppym Exp $ EAPI="4" diff --git a/www-client/google-chrome/google-chrome-32.0.1671.3_alpha1.ebuild b/www-client/google-chrome/google-chrome-32.0.1678.0_alpha1.ebuild similarity index 98% rename from www-client/google-chrome/google-chrome-32.0.1671.3_alpha1.ebuild rename to www-client/google-chrome/google-chrome-32.0.1678.0_alpha1.ebuild index 0dff13ecc4ed..5db7da45f606 100644 --- a/www-client/google-chrome/google-chrome-32.0.1671.3_alpha1.ebuild +++ b/www-client/google-chrome/google-chrome-32.0.1678.0_alpha1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/google-chrome-32.0.1671.3_alpha1.ebuild,v 1.2 2013/10/18 18:46:06 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/google-chrome-32.0.1678.0_alpha1.ebuild,v 1.1 2013/10/23 01:01:21 floppym Exp $ EAPI="4" diff --git a/www-plugins/chrome-binary-plugins/Manifest b/www-plugins/chrome-binary-plugins/Manifest index 928f28b1b8db..0c5a344983a6 100644 --- a/www-plugins/chrome-binary-plugins/Manifest +++ b/www-plugins/chrome-binary-plugins/Manifest @@ -1,6 +1,6 @@ DIST google-chrome-beta_31.0.1650.26-1_amd64.deb 49528196 SHA256 74348ad15dfaade6e879ca7c1f7b69107f6e5d9d6aa42eed805edad9ecef10a0 SHA512 add463fa2e67181c744b1de4833fdccdb8e91841b8bd6d7d39666ffe4606cf88dbc92d028e7ffe9c0cd3426058e6681e86a9682a1958dba8063f9bc4fdeea48e WHIRLPOOL 9c06c3f420debc18c1e57a283773e46c08d636cd23c733edc208c273c22d477b722df02b9fe2a076dda3764cb9c29a59a251a00cff4f0fb6c9ffffabf70f1650 DIST google-chrome-beta_31.0.1650.26-1_i386.deb 47150108 SHA256 b71bc45ee025b9b918f73ed5ebefed342726d516be09ee811f537c6665a4491b SHA512 df350131e1db9557bc0bbfe86131062ff3aef331473eb058280c551eeb88c00ed967435226ed7af1675ccfc04a49d8efee99fa702310d8f267fe82af5da4facd WHIRLPOOL f50c3ec20fd9f52362913566727c6cef2cbe816ff854c669d6d577d673dc186da159e5390d49d7548bc34ba51452d7e141243754df052193f8bb134efdb94177 -DIST google-chrome-stable_30.0.1599.101-1_amd64.deb 44497784 SHA256 3e1ba5d372d114a278e27d21f14c7377102b56c258505c9c3dfbd69138904d0a SHA512 24d27822ff7d84aba8319a40a1587fa7f481e98c1075373564484f338b269ebaca87a9575c114c00689a7abc7ff75c3507acc7eb054fcebb3bd14fcd12fc72fb WHIRLPOOL 3dd09757dd739792cef76fc3d4f56f5621668d300ae2b20a13816e1d64327ebc5db3ba203790d0005643325d130dd04658e24a980d0cf11ed3ce2073180afbf3 -DIST google-chrome-stable_30.0.1599.101-1_i386.deb 42314102 SHA256 79950010dd2bc1afdc33fbec6b6746b3e23f29bfdea6797d62b18499c3c41c5c SHA512 4d30637dd719c6bd3016bc17fc2a78a7deae516672ec3beb3989da2f7ee4f4f06e8b7df0a5b7f70f7c3027fdd826e28420b5428e2679555f4de8eb77bf4159c5 WHIRLPOOL ee47bcd49272537646737a3a1b33bb2d1a5742f1c9bf9c907d9ddcc452354067006f2ec1d6ff907d4deed66029eabc8c212aad86261d214f7c30f96f16563ffb -DIST google-chrome-unstable_32.0.1671.3-1_amd64.deb 49680124 SHA256 9c8cd27d72a2710d4c58ae06089ede3f715a615e72bb9307a5b5531e53e8e919 SHA512 e09ef15362655df2057d3294be9b3659dd2b00f474422f4781c5bb79a7a253ae8bcc7f1cecfbf354f7cc55738bb9486f57b0a9747b7ac6c762cddcdc230f54e0 WHIRLPOOL 74d573aa49021cec3a000d654ca1044e384074113fcb8623f290c975ee3f7b4bf7ef1a8e9051b840bd4b8501056c6a9d9a962339e2f0756f1f7731d21a242da1 -DIST google-chrome-unstable_32.0.1671.3-1_i386.deb 47258718 SHA256 a34ddcd9980bd1e9ead1a59471c7ec24cedab5ac1f17507fc22edfc8fa1bbb64 SHA512 181d8f7584fe2e5322981ca9e651824f8515ca6ad8b01d51cc01103e0d0ecb3c6cf408d8b4a6a283b8f8dba7209874585c8e717fecca00b0a688325960481696 WHIRLPOOL 47b441a64f8716620211fb47e18957f077cb5350bb417db38d19b9a03ab208d9298a9a94229e674dd703aa88d737ac6ea4bebc371c78a3d41e5eef366606598e +DIST google-chrome-stable_30.0.1599.114-1_amd64.deb 44536710 SHA256 b8270e57f9d60782e0ae41ff74f70a92acb3ec8fcee093e88a4f8a031f08545b SHA512 c22d3fa6db5f2464e8f2902d4e8099726f18c0b0fcded2217b543979c6ae3a3a61260e2f34911c458dae720d82b16fe5772ed2a5d10bfe9c8db203fed9f9c51f WHIRLPOOL f4a57fcaacb7ea98e3a3f73bdee0afd8883c691972e509106bfd8b3b00f8bb567c71703b01f2a528efbd47721f01098a68c10dcac8aca9a33adcf980aee5b424 +DIST google-chrome-stable_30.0.1599.114-1_i386.deb 42193880 SHA256 3a5dfb7f1e698e5280b63fec3ecb5e301c10f2fdce3a0cf6c31aa64d5f1fb6c5 SHA512 8bbc623eb4562d2eae7297b61ae20adf5751da3a10e202a68b11ec943883591593fa19eb54b4a8406c0ea6cd7496b09a9c2a37751f875f17ad86c051f050c6e2 WHIRLPOOL 305ba352cba8e3b6bcba8b8af2ec7c81052c9bdc2ad99b1a26399f2dd6a034594e19666823afd6d685e0b5135ce5fef380fb2891bfeed63716e6c3a9e7218a68 +DIST google-chrome-unstable_32.0.1678.0-1_amd64.deb 49933080 SHA256 f7a3f8196eb09ddc6f866356e32ca9c1dbc51882aa355019ec41d8c422dccbaa SHA512 02d7fd771cf39613579601461e6e5a496a695f1d2c80cec126068a04657ba526c5e114486f3f5afdb11d4dcefe12e4ee22266d68c4217649555632bb5040e11e WHIRLPOOL 50b41058fc7a4abd4ad12d846079214190d31b68a0a2672a40bce9d230f98aa2821c623e9f90f6fdd4cf80c240b940b4c465648604a54613b8f22bcab3941f03 +DIST google-chrome-unstable_32.0.1678.0-1_i386.deb 47454446 SHA256 3c76ab1971ffd3888d1b3a3e86dcc2877ded89216fe749d386886c4000528337 SHA512 6bd269b59e2fc9ec9b22c6728f77a793a5b36a7ea962fb8260f0a485c670a39d0f16ad299a6cddd9a5a6ba09f76555b80846574a54e0a0a31d6e65eb43959166 WHIRLPOOL c7e8ecb78b7d273d8dfde3420568a3c5b8d937fabb60a81457d8e2955c6f1ad1baa112bde24fbb8c2f3a373a7078490f0aa99bcb3f6cf0c9c1c5fd58b1a18a06 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-30.0.1599.101_p1.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-30.0.1599.114_p1.ebuild similarity index 95% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-30.0.1599.101_p1.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-30.0.1599.114_p1.ebuild index c0ca31205f2d..9d2903026c59 100644 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-30.0.1599.101_p1.ebuild +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-30.0.1599.114_p1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-30.0.1599.101_p1.ebuild,v 1.1 2013/10/15 21:51:18 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-30.0.1599.114_p1.ebuild,v 1.1 2013/10/23 01:16:00 floppym Exp $ EAPI=4 diff --git a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-32.0.1671.3_alpha1.ebuild b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-32.0.1678.0_alpha1.ebuild similarity index 95% rename from www-plugins/chrome-binary-plugins/chrome-binary-plugins-32.0.1671.3_alpha1.ebuild rename to www-plugins/chrome-binary-plugins/chrome-binary-plugins-32.0.1678.0_alpha1.ebuild index 6f527fc48bbf..b078b302fae4 100644 --- a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-32.0.1671.3_alpha1.ebuild +++ b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-32.0.1678.0_alpha1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-32.0.1671.3_alpha1.ebuild,v 1.1 2013/10/15 21:51:18 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-32.0.1678.0_alpha1.ebuild,v 1.1 2013/10/23 01:16:00 floppym Exp $ EAPI=4 diff --git a/x11-drivers/nvidia-drivers/Manifest b/x11-drivers/nvidia-drivers/Manifest index 9aa610c86ab6..3a74bb21a53f 100644 --- a/x11-drivers/nvidia-drivers/Manifest +++ b/x11-drivers/nvidia-drivers/Manifest @@ -7,6 +7,7 @@ DIST NVIDIA-FreeBSD-x86-319.60.tar.gz 34097038 SHA256 424b9d016dd6d243c995e35da5 DIST NVIDIA-FreeBSD-x86-325.08.tar.gz 34146056 SHA256 24a94a411854ba87837040c8b2cbb17dabad6f97d794eafc38e4129374f56ee2 SHA512 f2bc0451718d15f74967d6a4d602d22c1c98e4b413894c3a244fd3094f11d6ae4ff55cdf0a3ef3b625179888e71dc35d1ebe17a9afd34836c7d511f2164b13da WHIRLPOOL ddc07033aed161e1e930c84a304cdfd93024a16910b57123bdbaf4e09ae2de4fedbac0518f958510d1cc8d79294828e8d302be146ddfb7dd5ec85ea2434792eb DIST NVIDIA-FreeBSD-x86-325.15.tar.gz 34164781 SHA256 745d8454833d1ad59f6480ac2d1ca744862e4e711e16deeebc0d04ff86925c4d SHA512 b1ce1041d7f3a926c3e62e398a618063e24675cdd919206c11e556f38d3b0078233ba31207d04e9d94e26bbf5eae4d43f8db457e7ac4fecfb8d407d2dbbf3040 WHIRLPOOL 9a37ecaa745ab9ff80755f01100610f85467fdfb55f5568dd358cb39302c0951edd91d518f1027bb0d43628e575ff9c1799ad956b9e673a31d38f7f3db125c63 DIST NVIDIA-FreeBSD-x86-331.13.tar.gz 55428438 SHA256 a9d2c761c0c58898f536728728420b36685364fccf864b57a7d3413d74a8ba5f SHA512 96e922797cbc1a51147e07b208f33d54ae5648ad8b033ef9e7cb4f2fc5730a56b54ac265a8ea8b5004413dfd468db261d6f33a71e7879db7e431656c378adf21 WHIRLPOOL 7aab0be204e69c6f44333593150ae4bbb9e97d8967a52ae8d228acfa2051763ac174a80e170cb11978dac3c91eb285b845a5c6c5e74b5b7f398b35417b409650 +DIST NVIDIA-FreeBSD-x86-331.17.tar.gz 55388934 SHA256 29497303a227126154d30558c0e8c5f375f4cb490355fb0cf8733c6136f3433b SHA512 7a71c13b4ba6098f005aa5525dbaea08751774f265da80c28149aad8cb1731e24857834e39be1c815534e018981434ff01befb11f6b6736436d3a8e1e0d65b9c WHIRLPOOL 79179de528f05826533b7a6e3843a55e592988800e27c2e7d71886416d489720284fc4ca0202894186bc4293fb759a0c29263e0b00f1bbafa5689ea80fbc0607 DIST NVIDIA-FreeBSD-x86-96.43.23.tar.gz 15463464 SHA256 18d855db8381eda1a6cf548c9e5095fc5bb8694bf1d6e24fc1072fba4e54cd78 SHA512 42d7b1b76cdb3b23680363e565614a22112162a5dd3639cb804fe670c0c3f3f23595bbefa3f78afdc6a8ca848446dee853c7a355f2c96a0d01b354753ba2785c WHIRLPOOL f8e59ce521990cd9edee441e73f973f074db492952807a0931e362102874cddbb47604ff5c5eb20a0cbde27f9b6d4e440dd12cc2e5a20c9cb65bf3c0b3e62511 DIST NVIDIA-FreeBSD-x86_64-304.108.tar.gz 34600935 SHA256 8044e3c9355fc243b76fac6e3a76eabb2f9df63b1d2c5711cfa3ce618677b793 SHA512 0d0465f52f997dc25a7fdb6588273368e7397bcbfe5d76895a81124d68cfcff7afa52ef29808a9795fe5ea3d563801b2fce1e26f36c1481af507743dd96f9d81 WHIRLPOOL 34be90833c016663e12b561753515841217b08f63a82ce89855ca1ea8a67c893320dc4f47f7368c3ccea69c846ec28d9411997f9bccb1adb64273a45761aab14 DIST NVIDIA-FreeBSD-x86_64-310.51.tar.gz 33574579 SHA256 9b3309488dae7097171828364b4aa4e9714afc4c5dabc0f2e95ad2fa42534d04 SHA512 0f26df1dccf5c8fbe169479ad09f6200c29ad4f1bdc3d314ac67b88186692924c193b6c34a8ce28d1ce28394909fe39e1e047c3616091fbb768cb7ca60be5669 WHIRLPOOL d08e206c376c01d0c28cb1100fc1106d44cc007985a1030fef666f440e5d6bdaf7d352cb7a8b72b9195c3acc8fe4a7adce25f876f24ceb12adfc27994413e2ea @@ -16,6 +17,7 @@ DIST NVIDIA-FreeBSD-x86_64-319.60.tar.gz 34492071 SHA256 0b997a532629c548d49efe7 DIST NVIDIA-FreeBSD-x86_64-325.08.tar.gz 34575119 SHA256 e51b13e63ac83d61f44068d9e883854fb3c2773a85ed4e6a44eec7e68dfc08eb SHA512 39a30e558e2253a112f8cef89b4f15a2c9f783cc8cf4bebd3404f5547505310ce48522676e2c1ac3d4d906dbc4a22a3d1032f9970a676a2f15b5c4f20f70ad58 WHIRLPOOL 58f753dba1e58380fa1763c5b03d624fc957973551645900ef92760ca65c9ffb584cd5045793755a01298077f44875425d368238c4fb6205d40493cf2be99b6f DIST NVIDIA-FreeBSD-x86_64-325.15.tar.gz 34590166 SHA256 92429119ca8e50baa06c6681ed2b9eb6c37cdf256a19ba4e1827be4b202a0569 SHA512 c9e4d41a5dcb02a280fb323fd4578bc7851d4242890f1d8e69a59e083a2a76cccdaba3ed55f8eb8f983e9c89326f0a9d7152bd7770230fbe45fc7b5865c486b6 WHIRLPOOL c54638af7fb6aaf63222ea75cc377e5e449dfaa80dd47a23aed2eec8da1c460c9e3c24627a2853287585a65b0f562e3efc7916fe985a4816d82aebc12bf7021b DIST NVIDIA-FreeBSD-x86_64-331.13.tar.gz 46552607 SHA256 3f42aaf4b35bb04dedd4f9511e36bb473ae4174c7609ea100396d16ec532a17f SHA512 7daae19273f31a7802852dd4fa7726a1b6c828e0c868f7fa918f5c6378b1152223638d7556a7c4f02246bb1e0ed2d32d9118c67c9b651f2d792ccc796b09bbbd WHIRLPOOL aec73e407be9280fa160fcfac4b7652f7f21f684c1442c106eedc8b82c2f99a0c5a3b4ee82f3c41244d22f819e96b9752f4989ec37ed0e975a3c8fe724236c86 +DIST NVIDIA-FreeBSD-x86_64-331.17.tar.gz 46516620 SHA256 4347179b55c6e9e2c0fbaa9fb8e87e316243eb8680d4182802326c1da01e7074 SHA512 7dbb5103924547bafb06a6b848c70e496570d34b583fc9f1d9e83697d0965c70495cf6942eebd612056e2c27e5db7595b6bd8c133a7fc00b1a94943092250bda WHIRLPOOL bad04990cee9df2a609495235c7ebc6260264535f95e0764e73cbb484b6f1ba86a46043dd7e8f3046ad2bf71c41fe2edd410f142bc4baa2304d96a7d7790c31d DIST NVIDIA-Linux-x86-173.14.38-pkg0.run 14762614 SHA256 386ca230632f617de0ae975c037e3570469d3313a8ef488620d4af40c50e3d41 SHA512 1467a5d79bbc6a655dd3475e6a1e9281a525ae11c11207a9ffa797187ba3d040762e40380632ade02bc0125686e1dbc0cd9f5ac7fcaf4e95f5bacd0c80f7c123 WHIRLPOOL 815258bb2f0715c0330b273c224f6b42a84a59b9eb336a079e39914a4196bfceb30a0ddd3a02fea76e96ed3d74623c4204e44570d29f6f5592f4eb90f614ea90 DIST NVIDIA-Linux-x86-304.108.run 39700058 SHA256 c965d36f896ed154f0801a3e1936fcc195f12e76cf300fc6d890c3195082c838 SHA512 a8478f098962fdd4a6db80d844930e39e020f7842407d6c5770e2aecdd8aea7fcd83c5fc527ec3b0c3688ee834d002657b40fff9deb6b4d6a67bc8c29053f714 WHIRLPOOL 8e2e4f7bdcdfaa602cffac1ec5413e137763dd0868c03d0b49322c80f6f0b82248ec8b5af2815bd4a5b504b776a5b36b69e2021ecc92d173206ee326d6450f02 DIST NVIDIA-Linux-x86-310.51.run 38891291 SHA256 f2162d903bf0873b9d4e1ad6dc464a10ee9f28b508a10525879c51ed5f47c6ca SHA512 41e14da121140be7c068703e9adbb4208cd3d9b786167523b1fc04420b7f830d89b1bcaa4a1cfa991bd59f48e1d74bb50f16493256e5fab355047985d180d26a WHIRLPOOL e548ac02b98e13aa72d9291ab668f60ba0491f9b8b91e7dda129f1e2968e105945fa41da388af189e3ceec2d699c2bc591e3dfac4759c62726a139087389f956 @@ -25,6 +27,7 @@ DIST NVIDIA-Linux-x86-319.60.run 27756541 SHA256 d2c844e0ded02d460356022fafaa1b8 DIST NVIDIA-Linux-x86-325.08.run 27288921 SHA256 37d0f16a75d9cf176557cc35a00c599c1dddf11fa523f284841876b1b9010f3f SHA512 c356fdc40d6dcca4e2f7f6387dbe7846405344eaae7f0bc2894a53940dc1d9893e6f245a496e4b328a6e7c476619597cc4535626eb350cfed491090ce35c36fd WHIRLPOOL 84c4ef4a5c578a85efeb7c7b1b96500a73139839d3c0ae8bc4c6b8a3ddb029664854bd656f4ffd90beeff815a89c357efbde5ba4bf8167c03b80e5ceb0c8d57d DIST NVIDIA-Linux-x86-325.15.run 27409286 SHA256 3d790e4bfed24641f7cc76879144ab5d52b12271012ba381b0d33aa1a2e08775 SHA512 48052c3daa8748a7c43de1c24e00fdd3f94cebbe7f5efbb185a0472a1d0bbab8adfe377359ccdc6cd8e437a80506fdd551408237b0842c194a3497c43cf3487e WHIRLPOOL 387fb8af1a31cc295abe7b15fee7d5bc01c515603b178abe7f50864dbbf0685ca50f88e67359adc4af8e90caaeb1fba95aa6af9f54e6fced46c82c5cfc094390 DIST NVIDIA-Linux-x86-331.13.run 36834516 SHA256 36d5402d9cca8eb24261e1141ecc67040a4120f5a9391de0481c68e9de9009be SHA512 97603a193e63dd747a38751e79dfb97425af2c9332d2a40bd0083ad82b35e003e602ba029d5c7b0683bbc4644af19e133214c72e72af0f23bf55976e61637151 WHIRLPOOL d7e18bf5f3725973b48dc57e6137c91c31c2654b90c28f8606ca193d40d970f61a2ec089bacee282753bc51673390c38b8704a9693d36c30a09cc5de7a0fbfa5 +DIST NVIDIA-Linux-x86-331.17.run 36866490 SHA256 5c2edd5991964430f5ed16b6fee8d54a164eb3beb8eee4f7b8bb7f68baa4cc88 SHA512 acd2b5e5648c8f534b1eedc95302a0869a9786a79eed1d5312b817520782c46cd3075d2dba562dd111d34267cf22e5f8da94ac353e72c00c8a71a1d36b97db55 WHIRLPOOL 0c2fa3f399c9f28ee5b4516c230b948a1d54b61e4f853fd1a2cfc149c5748621c5ea2f0037a0b3dc87bd2e78a168c9ce5d710ecdaf8a67e38957963b6f224e4b DIST NVIDIA-Linux-x86-96.43.23-pkg0.run 11504817 SHA256 51e6adf4ba73071622045fc37169f80db3ae3e784dff53b29d35146a04042142 SHA512 bed5726e57637481fe4e3c03a65ec14fe949f00860e729ebde408f4fd861d7bfdc296a78bc2f5d42e8b282db09f4bbde1e0545df7228fa20227080dc4b868ba7 WHIRLPOOL 6d4fd1786c11f4e326cc3101d0bb1a2f8b63c25c3dd59f10188f8355759e2861ce44fd53d60258b513d5a1d6124d0f91ba8edf4d3668b6feabfb3e8d585f14fe DIST NVIDIA-Linux-x86_64-173.14.38-pkg2.run 20649787 SHA256 d1c383e2c17fd176adabf6b5c0ef43004aa2be37c10edd47f65ed727a63d2c30 SHA512 9a8906b8232e11f0b839011fef312104d9d0ae15c2cb1b60217e8c31a3ce17b4f1536709d398ce3abc7740a2e586bdf30d9ce8299e2c6bb4dd4ec7cea85623d4 WHIRLPOOL 27ea0450fc9538f4fd1ea65baeda5da534b78e15cf73818fb1c974edf293259a4ab1bcfba8a4eae1c770028b30403668cce51c928c431d061b3cccbb7bb476c6 DIST NVIDIA-Linux-x86_64-304.108.run 68052588 SHA256 56a61871f0488521f50c04607c568a177cad48a577c0f4ca625665d0015e2b39 SHA512 f8dfd38c4a9b8e127fe7ca567a46edfaca3e410bdfb82a7de0d72f78144013537638f6cad760dee06f911a04f2897410280fe560a84b55225cc7e42525159f90 WHIRLPOOL 6a0b14caea8167c328141f69fe538bd798040969c1e718c93f5fca7a077b652f6ceea96962212d432baf69e2b687ce0f2a3a7463a4549b5697e7ec4fc2bc8208 @@ -35,4 +38,5 @@ DIST NVIDIA-Linux-x86_64-319.60.run 48933020 SHA256 2bd663d0d0a9ae8769b0335ff282 DIST NVIDIA-Linux-x86_64-325.08.run 47883205 SHA256 83a567dc6b1ddd0c74af1ebc54e966ae19f52baa17166981046af4d6288c6ce4 SHA512 cc2e397325f7c237fb61d7ae322d7c199e054877bdcea2d505b9342f0ab80e275c0ecc0569434c65306d626e82aa4f524fb4df0f43d9d08b3f0d7ba8cb2de80e WHIRLPOOL a316eb22ee8efb95322d451c1ec42e58eb7e043b4001d4e15f94044dea460741e10a257c2029d34cb874b0501cd79403cde159fab4d47aff303dc2cf9bde0e1f DIST NVIDIA-Linux-x86_64-325.15.run 48034648 SHA256 01446fbd94f6eb3b2e1b3d3f2b06970bf470c3ee2cb1838b3d0c2416e6c74500 SHA512 323cbd8e6f3ce29a1556b83b2fb3456f919964ede1cbee4ddaa3539ab75eda7abe26b96ba500462eed2ade4163b8de20d1db6ea987af923710f0e1a60e432e83 WHIRLPOOL 7c05717a2cfcb003a8c1f9fc5f5e24cfd5216aca7167ee8f29b60c43262fc61afab9619147ee07cb2541aa1d55b13a730b52c90979b7970df709fb659fe782ff DIST NVIDIA-Linux-x86_64-331.13.run 59835902 SHA256 571741b8ea153281916382d287849f99a9fa65b911aa54d678b48ef0091cc0cd SHA512 5c7c6a23a691b67ad5943c36829b9e4f0c5103f4e3d3b28fbdfd9ee9cd697bb69a7474239313feb67ff9e0499749b49aa6ee33aaf59c1f14c14bd14ea5b25d62 WHIRLPOOL 5587c94c050134d13076955c3bdd7e33aca86f61befa3b70522338bcd535bcd1902140b2564fecdff1dda4fce025a028bf6698c025c80939fe84970c507ed00d +DIST NVIDIA-Linux-x86_64-331.17.run 59878816 SHA256 22968b7bd6460456e99edcad18ec237ebe66fd19e349c9ec9c3d5a16c074eab4 SHA512 9d0f0c860622167ec5804eb4c8d8e58835ca6d4d0c8818824a66fd774f577f6c149612ab67a1f12e67b2a444c716d2254b6dfc91d53badb4233c0db3b2365f29 WHIRLPOOL a89fa9407b7cf92bc28a985112db2f268947f4032933163dfb78e0d9dc1cd955376a4ed2b041ddc681f488596e6d19e564436a7d89727bb5ac2285eede008298 DIST NVIDIA-Linux-x86_64-96.43.23-pkg2.run 15962375 SHA256 ce8d8253e7dab7da63fbdac449ebf190cd0c10cbfffea0f8d0165515f851bc64 SHA512 04bec1187a6024a2b9839f008ec829281f1f2602dae2e639030bc385943186506bcaa2b46a230b2ab87f9217190841abc62f9e2d6395ab5559623389c31c6563 WHIRLPOOL 0651c44a51a1a06fcff5bfddbf9c3e408977e03263c7fe806cb6c01f9fe92f716dfe4e5190ffe1048bde72fcffdc8bca8267e74dd43ba5c9dfb22b6201fcc2bb diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-319.60.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-319.60.ebuild index 0247c6cb7358..95391cf903ca 100644 --- a/x11-drivers/nvidia-drivers/nvidia-drivers-319.60.ebuild +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-319.60.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-319.60.ebuild,v 1.2 2013/10/12 15:14:41 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-319.60.ebuild,v 1.3 2013/10/23 11:51:14 jer Exp $ EAPI=5 @@ -24,7 +24,7 @@ SRC_URI=" LICENSE="GPL-2 NVIDIA-r1" SLOT="0" -KEYWORDS="-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="-* amd64 x86 ~amd64-fbsd ~x86-fbsd" IUSE="acpi multilib kernel_FreeBSD kernel_linux pax_kernel +tools +X" RESTRICT="bindist mirror strip" EMULTILIB_PKG="true" diff --git a/x11-drivers/nvidia-drivers/nvidia-drivers-331.17.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-331.17.ebuild new file mode 100644 index 000000000000..b69b00cfbfeb --- /dev/null +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-331.17.ebuild @@ -0,0 +1,454 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/nvidia-drivers/nvidia-drivers-331.17.ebuild,v 1.1 2013/10/23 11:48:46 jer Exp $ + +EAPI=5 + +inherit eutils flag-o-matic linux-info linux-mod multilib nvidia-driver \ + portability toolchain-funcs unpacker user udev + +NV_URI="http://us.download.nvidia.com/XFree86/" +X86_NV_PACKAGE="NVIDIA-Linux-x86-${PV}" +AMD64_NV_PACKAGE="NVIDIA-Linux-x86_64-${PV}" +X86_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86-${PV}" +AMD64_FBSD_NV_PACKAGE="NVIDIA-FreeBSD-x86_64-${PV}" + +DESCRIPTION="NVIDIA X11 driver and GLX libraries" +HOMEPAGE="http://www.nvidia.com/" +SRC_URI=" + amd64-fbsd? ( ${NV_URI}FreeBSD-x86_64/${PV}/${AMD64_FBSD_NV_PACKAGE}.tar.gz ) + amd64? ( ${NV_URI}Linux-x86_64/${PV}/${AMD64_NV_PACKAGE}.run ) + x86-fbsd? ( ${NV_URI}FreeBSD-x86/${PV}/${X86_FBSD_NV_PACKAGE}.tar.gz ) + x86? ( ${NV_URI}Linux-x86/${PV}/${X86_NV_PACKAGE}.run ) +" + +LICENSE="GPL-2 NVIDIA-r1" +SLOT="0" +KEYWORDS="-* ~amd64 ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="acpi multilib kernel_FreeBSD kernel_linux pax_kernel +tools +X" +RESTRICT="bindist mirror strip" +EMULTILIB_PKG="true" + +COMMON=" + app-admin/eselect-opencl + kernel_linux? ( >=sys-libs/glibc-2.6.1 ) + X? ( + >=app-admin/eselect-opengl-1.0.9 + ) +" +DEPEND=" + ${COMMON} + app-arch/xz-utils + kernel_linux? ( virtual/linux-sources ) +" +RDEPEND=" + ${COMMON} + acpi? ( sys-power/acpid ) + tools? ( + dev-libs/atk + dev-libs/glib + x11-libs/gdk-pixbuf + x11-libs/gtk+:2 + x11-libs/libX11 + x11-libs/libXext + x11-libs/pango[X] + ) + X? ( + =x11-libs/libvdpau-0.3-r1 + multilib? ( + || ( + ( + x11-libs/libX11[abi_x86_32] + x11-libs/libXext[abi_x86_32] + ) + app-emulation/emul-linux-x86-xlibs + ) + ) + ) +" + +REQUIRED_USE="tools? ( X )" + +QA_PREBUILT="opt/* usr/lib*" + +S=${WORKDIR}/ + +pkg_pretend() { + + if use amd64 && has_multilib_profile && \ + [ "${DEFAULT_ABI}" != "amd64" ]; then + eerror "This ebuild doesn't currently support changing your default ABI" + die "Unexpected \${DEFAULT_ABI} = ${DEFAULT_ABI}" + fi + + if use kernel_linux && kernel_is ge 3 11 ; then + ewarn "Gentoo supports kernels which are supported by NVIDIA" + ewarn "which are limited to the following kernels:" + ewarn " \ + "${WORKDIR}"/nvidia + insinto /etc/modprobe.d + newins "${WORKDIR}"/nvidia nvidia.conf + + # Ensures that our device nodes are created when not using X + exeinto "$(udev_get_udevdir)" + doexe "${FILESDIR}"/nvidia-udev.sh + udev_newrules "${FILESDIR}"/nvidia.udev-rule 99-nvidia.rules + + elif use kernel_FreeBSD; then + if use x86-fbsd; then + insinto /boot/modules + doins "${S}/src/nvidia.kld" + fi + + exeinto /boot/modules + doexe "${S}/src/nvidia.ko" + fi + + # NVIDIA kernel <-> userspace driver config lib + donvidia ${NV_OBJ}/libnvidia-cfg.so ${NV_SOVER} + + # NVIDIA video encode/decode <-> CUDA + if use kernel_linux; then + donvidia ${NV_OBJ}/libnvcuvid.so ${NV_SOVER} + donvidia ${NV_OBJ}/libnvidia-encode.so ${NV_SOVER} + fi + + if use X; then + # Xorg DDX driver + insinto /usr/$(get_libdir)/xorg/modules/drivers + doins ${NV_X11}/nvidia_drv.so + + # Xorg GLX driver + donvidia ${NV_X11}/libglx.so ${NV_SOVER} \ + /usr/$(get_libdir)/opengl/nvidia/extensions + fi + + # OpenCL ICD for NVIDIA + if use kernel_linux; then + insinto /etc/OpenCL/vendors + doins ${NV_OBJ}/nvidia.icd + fi + + # Documentation + dohtml ${NV_DOC}/html/* + if use kernel_FreeBSD; then + dodoc "${NV_DOC}/README" + use X && doman "${NV_MAN}/nvidia-xconfig.1" + use tools && doman "${NV_MAN}/nvidia-settings.1" + else + # Docs + newdoc "${NV_DOC}/README.txt" README + dodoc "${NV_DOC}/NVIDIA_Changelog" + doman "${NV_MAN}/nvidia-smi.1.gz" + use X && doman "${NV_MAN}/nvidia-xconfig.1.gz" + use tools && doman "${NV_MAN}/nvidia-settings.1.gz" + doman "${NV_MAN}/nvidia-cuda-mps-control.1.gz" + fi + + # Helper Apps + exeinto /opt/bin/ + + if use X; then + doexe ${NV_OBJ}/nvidia-xconfig + fi + + if use kernel_linux ; then + doexe ${NV_OBJ}/nvidia-cuda-mps-control + doexe ${NV_OBJ}/nvidia-cuda-mps-server + doexe ${NV_OBJ}/nvidia-debugdump + doexe ${NV_OBJ}/nvidia-modprobe + doexe ${NV_OBJ}/nvidia-persistenced + doexe ${NV_OBJ}/nvidia-smi + doman nvidia-cuda-mps-control.1.gz + doman nvidia-modprobe.1.gz + doman nvidia-persistenced.1.gz + newinitd "${FILESDIR}/nvidia-smi.init" nvidia-smi + fi + + if use tools; then + doexe ${NV_OBJ}/nvidia-settings + fi + + exeinto /usr/bin/ + doexe ${NV_OBJ}/nvidia-bug-report.sh + + # Desktop entries for nvidia-settings + if use tools ; then + # There is no icon in the FreeBSD tarball. + use kernel_FreeBSD || newicon ${NV_OBJ}/nvidia-settings.png ${PN}-settings.png + domenu "${FILESDIR}"/${PN}-settings.desktop + exeinto /etc/X11/xinit/xinitrc.d + doexe "${FILESDIR}"/95-nvidia-settings + fi + + #doenvd "${FILESDIR}"/50nvidia-prelink-blacklist + + if has_multilib_profile && use multilib ; then + local OABI=${ABI} + for ABI in $(get_install_abis) ; do + src_install-libs + done + ABI=${OABI} + unset OABI + else + src_install-libs + fi + + is_final_abi || die "failed to iterate through all ABIs" + + readme.gentoo_create_doc +} + +src_install-libs() { + local inslibdir=$(get_libdir) + local GL_ROOT="/usr/$(get_libdir)/opengl/nvidia/lib" + local CL_ROOT="/usr/$(get_libdir)/OpenCL/vendors/nvidia" + local libdir=${NV_OBJ} + + if use kernel_linux && has_multilib_profile && \ + [[ ${ABI} == "x86" ]] ; then + libdir=${NV_OBJ}/32 + fi + + if use X; then + # The GLX libraries + donvidia ${libdir}/libGL.so ${NV_SOVER} ${GL_ROOT} + donvidia ${libdir}/libnvidia-glcore.so ${NV_SOVER} + if use kernel_FreeBSD; then + donvidia ${libdir}/libnvidia-tls.so ${NV_SOVER} + else + donvidia ${libdir}/tls/libnvidia-tls.so ${NV_SOVER} + fi + + # VDPAU + donvidia ${libdir}/libvdpau_nvidia.so ${NV_SOVER} + fi + + # NVIDIA monitoring library + if use kernel_linux ; then + donvidia ${libdir}/libnvidia-ml.so ${NV_SOVER} + fi + + # CUDA & OpenCL + if use kernel_linux; then + donvidia ${libdir}/libcuda.so ${NV_SOVER} + donvidia ${libdir}/libnvidia-compiler.so ${NV_SOVER} + donvidia ${libdir}/libOpenCL.so 1.0.0 ${CL_ROOT} + donvidia ${libdir}/libnvidia-opencl.so ${NV_SOVER} + fi +} + +pkg_preinst() { + use kernel_linux && linux-mod_pkg_preinst + + # Clean the dynamic libGL stuff's home to ensure + # we dont have stale libs floating around + if [ -d "${ROOT}"/usr/lib/opengl/nvidia ] ; then + rm -rf "${ROOT}"/usr/lib/opengl/nvidia/* + fi + # Make sure we nuke the old nvidia-glx's env.d file + if [ -e "${ROOT}"/etc/env.d/09nvidia ] ; then + rm -f "${ROOT}"/etc/env.d/09nvidia + fi +} + +pkg_postinst() { + use kernel_linux && linux-mod_pkg_postinst + + # Switch to the nvidia implementation + use X && "${ROOT}"/usr/bin/eselect opengl set --use-old nvidia + "${ROOT}"/usr/bin/eselect opencl set --use-old nvidia + + readme.gentoo_print_elog + + if ! use X; then + elog "You have elected to not install the X.org driver. Along with" + elog "this the OpenGL libraries and VDPAU libraries were not" + elog "installed. Additionally, once the driver is loaded your card" + elog "and fan will run at max speed which may not be desirable." + elog "Use the 'nvidia-smi' init script to have your card and fan" + elog "speed scale appropriately." + elog + fi + if ! use tools; then + elog "USE=tools controls whether the nvidia-settings application" + elog "is installed. If you would like to use it, enable that" + elog "flag and re-emerge this ebuild. Optionally you can install" + elog "media-video/nvidia-settings" + elog + fi +} + +pkg_prerm() { + use X && "${ROOT}"/usr/bin/eselect opengl set --use-old xorg-x11 +} + +pkg_postrm() { + use kernel_linux && linux-mod_pkg_postrm + use X && "${ROOT}"/usr/bin/eselect opengl set --use-old xorg-x11 +} diff --git a/x11-drivers/xf86-video-intel/Manifest b/x11-drivers/xf86-video-intel/Manifest index a3063879464a..f77663be3bfe 100644 --- a/x11-drivers/xf86-video-intel/Manifest +++ b/x11-drivers/xf86-video-intel/Manifest @@ -9,3 +9,4 @@ DIST xf86-video-intel-2.21.15.tar.bz2 1977431 SHA256 7d5a140f82a72fd1cbc8a664d66 DIST xf86-video-intel-2.9.1.tar.bz2 789001 SHA256 95347c88854c2b41c07ab3bcdfadd1b8d27fb181a20520f185892877eb8d9d76 SHA512 62a7c1852b2d0b89be93536e7852caf398fc743e11a12c5071baed5e767b29c382ff5eb9d6c3ab453fc4d94aa16245b607ef33b94198bf7c7626746772fcc290 WHIRLPOOL 7e61c5d1396829aa354c9fdfbe5a21723171390d86b3307a2a331061e128a9866408993410090fe5d607609d245c55843633730bc4521e9cb0ec478c8d6ede1c DIST xf86-video-intel-2.99.901.tar.bz2 1943447 SHA256 d9755d794cc0c70b7192384ffe8edfdd408446275ae4fc50226ad4e30abeb2b9 SHA512 b4f64a3e91cc82698cb563b112ea542503b7125b5ffd1367b53365f6cc676fd1bf96e54b2e8357aafbed6f8fc30a4e53764e41331f427c6bf244b8db3c82e0df WHIRLPOOL 8386e82dda84ad326f965ca61443deeff6d8354c9f1e414b4c3d6c7f7dd904fc24e41ed41773724f87c7bb276b92bb70236ce1008cf0794821724013d70a6ae9 DIST xf86-video-intel-2.99.903.tar.bz2 1965343 SHA256 a7582d80962f6052fb72b570cce53249dce6e1291d2d7df4f0384f73692eb32e SHA512 e8eff894cbeaf92368df94fd5bb65b871019444c5162569bb5011c8829457dffb0e631d9f0eaa71f2f21c87df94a64fe2864f60dc15b0db220f359c2a4fbb3cd WHIRLPOOL 3087665bb22aa921c106e0674f25a849d7dbb693dc93e0bd48966220a14265570d7e83947a20be8f4f8f8a40e779c64ad13982883b04cb42f16a96fda4b0f11c +DIST xf86-video-intel-2.99.905.tar.bz2 2013611 SHA256 5ccd5325eb470765416b7d673fcd389a8331315f274e0e781038a0793b94ad79 SHA512 e309f185bcf73ec2a122402023b74f5997f6fe79805db6413746176aac3ec43592c83b07571353836949594b0c286ec9d2d3e18806c3ea5d33d9cda69c68f6f4 WHIRLPOOL b1fe9e670c2d58431c1c83d00329f1a2907e8076c3c5357db6cfb5403f0532e569c57d538694903169a1c3fe751d367db09a20614ba4d6a64fb1d0c706b6370c diff --git a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.905.ebuild b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.905.ebuild new file mode 100644 index 000000000000..5c7286f1352f --- /dev/null +++ b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.905.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.905.ebuild,v 1.1 2013/10/23 19:16:20 remi Exp $ + +EAPI=5 + +XORG_DRI=dri +inherit linux-info xorg-2 + +DESCRIPTION="X.Org driver for Intel cards" + +KEYWORDS="~amd64 ~x86 ~amd64-fbsd -x86-fbsd" +IUSE="glamor +sna +udev uxa xvmc" + +REQUIRED_USE="|| ( glamor sna uxa )" + +RDEPEND="x11-libs/libXext + x11-libs/libXfixes + >=x11-libs/pixman-0.27.1 + >=x11-libs/libdrm-2.4.29[video_cards_intel] + glamor? ( + x11-libs/glamor + ) + sna? ( + >=x11-base/xorg-server-1.10 + ) + udev? ( + virtual/udev + ) + xvmc? ( + x11-libs/libXvMC + >=x11-libs/libxcb-1.5 + x11-libs/xcb-util + ) +" +DEPEND="${RDEPEND} + >=x11-proto/dri2proto-2.6 + x11-proto/resourceproto" + +src_configure() { + XORG_CONFIGURE_OPTIONS=( + $(use_enable dri) + $(use_enable glamor) + $(use_enable sna) + $(use_enable uxa) + $(use_enable udev) + $(use_enable xvmc) + ) + xorg-2_src_configure +} + +pkg_postinst() { + if linux_config_exists \ + && ! linux_chkconfig_present DRM_I915_KMS; then + echo + ewarn "This driver requires KMS support in your kernel" + ewarn " Device Drivers --->" + ewarn " Graphics support --->" + ewarn " Direct Rendering Manager (XFree86 4.1.0 and higher DRI support) --->" + ewarn " <*> Intel 830M, 845G, 852GM, 855GM, 865G (i915 driver) --->" + ewarn " i915 driver" + ewarn " [*] Enable modesetting on intel by default" + echo + fi +} diff --git a/x11-misc/redshift/Manifest b/x11-misc/redshift/Manifest index b1eb36758941..150f036c1cb9 100644 --- a/x11-misc/redshift/Manifest +++ b/x11-misc/redshift/Manifest @@ -1,3 +1,4 @@ DIST redshift-1.4.1.tar.bz2 238462 SHA256 49325ecd61263519c2bac51e7239d87b22bcfd550ad43d3e60282b6230d29cf7 DIST redshift-1.6.tar.bz2 266881 SHA256 9107451dee3c71c6ea146cb5409390814bf85b56ea495fb576c28f6e31fc863c DIST redshift-1.7.tar.bz2 269820 SHA256 9bfa3c3d4a9ce6ea06a5e6235ab4e8215a456c08d6e7451c0389456a37d010c8 SHA512 522b29c2a96d56d8497f93b8a72f295a3a4bbbaef32c514b6975da9a6d046bc0c97318458e8dad000ae18bef98a8fae0d1c2249f3be6860985a4e5ae0b1bb559 WHIRLPOOL 78c1e4a121b93889f6ebbfe86962c5b830a4b7169d0a8c33883e00405dfc5d51409a59b788618a8be740720c50ef17a230fbcf408d5ece858b73286eec336c27 +DIST redshift-1.8.tar.gz 143472 SHA256 710f09cfa3acca8db415dad31401aa9eb21bcbd69eac19710c078ae1791332eb SHA512 3ff1771d34b965938491fb86bd8770d294e747fc4838f59e9220ad88f980c2cd64b403ac5794d285b74b022fae11cf9a7468709714d5b5cb8762365f53660c40 WHIRLPOOL b3b49bf7585b1c825894140ec8009549a836005b420e865be47c5df641636e027e2a75ca3f03f7ca139c090dab30fb9ed905b24d886407b9006e90ebcb64a715 diff --git a/x11-misc/redshift/redshift-1.8.ebuild b/x11-misc/redshift/redshift-1.8.ebuild new file mode 100644 index 000000000000..695dc0f65888 --- /dev/null +++ b/x11-misc/redshift/redshift-1.8.ebuild @@ -0,0 +1,78 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/redshift/redshift-1.8.ebuild,v 1.1 2013/10/23 19:18:10 sping Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit autotools eutils gnome2-utils python-r1 + +DESCRIPTION="A screen color temperature adjusting software" +HOMEPAGE="http://jonls.dk/redshift/" +SRC_URI="https://github.com/jonls/redshift/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="geoclue gnome gtk nls" + +COMMON_DEPEND=">=x11-libs/libX11-1.4 + x11-libs/libXxf86vm + x11-libs/libxcb + geoclue? ( app-misc/geoclue ) + gnome? ( dev-libs/glib:2 + >=gnome-base/gconf-2 ) + gtk? ( ${PYTHON_DEPS} )" +RDEPEND="${COMMON_DEPEND} + gtk? ( >=dev-python/pygtk-2[${PYTHON_USEDEP}] + dev-python/pyxdg[${PYTHON_USEDEP}] )" +DEPEND="${COMMON_DEPEND} + nls? ( sys-devel/gettext )" + +src_prepare() { + epatch_user + eautoreconf +} + +src_configure() { + python_export_best + + econf \ + --disable-silent-rules \ + $(use_enable nls) \ + --enable-randr \ + --enable-vidmode \ + --disable-wingdi \ + $(use_enable gnome gnome-clock) \ + $(use_enable geoclue) \ + $(use_enable gtk gui) \ + --disable-ubuntu +} + +_impl_specific_src_install() { + emake DESTDIR="${D}" pythondir="$(python_get_sitedir)" \ + -C src/redshift-gtk install +} + +src_install() { + default + + if use gtk; then + python_foreach_impl _impl_specific_src_install + python_replicate_script "${D}"/usr/bin/redshift-gtk + fi + + dosym redshift-gtk /usr/bin/gtk-redshift +} + +pkg_preinst() { + use gtk && gnome2_icon_savelist +} + +pkg_postinst() { + use gtk && gnome2_icon_cache_update +} + +pkg_postrm() { + use gtk && gnome2_icon_cache_update +} diff --git a/x11-misc/slim/slim-1.3.5-r4.ebuild b/x11-misc/slim/slim-1.3.5-r4.ebuild index f5c567ea8161..668a8ea9d978 100644 --- a/x11-misc/slim/slim-1.3.5-r4.ebuild +++ b/x11-misc/slim/slim-1.3.5-r4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/slim/slim-1.3.5-r4.ebuild,v 1.1 2013/10/22 14:56:20 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/slim/slim-1.3.5-r4.ebuild,v 1.2 2013/10/23 17:39:27 ago Exp $ EAPI=5 @@ -13,7 +13,7 @@ SRC_URI="mirror://berlios/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~amd64 ~arm ~mips ~ppc ppc64 ~sparc ~x86 ~x86-fbsd" IUSE="branding pam consolekit" REQUIRED_USE="consolekit? ( pam )" diff --git a/x11-misc/slim/slim-1.3.6-r1.ebuild b/x11-misc/slim/slim-1.3.6-r2.ebuild similarity index 95% rename from x11-misc/slim/slim-1.3.6-r1.ebuild rename to x11-misc/slim/slim-1.3.6-r2.ebuild index 102f370f39b2..4a0415343b1f 100644 --- a/x11-misc/slim/slim-1.3.6-r1.ebuild +++ b/x11-misc/slim/slim-1.3.6-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/slim/slim-1.3.6-r1.ebuild,v 1.1 2013/10/17 18:39:31 axs Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/slim/slim-1.3.6-r2.ebuild,v 1.1 2013/10/23 18:05:57 axs Exp $ EAPI=5 @@ -66,6 +66,7 @@ src_install() { if use pam ; then pamd_mimic system-local-login slim auth account session + pamd_mimic system-local-login slimlock auth fi systemd_dounit slim.service diff --git a/x11-themes/icewm-themes/metadata.xml b/x11-themes/icewm-themes/metadata.xml index 4538a68724a6..c9169515bdf5 100644 --- a/x11-themes/icewm-themes/metadata.xml +++ b/x11-themes/icewm-themes/metadata.xml @@ -1,5 +1,8 @@ -maintainer-needed@gentoo.org + + polynomial-c@gentoo.org + Lars Wendler + diff --git a/x11-wm/icewm/metadata.xml b/x11-wm/icewm/metadata.xml index f0e8907162d4..6835f18f6289 100644 --- a/x11-wm/icewm/metadata.xml +++ b/x11-wm/icewm/metadata.xml @@ -1,7 +1,10 @@ -maintainer-needed@gentoo.org + + polynomial-c@gentoo.org + Lars Wendler + IceWM is a window manager designed for speed, usability, and consistency. It is able to emulate the looks of Motif, OS/2, and Windows, and allows you diff --git a/x11-wm/xpra/Manifest b/x11-wm/xpra/Manifest index 7bd86c7d6345..0124b6694d81 100644 --- a/x11-wm/xpra/Manifest +++ b/x11-wm/xpra/Manifest @@ -1,5 +1,5 @@ DIST xpra-0.10.4.tar.bz2 679676 SHA256 dfbe357938790e68a54aee1d7e84e4c82394a9e2e5d9d5b88acbf70b6eac7bed SHA512 f567571cb7d8c73a1bd7a0ebfb3c2b779fe0b6551bb61651ecc736453fce8c2ff76111e8a01d1c01e5ec7293c2be53d3fc1c2c360514e5cfcdcb9871cbe56024 WHIRLPOOL aac715c1c1365de47fd8414fd3d68d42b91469f50e99837a96afc0cd87a056b9c93ca1f6844286e46d1d705bdbe8639bf29bc6d6cc3e873fad9c89dd07fc19d7 -DIST xpra-0.10.6.tar.bz2 679774 SHA256 e1a5fbf4d328300898a2eaa299a6337ce2e4e21524aa3c24c5d82a9c8f7e3776 SHA512 0ff593e91afaa0eb3b0148c6caedc6617872b20ce19b1eedb1ec82851713d848406c9076cca7f0c20a6c3246ddf3e813e7c4604b25e685462a37c79b75f9442b WHIRLPOOL 4a7d574930df7c2cbb0e5f6112b185f544632c6b06290aa799f0eee958d628bb9eb19b83add9ce8f43e5bd64db3d723ae2214ea86cb806b2af9fa249b75a73e0 +DIST xpra-0.10.7.tar.bz2 679975 SHA256 dcf2da3548f88ea42da0327c10476f2da664aed5ac2f50c27495b26b0d4edc1c SHA512 9ec6df6069b7b286b7c44af2046d7d517aebaceb911f85e3bf16b843fc577ed7d669b53e8fc7c2d978ffb9bce549a1e6f3235f0140b4f48ad45c54fbc325f784 WHIRLPOOL f15cbe1f96a04f188b51f08d489d1d3341f1d995fae6ad193cad23ce9715644204e5512e43521a21b2378568cbabb180c7ec69b5c57b4df3fda497f28804034a DIST xpra-0.7.8.tar.bz2 471147 SHA256 27f5d0bc2a369a93076ef90fad46a6354e0327033b9139b659d602e9e32c17cb SHA512 d14fdd75c7fd494f4aaae8740ce1a5a7880ae70109ffa7989d346d1b5add56a8117a5851132140f2e8a3aad0f7f3f4a9fe6e2b2f3e9666e469f35fc179fd0af2 WHIRLPOOL c0ed83f90ade9b3a7b0ab728ab090d73277fecb56edc4943295fa19f211b3e41c12dcad6eec9b01932c0a2bb1a6402f8f88deaf25c7f88be01fcf986778c4fd0 DIST xpra-0.8.8.tar.bz2 581029 SHA256 248bac50c78eccfbc7f728667f9d0ef26b101b288193fa286881cda452e63683 SHA512 b3d2121c13e293cca466997af1b49069ced0012c6692cfac375e9990d62efc916b44f2641a4e9c5e04e425d19c14e85e1521ae1832aa3ea02fcc46ac29672a63 WHIRLPOOL b1f654542e8e89ce89ffb6fac9ee3a42f0c88e6d9ce0fdc1573b28c0b117e970f7e96484eadf7552c35e6dd3064f37495a4eb2cdb1c51c2dc0a8ded8877ba321 DIST xpra-0.9.8.tar.bz2 607316 SHA256 6c33f2da404209158a4684d26365bac56c77d3f158b95710a482e3a813178884 SHA512 324eeb09a2f948ded76a6cb53180ee68dedbce1c9f11736475e43551f9f27cb09949f1f8c1cdc1f5eb5000070a73e58593fac74d7ca3e24d2ddbc69bdf57d70e WHIRLPOOL 77dc3f3e27e1914d4691eb08247d1025a42d438167db178e59a3befdab44c8c02618f46968f5805af886aafb0129c1461a4843cd753f79d10e4bd9c4a07eeb9a diff --git a/x11-wm/xpra/xpra-0.10.6.ebuild b/x11-wm/xpra/xpra-0.10.7.ebuild similarity index 96% rename from x11-wm/xpra/xpra-0.10.6.ebuild rename to x11-wm/xpra/xpra-0.10.7.ebuild index 51da7c49211a..789035702be2 100644 --- a/x11-wm/xpra/xpra-0.10.6.ebuild +++ b/x11-wm/xpra/xpra-0.10.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/xpra/xpra-0.10.6.ebuild,v 1.1 2013/10/21 21:17:09 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/xpra/xpra-0.10.7.ebuild,v 1.1 2013/10/22 18:49:13 xmw Exp $ EAPI=5