diff --git a/app-admin/authbind/Manifest b/app-admin/authbind/Manifest new file mode 100644 index 000000000000..5e42b4d6214e --- /dev/null +++ b/app-admin/authbind/Manifest @@ -0,0 +1 @@ +DIST authbind_2.1.1.tar.gz 14407 SHA256 65b26b83b7ca5aa713524e0aff439f71a0ba8970913768457a22239540a9c73a SHA512 f3a45fcf1d8d6e6762bc1cef7a1b89f211e4af56c68b4c6c5e508a2f7ee039499b8b2f11ce8aeb94822d20377d309035760fa7b58aabaa4e87417ca25811c812 WHIRLPOOL 55098ccd252073403ef88546559bb5fcb268daed06501e82e1b79ab0ce63ea4eaff7335fb40a9d07342947a41e14a1432b53d082f1d8bca9d61bd8b17cabe0d1 diff --git a/app-admin/authbind/authbind-2.1.1.ebuild b/app-admin/authbind/authbind-2.1.1.ebuild new file mode 100644 index 000000000000..78375fa65df4 --- /dev/null +++ b/app-admin/authbind/authbind-2.1.1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/authbind/authbind-2.1.1.ebuild,v 1.1 2013/04/08 13:06:51 dev-zero Exp $ + +EAPI=5 + +inherit eutils multilib flag-o-matic + +DESCRIPTION="Bind sockets to privileged ports without root" +HOMEPAGE="http://www.chiark.greenend.org.uk/ucgi/~ian/git/authbind.git/" +SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_prepare() { + epatch "${FILESDIR}/${P}-respect-flags.patch" +} + +src_configure() { + sed -i \ + -e "s|^prefix=.*|prefix=/usr|" \ + -e "s|^lib_dir=.*|lib_dir=\$(prefix)/$(get_libdir)|" \ + -e "s|^libexec_dir=.*|libexec_dir=\$(prefix)/libexec/authbind|" \ + -e "s|^SHARED_LDFLAGS=.*|SHARED_LDFLAGS=$(raw-ldflags)|" \ + Makefile || die "sed failed" + + sed -i \ + -e 's|/usr/lib|/usr/libexec|' \ + authbind-helper.8 || die "sed failed" +} + +src_install() { + dobin authbind + doman authbind.1 authbind-helper.8 + + ln -s libauthbind.so.* libauthbind.so.$(awk -F= '/MAJOR=/ { print $2 }' < Makefile) + dolib.so libauthbind.so* + + exeinto /usr/libexec/authbind + exeopts -m4755 + doexe helper + + keepdir /etc/authbind/by{addr,port,uid} + + dodoc debian/changelog +} diff --git a/app-admin/authbind/files/authbind-2.1.1-respect-flags.patch b/app-admin/authbind/files/authbind-2.1.1-respect-flags.patch new file mode 100644 index 000000000000..2a9eb5f6b84c --- /dev/null +++ b/app-admin/authbind/files/authbind-2.1.1-respect-flags.patch @@ -0,0 +1,26 @@ +diff --git a/Makefile b/Makefile +index c1eed73..932ea60 100644 +--- a/Makefile ++++ b/Makefile +@@ -34,10 +34,9 @@ INSTALL_PROGRAM ?= install -o root -g root -m 755 -s + INSTALL_DIR ?= install -o root -g root -m 755 -d + STRIP ?= strip + +-OPTIMISE= -O2 +-LDFLAGS= -g + LIBS= -ldl -lc +-CFLAGS= -g $(OPTIMISE) \ ++SHARED_LDFLAGS= ++CFLAGS+= \ + -Wall -Wwrite-strings -Wpointer-arith -Wimplicit \ + -Wnested-externs -Wmissing-prototypes -Wstrict-prototypes + CPPFLAGS= -DMAJOR_VER='"$(MAJOR)"' -DMINOR_VER='"$(MINOR)"' \ +@@ -82,7 +81,7 @@ helper: helper.o + helper.o authbind.o: authbind.h + + $(LIBTARGET): libauthbind.o +- ld -shared -soname $(LIBCANON) -o $@ $< $(LIBS) ++ $(LD) $(SHARED_LDFLAGS) -shared -soname $(LIBCANON) -o $@ $< $(LIBS) + + clean distclean: + rm -f $(TARGETS) *.o *~ ./#*# *.bak *.new core diff --git a/app-admin/authbind/metadata.xml b/app-admin/authbind/metadata.xml new file mode 100644 index 000000000000..5b2a5c55470b --- /dev/null +++ b/app-admin/authbind/metadata.xml @@ -0,0 +1,8 @@ + + + + + dev-zero@gentoo.org + Tiziano Müller + + diff --git a/app-admin/eselect-java/Manifest b/app-admin/eselect-java/Manifest new file mode 100644 index 000000000000..19232198c19e --- /dev/null +++ b/app-admin/eselect-java/Manifest @@ -0,0 +1 @@ +DIST eselect-java-0.1.0.tar.gz 72265 SHA256 035b0c2cb9837b8b3b906cf9d72ec9ebf6e0db3d5e296c2b1c640d0e4a4071f2 SHA512 f8099f394303466ce652f099c16581668544cb4c0ab3c7c8af4b56230c6bdd692e72610be5f522227e874650481554f3b7815da2a4e8d090c31478d399c04e95 WHIRLPOOL 4f2b4432fe46023163b8e8421a505422b6f50599b67892f1b7abfb7b46393aab0590f1ecd69526839392703fed80fb099b8f3e273a34b99da39045c7b8a9cb77 diff --git a/app-admin/eselect-java/eselect-java-0.1.0.ebuild b/app-admin/eselect-java/eselect-java-0.1.0.ebuild new file mode 100644 index 000000000000..7f09ec3cc303 --- /dev/null +++ b/app-admin/eselect-java/eselect-java-0.1.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-java/eselect-java-0.1.0.ebuild,v 1.1 2013/04/08 16:42:06 sera Exp $ + +EAPI=5 + +DESCRIPTION="A set of eselect modules for Java" +HOMEPAGE="http://www.gentoo.org/proj/en/java/" +SRC_URI="http://dev.gentoo.org/~sera/distfiles/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND=" + !app-admin/eselect-ecj + !app-admin/eselect-maven + ! + + +java + + + + diff --git a/app-admin/eselect-php/Manifest b/app-admin/eselect-php/Manifest index 46d783b5a8cb..c6bba4ca91bf 100644 --- a/app-admin/eselect-php/Manifest +++ b/app-admin/eselect-php/Manifest @@ -1,2 +1,2 @@ DIST eselect-php-0.6.2.bz2 1454 SHA256 c4eecb73aaf50538a8eaf8afb0d52b3666b45ef19e5f26f7998682bac56566c4 SHA512 cb2639ddf97c77336195db57a9a5021200693ee4f1382d7ed6cda22a27f5b0f76be88abf376e13245a72223c12065d019e0537494f934f9cbe40e0fdcbfe2b22 WHIRLPOOL 523f3a0c30705599ee91c5ce0a691c140226a18c0a1ba73df4a0f9835a92644748a0f0ed73f1ea101de65cf270947f054a8feeb3c36609f644f8682d611aaa11 -DIST eselect-php-0.7.0.bz2 2252 SHA256 386abbab747e617e18a39d359c816ccd94cdf8048ea51e6e185370be157f0194 SHA512 be36e23bb7940b013941da9d0e73e29184cc55a929c1c59b81ae265203dceed9b040950925eafa723adc041afe6cf841e54f3db0e3d76627e974f075f4528e9e WHIRLPOOL ca7f5507ce37ce8d9b9560797836e6a8610a8a9f61a125858b38a78e7418356a2b9787d92cf09ef13196f379b548710b2ea23b3333aba7e499dd685c0110ab86 +DIST eselect-php-0.7.1.bz2 2251 SHA256 10aa400e2d08bc71989366993f12ddb546a0ea29f191c40e37beba1d11d7abd7 SHA512 a6b4c1475dda9f368d799db7658c50cef7d6f71482a53a186fb1394e7ea1fff3c0ef123c82b7ca4d1e45aadb0a034d36f213fc9450766878a60d28639761cb3d WHIRLPOOL a4e45492068616ff30fd888b0cc64441a6eb6e6656e0107d00bd2cf15360dce15052d4d62089ab89d43e6bb36e126529aa101c70e8bd94a9fc916a5369463e3b diff --git a/app-admin/eselect-php/eselect-php-0.7.0.ebuild b/app-admin/eselect-php/eselect-php-0.7.1.ebuild similarity index 94% rename from app-admin/eselect-php/eselect-php-0.7.0.ebuild rename to app-admin/eselect-php/eselect-php-0.7.1.ebuild index 4b7b034192bc..5417df4c3560 100644 --- a/app-admin/eselect-php/eselect-php-0.7.0.ebuild +++ b/app-admin/eselect-php/eselect-php-0.7.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/app-admin/eselect-php/eselect-php-0.7.0.ebuild,v 1.2 2013/03/25 16:13:04 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/eselect-php/eselect-php-0.7.1.ebuild,v 1.1 2013/04/10 13:25:36 olemarkus Exp $ EAPI=5 diff --git a/app-admin/glance/Manifest b/app-admin/glance/Manifest index 4c9d0d84f60a..4767bb0d221c 100644 --- a/app-admin/glance/Manifest +++ b/app-admin/glance/Manifest @@ -1 +1,2 @@ DIST glance-2012.2.3.tar.gz 638592 SHA256 9431c6cc0d95eb75994b9cd63c9d2c7829edc158f091ca0b0e9208d657183eec SHA512 1df5e9ccba5d1ae2c6ea1fe13dbc867af49ff15ea732f9a6c051dc723a94656c9f312a00e23a84fb44ab50477e65437060b5cbf818b4690cd1f431fa287bb01f WHIRLPOOL 0742259a9b6a9ac6d78b699aae48a7b962482daa0cb414f48c371d4f29bbd8e8ac45858c4dce080f9766b614f612837c831ce6158168d04760fadf7b663d7748 +DIST glance-2013.1.tar.gz 716226 SHA256 f4deee125ee6729daee5315c6aacd9e265c3015692a62ae6aefeadbd3fef7f70 SHA512 9dc8c99b2c26e8b260e94d020fb4401c123c2360c0ad1f616e994b0a562898030d22cb0c0020531132cad5b51beaebc68cc70aaf87d2814498b1dbd58fbd3931 WHIRLPOOL 1899eeb00c02f3f353a7720e2d17f7dd5873909d2a214b250d7325c82ae2d610e5432caeb603ddaabe2178552964650b3b98489fc74bd0136e9e9438a26d9bb7 diff --git a/app-admin/glance/glance-2013.1.ebuild b/app-admin/glance/glance-2013.1.ebuild new file mode 100644 index 000000000000..915b88ac3aca --- /dev/null +++ b/app-admin/glance/glance-2013.1.ebuild @@ -0,0 +1,71 @@ +# 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.1.ebuild,v 1.1 2013/04/10 16:41:21 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Provides services for discovering, registering, and retrieving +virtual machine images with Openstack" +HOMEPAGE="https://launchpad.net/glance" +SRC_URI="http://launchpad.net/${PN}/grizzly/${PV}/+download/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="ldap mysql postgres +sqlite +swift" +REQUIRED_USE="|| ( ldap mysql postgres sqlite )" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND} + dev-python/boto + dev-python/anyjson[${PYTHON_USEDEP}] + >=dev-python/eventlet-0.9.12[${PYTHON_USEDEP}] + >=dev-python/greenlet-0.3.1[${PYTHON_USEDEP}] + dev-python/httplib2[${PYTHON_USEDEP}] + dev-python/iso8601[${PYTHON_USEDEP}] + dev-python/jsonschema[${PYTHON_USEDEP}] + dev-python/kombu[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + >=dev-python/oslo-config-1.1.0[${PYTHON_USEDEP}] + dev-python/passlib[${PYTHON_USEDEP}] + dev-python/paste[${PYTHON_USEDEP}] + dev-python/pastedeploy[${PYTHON_USEDEP}] + dev-python/pycrypto + >=dev-python/python-keystoneclient-0.2.0[${PYTHON_USEDEP}] + dev-python/python-glanceclient[${PYTHON_USEDEP}] + dev-python/routes[${PYTHON_USEDEP}] + >=dev-python/sqlalchemy-migrate-0.7 + >=dev-python/webob-1.2[${PYTHON_USEDEP}] + virtual/python-argparse[${PYTHON_USEDEP}] + swift? ( + >=dev-python/python-swiftclient-1.2[${PYTHON_USEDEP}] + =dev-python/sqlalchemy-0.7[sqlite] + <=dev-python/sqlalchemy-0.7.9[sqlite] ) + mysql? ( >=dev-python/sqlalchemy-0.7[mysql] + <=dev-python/sqlalchemy-0.7.9[mysql] ) + postgres? ( >=dev-python/sqlalchemy-0.7[postgres] + <=dev-python/sqlalchemy-0.7.9[postgres] ) + ldap? ( dev-python/python-ldap )" + +PATCHES=( +) + +python_install() { + distutils-r1_python_install + newconfd "${FILESDIR}/glance.confd" glance + newinitd "${FILESDIR}/glance.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/nova /var/lock/nova + #removed because it conflicts with glanceclient, which we install in rdepend + rm ${D}"/usr/bin/glance" ${D}"/usr/bin/glance-python2.7" +} diff --git a/app-admin/keepass/Manifest b/app-admin/keepass/Manifest index 6a693ae0c3db..f82bbe014ad9 100644 --- a/app-admin/keepass/Manifest +++ b/app-admin/keepass/Manifest @@ -1,2 +1,2 @@ -DIST KeePass-2.20.1-Source.zip 3361753 SHA256 21b9b36f18457b5a4058775b9ba3124d7bc9f2654f78d43a7f7850daafd99213 SHA512 e127935adbbb7e87b1ba3f21b76bdb3ee8eff8e20c7b7589b42b3498db33988b2365fec1bbcf0de51a33267015098232bacebb4bb496fe187ba12b323530f766 WHIRLPOOL 519c08d1fa7a80a9aa81a6012dfb54b75446bc2f655572d139d5ca26d43828115cc4f6b9c344f94f9cf3d62e9d96f3c941d026af29147e6f199c7373c17fc6fb 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 diff --git a/app-admin/keepass/keepass-2.20.1.ebuild b/app-admin/keepass/keepass-2.22.ebuild similarity index 89% rename from app-admin/keepass/keepass-2.20.1.ebuild rename to app-admin/keepass/keepass-2.22.ebuild index fa5554c06de1..cc8e3fafb85f 100644 --- a/app-admin/keepass/keepass-2.20.1.ebuild +++ b/app-admin/keepass/keepass-2.22.ebuild @@ -1,8 +1,8 @@ -# 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-admin/keepass/keepass-2.20.1.ebuild,v 1.1 2012/10/08 08:09:23 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/keepass/keepass-2.22.ebuild,v 1.1 2013/04/09 10:54:20 kensington Exp $ -EAPI=4 +EAPI=5 inherit eutils fdo-mime gnome2-utils mono multilib @@ -26,9 +26,9 @@ S=${WORKDIR} src_prepare() { # Remove Windows-specific things - pushd Build || die + pushd Build > /dev/null || die . PrepMonoDev.sh || die - popd || 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 @@ -89,8 +89,10 @@ pkg_postinst() { fdo-mime_mime_database_update fdo-mime_desktop_database_update - elog "Optional dependencies:" - elog " x11-misc/xdotool (enables autotype)" + if ! has_version x11-misc/xdotool ; then + elog "Optional dependencies:" + elog " x11-misc/xdotool (enables autotype)" + fi } pkg_postrm() { diff --git a/app-admin/logstalgia/logstalgia-1.0.3.ebuild b/app-admin/logstalgia/logstalgia-1.0.3-r1.ebuild similarity index 82% rename from app-admin/logstalgia/logstalgia-1.0.3.ebuild rename to app-admin/logstalgia/logstalgia-1.0.3-r1.ebuild index a5cd5989f95e..8eb44f190547 100644 --- a/app-admin/logstalgia/logstalgia-1.0.3.ebuild +++ b/app-admin/logstalgia/logstalgia-1.0.3-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/app-admin/logstalgia/logstalgia-1.0.3.ebuild,v 1.1 2012/12/07 09:08:26 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/logstalgia/logstalgia-1.0.3-r1.ebuild,v 1.1 2013/04/09 07:12:46 pinkbyte Exp $ EAPI="5" @@ -12,11 +12,9 @@ LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" - RDEPEND="dev-libs/libpcre media-libs/libsdl[opengl] - media-libs/libpng + media-libs/libpng:0= media-libs/sdl-image media-libs/ftgl virtual/jpeg diff --git a/app-admin/sudo/sudo-1.8.6_p7.ebuild b/app-admin/sudo/sudo-1.8.6_p7.ebuild index 2f0f4c0e8e9d..ef2216eb6b00 100644 --- a/app-admin/sudo/sudo-1.8.6_p7.ebuild +++ b/app-admin/sudo/sudo-1.8.6_p7.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/sudo/sudo-1.8.6_p7.ebuild,v 1.1 2013/02/28 05:58:09 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sudo/sudo-1.8.6_p7.ebuild,v 1.4 2013/04/09 13:57:02 jer Exp $ EAPI=4 @@ -23,7 +23,7 @@ SRC_URI="http://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz # 3-clause BSD license LICENSE="ISC BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris" IUSE="ldap nls pam offensive selinux skey" DEPEND="pam? ( virtual/pam ) diff --git a/app-admin/sysklogd/sysklogd-1.5-r2.ebuild b/app-admin/sysklogd/sysklogd-1.5-r2.ebuild index 12b65bde5e3e..95bf2a0a4525 100644 --- a/app-admin/sysklogd/sysklogd-1.5-r2.ebuild +++ b/app-admin/sysklogd/sysklogd-1.5-r2.ebuild @@ -1,6 +1,6 @@ -# 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-admin/sysklogd/sysklogd-1.5-r2.ebuild,v 1.1 2011/09/14 22:22:57 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/sysklogd/sysklogd-1.5-r2.ebuild,v 1.3 2013/04/09 18:24:29 ago Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -12,7 +12,7 @@ SRC_URI="http://www.infodrom.org/projects/sysklogd/download/${P}.tar.gz LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86" IUSE="" RESTRICT="test" diff --git a/app-admin/system-config-printer-common/system-config-printer-common-1.3.12.ebuild b/app-admin/system-config-printer-common/system-config-printer-common-1.3.12.ebuild index c5acaeb0dacb..346fdfd9e85b 100644 --- a/app-admin/system-config-printer-common/system-config-printer-common-1.3.12.ebuild +++ b/app-admin/system-config-printer-common/system-config-printer-common-1.3.12.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/system-config-printer-common/system-config-printer-common-1.3.12.ebuild,v 1.11 2013/04/01 18:23:19 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/system-config-printer-common/system-config-printer-common-1.3.12.ebuild,v 1.12 2013/04/09 16:40:46 ago Exp $ EAPI=4 @@ -16,7 +16,7 @@ HOMEPAGE="http://cyberelk.net/tim/software/system-config-printer/" SRC_URI="http://cyberelk.net/tim/data/${PN/-common}/${PV%.*}/${MY_P}.tar.xz" LICENSE="GPL-2" -KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh sparc x86" +KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 sh sparc x86" SLOT="0" IUSE="doc policykit" diff --git a/app-admin/system-config-printer-gnome/system-config-printer-gnome-1.3.12.ebuild b/app-admin/system-config-printer-gnome/system-config-printer-gnome-1.3.12.ebuild index fbf13530da0a..fe28b073a5f8 100644 --- a/app-admin/system-config-printer-gnome/system-config-printer-gnome-1.3.12.ebuild +++ b/app-admin/system-config-printer-gnome/system-config-printer-gnome-1.3.12.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/system-config-printer-gnome/system-config-printer-gnome-1.3.12.ebuild,v 1.9 2013/04/01 18:23:21 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/system-config-printer-gnome/system-config-printer-gnome-1.3.12.ebuild,v 1.10 2013/04/09 16:40:52 ago Exp $ EAPI="3" @@ -16,7 +16,7 @@ HOMEPAGE="http://cyberelk.net/tim/software/system-config-printer/" SRC_URI="http://cyberelk.net/tim/data/system-config-printer/1.3/${MY_P}.tar.xz" LICENSE="GPL-2" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86" SLOT="0" IUSE="gnome-keyring" diff --git a/app-backup/amanda/amanda-3.3.3.ebuild b/app-backup/amanda/amanda-3.3.3.ebuild index 4179e868f4b8..d07567690078 100644 --- a/app-backup/amanda/amanda-3.3.3.ebuild +++ b/app-backup/amanda/amanda-3.3.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/app-backup/amanda/amanda-3.3.3.ebuild,v 1.2 2013/02/26 23:00:38 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/amanda/amanda-3.3.3.ebuild,v 1.3 2013/04/09 16:27:35 lxnay Exp $ EAPI=3 inherit autotools eutils perl-module user systemd @@ -336,13 +336,10 @@ src_install() { insinto /etc/cron.daily newins "${MYFILESDIR}/amanda-cron" amanda fi - - if use systemd; then - einfo "Installing systemd service and socket files for Amanda" + + einfo "Installing systemd service and socket files for Amanda" systemd_dounit "${FILESDIR}"/amanda.socket || die systemd_newunit "${FILESDIR}"/amanda.service 'amanda@.service' || die - fi - insinto /etc/amanda einfo "Installing .amandahosts File for ${AMANDA_USER_NAME} user" diff --git a/app-benchmarks/phoronix-test-suite/Manifest b/app-benchmarks/phoronix-test-suite/Manifest index 2f8207c04740..1adbec03d8e0 100644 --- a/app-benchmarks/phoronix-test-suite/Manifest +++ b/app-benchmarks/phoronix-test-suite/Manifest @@ -1,6 +1,4 @@ -DIST phoronix-test-suite-2.8.1.tar.gz 465548 SHA256 395a21147c735b8e8b44294d9d541cf04ddeacaccb711b863f6410c8705e2ab9 SHA512 8e2e18467ace84631b21dfd86ffc75657929160700fcc94b9812ee2ff219506c08a6d78826a52340a7e8bb6585426b807bf1149203b3d9f27b2cee828daebfd8 WHIRLPOOL c6905dad94fb5ad891ad0d8fb126465d168636b4134e2098704edf650adc8b41c8b645efbfe66b4ca0db8876a94561789e2ad4ce9edaf4e7a0fc19a6bda7a70a -DIST phoronix-test-suite-3.2.1.tar.gz 399167 SHA256 b5c8d35ece50450e5b50e67d3f6bd67cb41821d5e181551a514344afa9b25962 SHA512 2f96e81212d920466ca1edb6f9f43ddc60b68519d62f6441c8c163b769c7bb87110eee47ee3370e010d0868a0fc23d01bdbed8c3a51e8f17d87b2e773f12e002 WHIRLPOOL 13f95c22c01350362b6cad71c411eb0f5a553fa897dc0f52c7ff00f9da824d27ec3430f0901204e2f5ec3fb963351f6e3045512f3cf1fac5ec1decab52e8062d -DIST phoronix-test-suite-3.8.0.tar.gz 471257 SHA256 951ed041dcf06178b4eb92535b4a6d5c97d62415c85af0feb04a0db3cbb342fb SHA512 74c55145d9fd87c0463307c43f23dee5432193699cb665046b9ccc5c711cef89f9967ca1fa4c6ab236424621e14926e6b7b0e5692829d9efadb8fe3f722713dd WHIRLPOOL c2b94cfaf2b81ae5ec581f1b542c59cc38f37ea5e8aec220fc3aa762ba9e6ca0462290c8293365942d8f37a3262fc812965565778d368ee9c8ab2fc4f172c5da DIST phoronix-test-suite-4.0.1.tar.gz 492587 SHA256 2dd463dbaad8763b73170e94f4ecd3c9b9578ad5d3a67ca82855ab0509a5c90a SHA512 4f56edde1bf097d5f04edd5c7576df0403859e6a9c0b9d034381bb2c4a7a40ccd5e465af45ec523ebc5568052147f4770fdf449ae084c000fd4de6597005a4a7 WHIRLPOOL 7ce3f91d9f7282b4d158c81baac4e3e2794bdbdc33169d4741659169fcd4ba1b85784e365e9e4d9b106a541ee4f3a9eb44661c4fa55e973fe9ced6bc78dfa70c DIST phoronix-test-suite-4.2.0.tar.gz 499461 SHA256 48ee8ecf73702756c6787f686cf217d5c0ae216b7944b013bc86ab95e9c11912 SHA512 7f087b05738817f597cf4578fee93ca740ae5756ab150c48f141aade0157d63d0db941ab731b24977695df7d0a6c11f9cad20fd6539a3e7818c6d4f33cbe669e WHIRLPOOL 9edff49beebc30fd42208c909cc6ff6e08d84eb5cb8aea681715858fb178b0b16392d638232862d1f7a101134d9403c2fd0e00e3c95bb42098ccb55c9333a64d DIST phoronix-test-suite-4.4.0.tar.gz 506243 SHA256 dd42025a785dd4597bdad3620a048af27d069a353e71eb6e057828bf2798108d SHA512 60aa8a7e2aa805cc5a18e420ab3b9971bf28b041b6c59c9212d4bf308d0c29d0bf1314eb7d5b28b2a6b0e0b0341607225d72e3b4ae62916132b9b975b5ae215b WHIRLPOOL c070410d28aaa65d70bafbced09a4ab945e483fed01a2f7289ba9fdebcd422515c6049ae2563f52c4243126dd7e3e5b2d374030636eaf6cd081d99fd1b49b86f +DIST phoronix-test-suite-4.4.1.tar.gz 506975 SHA256 96b4c928241e4847e00109f40b26c1c186e6284264fda747c96db1dbe2f3b3a3 SHA512 e53f4bf6ad4c438775271ccc172220b6da94908bd343737b1355ccfba6cc51f796fea9d73afc2e34010c30e72c2fd6829e7e3eac0c94909648f956595ecd4f84 WHIRLPOOL 46655faf820833f25438741ec5fed0a500593f6ee0df32bea7bd8d9ef09daffac4c283cf98883aa3b66137eefd9f0ca27c0cdda542815d31ac0459734329807f diff --git a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.8.1-r1.ebuild b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.8.1-r1.ebuild deleted file mode 100644 index 5463d2530ba3..000000000000 --- a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.8.1-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/phoronix-test-suite-2.8.1-r1.ebuild,v 1.4 2011/12/14 22:55:55 mabi Exp $ - -EAPI=4 - -inherit eutils - -DESCRIPTION="Phoronix's comprehensive, cross-platform testing and benchmark suite" -HOMEPAGE="http://www.phoronix-test-suite.com" -SRC_URI="http://www.phoronix-test-suite.com/download.php?file=${P} -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" - -# php 5.3 doesn't have pcre useflag anymore -RDEPEND=">=dev-lang/php-5.2[cli,curl,gd,posix,pcntl,pcre(+),truetype] - app-arch/unzip - dev-php/pecl-ps" - -S="${WORKDIR}/${PN}" - -src_prepare() { - epatch "${FILESDIR}"/font.patch - sed -i -e "s,export PTS_DIR=\`pwd\`,export PTS_DIR=\"/usr/share/${PN}\"," \ - phoronix-test-suite -} - -src_configure() { - : -} - -src_compile() { - : -} - -src_install() { - dodir /usr/share/${PN} - insinto /usr/share/${PN} - doins -r {pts,pts-core} - - doman documentation/man-pages/phoronix-test-suite.1 - dodoc AUTHORS CHANGE-LOG - dohtml README.html - - exeinto /usr/bin - doexe phoronix-test-suite - - # this is horribly ugly because fperms uses absolute relative paths, so we have one ${D} wrongly added in - # ... so we use parameter expansion to remove it, and add a trailing slash because argh noooes - for i in ${D}usr/share/${PN}/pts/test-resources/*/*.sh ${D}/usr/share/${PN}/pts/base-test-resources/*/*.sh ${D}/usr/share/${PN}/pts-core/test-libraries/*.sh; do - fperms a+x /${i#${D}} - done - - # Need to fix the cli-php config for downloading to work. Very naughty! - dodir /etc/php/cli-php5 - cp /etc/php/cli-php5/php.ini "${D}/etc/php/cli-php5/php.ini" - sed -e 's|^allow_url_fopen .*|allow_url_fopen = On|g' -i "${D}/etc/php/cli-php5/php.ini" -} diff --git a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-3.8.0.ebuild b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-3.8.0.ebuild deleted file mode 100644 index b9278b5a092c..000000000000 --- a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-3.8.0.ebuild +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/phoronix-test-suite-3.8.0.ebuild,v 1.1 2012/03/22 06:31:23 patrick Exp $ - -EAPI=4 - -inherit eutils bash-completion - -DESCRIPTION="Phoronix's comprehensive, cross-platform testing and benchmark suite" -HOMEPAGE="http://www.phoronix-test-suite.com" -SRC_URI="http://www.phoronix-test-suite.com/download.php?file=${P} -> ${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="" - -# php 5.3 doesn't have pcre and reflection useflags anymore -RDEPEND="dev-lang/php:5.3[cli,curl,gd,json,posix,pcntl,truetype,zip] - dev-php/pecl-ps" - -S="${WORKDIR}/${PN}" - -src_prepare() { - sed -i -e "s,export PTS_DIR=\`pwd\`,export PTS_DIR=\"/usr/share/${PN}\"," \ - phoronix-test-suite -} - -src_configure() { - : -} - -src_compile() { - : -} - -src_install() { - dodir /usr/share/${PN} - insinto /usr/share/${PN} - - doman documentation/man-pages/phoronix-test-suite.1 - dodoc AUTHORS CHANGE-LOG - dohtml -r documentation/ - doicon pts-core/static/images/phoronix-test-suite.png - doicon pts-core/static/images/openbenchmarking.png - domenu pts-core/static/phoronix-test-suite.desktop - rm -f pts-core/static/phoronix-test-suite.desktop - - doins -r pts-core - exeinto /usr/bin - doexe phoronix-test-suite - - fperms a+x /usr/share/${PN}/pts-core/static/scripts/root-access.sh - fperms a+x /usr/share/${PN}/pts-core/external-test-dependencies/scripts/install-gentoo-packages.sh - - dobashcompletion pts-core/static/bash_completion ${PN} - - # Need to fix the cli-php config for downloading to work. Very naughty! - local slots - local slot - if [[ "x${PHP_TARGETS}" == "x" ]] ; then - ewarn - ewarn "PHP_TARGETS seems empty, php.ini file can't be configure." - ewarn "Make sure that PHP_TARGETS in /etc/make.conf is set." - ewarn "phoronix-test-suite needs the 'allow_url_fopen' option set to \"On\"" - ewarn "for downloading to work properly." - ewarn - else - for slot in ${PHP_TARGETS}; do - slots+=" ${slot/-/.}" - done - fi - - for slot in ${slots}; do - local PHP_INI_FILE="/etc/php/cli-${slot}/php.ini" - if [[ -f ${PHP_INI_FILE} ]] ; then - dodir $(dirname ${PHP_INI_FILE}) - cp ${PHP_INI_FILE} "${D}${PHP_INI_FILE}" - sed -e 's|^allow_url_fopen .*|allow_url_fopen = On|g' -i "${D}${PHP_INI_FILE}" - else - if [[ "x$(eselect php show cli)" == "x${slot}" ]] ; then - ewarn - ewarn "${slot} hasn't a php.ini file." - ewarn "phoronix-test-suite needs the 'allow_url_fopen' option set to \"On\"" - ewarn "for downloading to work properly." - ewarn "Check that your PHP_INI_VERSION is set during ${slot} merge" - ewarn - else - elog - elog "${slot} hasn't a php.ini file." - elog "phoronix-test-suite may need the 'allow_url_fopen' option set to \"On\"" - elog "for downloading to work properly if you switch to ${slot}" - elog "Check that your PHP_INI_VERSION is set during ${slot} merge" - elog - fi - fi - done - - ewarn - ewarn "If you upgrade from phoronix-test-suite-2*, you should reinstall all" - ewarn "your tests because" - ewarn " \$HOME/.phoronix-test-suite/installed-tests/\$TEST_NAME/" - ewarn "moves to" - ewarn " \$HOME/.phoronix-test-suite/installed-tests/pts/\$TEST_NAME-\$TEST_VERSION/" - ewarn "in phoronix-test-suite-3* version. The \$TEST_VERSION can be find in" - ewarn "pts-install.xml file." - ewarn -} diff --git a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-3.2.1.ebuild b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-4.4.1.ebuild similarity index 93% rename from app-benchmarks/phoronix-test-suite/phoronix-test-suite-3.2.1.ebuild rename to app-benchmarks/phoronix-test-suite/phoronix-test-suite-4.4.1.ebuild index b6d7c39c8655..9825ac2650d4 100644 --- a/app-benchmarks/phoronix-test-suite/phoronix-test-suite-3.2.1.ebuild +++ b/app-benchmarks/phoronix-test-suite/phoronix-test-suite-4.4.1.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-benchmarks/phoronix-test-suite/phoronix-test-suite-3.2.1.ebuild,v 1.3 2012/03/22 06:17:30 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-benchmarks/phoronix-test-suite/phoronix-test-suite-4.4.1.ebuild,v 1.1 2013/04/10 08:56:01 patrick Exp $ EAPI=4 -inherit eutils bash-completion +inherit eutils bash-completion-r1 DESCRIPTION="Phoronix's comprehensive, cross-platform testing and benchmark suite" HOMEPAGE="http://www.phoronix-test-suite.com" @@ -18,7 +18,7 @@ IUSE="" DEPEND="" # php 5.3 doesn't have pcre and reflection useflags anymore -RDEPEND="dev-lang/php:5.3[cli,curl,gd,json,posix,pcntl,truetype,zip] +RDEPEND="dev-lang/php[cli,curl,gd,json,posix,pcntl,truetype,zip] dev-php/pecl-ps" S="${WORKDIR}/${PN}" diff --git a/app-crypt/heimdal/files/heimdal_texinfo-5.patch b/app-crypt/heimdal/files/heimdal_texinfo-5.patch new file mode 100644 index 000000000000..b16a90cefdb0 --- /dev/null +++ b/app-crypt/heimdal/files/heimdal_texinfo-5.patch @@ -0,0 +1,28 @@ +--- a/doc/whatis.texi ++++ b/doc/whatis.texi +@@ -35,10 +35,11 @@ services can authenticate each other. + @end macro + @end ifinfo + +-@tex +-@def@xsub#1{$_{#1}$} +-@global@let@sub=@xsub +-@end tex ++@iftex ++@macro sub{arg} ++@textsubscript{\arg\} ++@end macro ++@end iftex + + @ifhtml + @macro sub{arg} +--- a/doc/win2k.texi ++++ b/doc/win2k.texi +@@ -311,4 +311,5 @@ Other useful programs include these: + + @itemize @bullet + @item pwdump2 +-@uref{http://www.bindview.com/Support/RAZOR/Utilities/Windows/pwdump2_readme.cfm}@end itemize ++@uref{http://www.bindview.com/Support/RAZOR/Utilities/Windows/pwdump2_readme.cfm} ++@end itemize + diff --git a/app-crypt/heimdal/heimdal-1.5.3.ebuild b/app-crypt/heimdal/heimdal-1.5.3.ebuild index be99e866f83a..71ebfcdc8493 100644 --- a/app-crypt/heimdal/heimdal-1.5.3.ebuild +++ b/app-crypt/heimdal/heimdal-1.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/app-crypt/heimdal/heimdal-1.5.3.ebuild,v 1.13 2013/03/11 07:38:47 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/heimdal/heimdal-1.5.3.ebuild,v 1.14 2013/04/08 13:47:50 eras Exp $ EAPI=4 # PYTHON_BDEPEND="2" @@ -51,6 +51,7 @@ src_prepare() { epatch "${FILESDIR}/heimdal_disable-check-iprop.patch" epatch "${FILESDIR}/heimdal_link_order.patch" epatch "${FILESDIR}/heimdal_missing_symbols.patch" + epatch "${FILESDIR}/heimdal_texinfo-5.patch" eautoreconf } diff --git a/app-crypt/shishi/Manifest b/app-crypt/shishi/Manifest index 0f01ec14a479..5adc5265bc68 100644 --- a/app-crypt/shishi/Manifest +++ b/app-crypt/shishi/Manifest @@ -1 +1,2 @@ DIST shishi-1.0.1.tar.gz 4999488 SHA256 9d7e4738df21116422585b347ad1c985d2bafd32c8665b4c5563617573e2868d SHA512 cb24baae75072e7ee20946d1d15a16c8a77e44f110f88e5f17e64d5e0110c0a00f18e8651b6f162a6e13c1a39b248ca03849c3d8ae4f8d7512dbc77f54f8d98c WHIRLPOOL 45b92a57b8b3a06a7a84160bacdc370883d8a9417f4f9b6feef36e5d6654d8db79695623265cfae6982a60679a3041741a3cbd4dafa4c75b91aebc7c08dd5e1c +DIST shishi-1.0.2.tar.gz 4917167 SHA256 0d9c8113feb22ee574187413c564140e3fa8c67fa4601fb073aec9cbc471580c SHA512 4f39b8d8cb5fbb9f2cedb55eb69620b0bc5d65a7859152db905aeafec7f2b93af459d427d06eb40fbd2870b18eb25e52c52ab0c0a265654f9ab2c3c0f7b98bab WHIRLPOOL bc96b441b37c53619acd9e5da71d0a35cbe39ca3a60fe259eba478cb7616b41fce2e663f6ce636bdccd5df93c534a3016b97540249baa13e851bb0af350b8bed diff --git a/app-crypt/shishi/files/shishi-1.0.2_automake-1.12.patch b/app-crypt/shishi/files/shishi-1.0.2_automake-1.12.patch new file mode 100644 index 000000000000..a1593c6a57ae --- /dev/null +++ b/app-crypt/shishi/files/shishi-1.0.2_automake-1.12.patch @@ -0,0 +1,24 @@ +bug #424095 +--- a/configure.ac 2012-03-12 11:18:21.000000000 -0700 ++++ b/configure.ac 2012-07-08 15:43:18.597050382 -0700 +@@ -43,6 +43,9 @@ + AC_HEADER_STDC + AC_CHECK_HEADERS(termios.h pwd.h syslog.h resolv.h arpa/nameser.h netinet/in6.h) + ++# Defined for >= automake 1.12 ++m4_ifdef([AM_PROG_AR],[AM_PROG_AR]) ++ + # Used when creating libshishi-XX.def. + SOVERSION=`expr ${LT_CURRENT} - ${LT_AGE}` + AC_SUBST(SOVERSION) +--- a/m4/po.m4 2012-03-12 11:18:53.000000000 -0700 ++++ b/m4/po.m4 2012-07-08 14:59:00.247043443 -0700 +@@ -24,7 +24,7 @@ + [ + AC_REQUIRE([AC_PROG_MAKE_SET])dnl + AC_REQUIRE([AC_PROG_INSTALL])dnl +- AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake ++ AC_REQUIRE([AC_PROG_MKDIR_P])dnl defined by automake + AC_REQUIRE([AM_NLS])dnl + + dnl Release version of the gettext macros. This is used to ensure that diff --git a/app-crypt/shishi/shishi-1.0.2.ebuild b/app-crypt/shishi/shishi-1.0.2.ebuild new file mode 100644 index 000000000000..072631b61944 --- /dev/null +++ b/app-crypt/shishi/shishi-1.0.2.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/app-crypt/shishi/shishi-1.0.2.ebuild,v 1.1 2013/04/08 14:31:20 eras Exp $ + +EAPI=5 +inherit autotools eutils flag-o-matic multilib + +DESCRIPTION="A free implementation of the Kerberos 5 network security system" +HOMEPAGE="https://www.gnu.org/software/shishi/" +SRC_URI="mirror://gnu/shishi/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="gnutls idn ipv6 nls pam +des +3des +aes +md +null +arcfour static-libs" + +DEPEND="gnutls? ( net-libs/gnutls ) + idn? ( net-dns/libidn ) + dev-libs/libtasn1 + dev-libs/libgcrypt + dev-libs/libgpg-error + virtual/libiconv + virtual/libintl" +RDEPEND="${DEPEND}" + +src_prepare() { + # fix building with automake-1.12 bug #424095 + epatch "${FILESDIR}/${P}_automake-1.12.patch" + + # don't create a new database + sed -i -e '/install-data-hook/s/^/#/' Makefile.am || die + + eautoreconf +} + +src_configure() { + econf \ + $(use_enable pam) \ + $(use_enable nls) \ + $(use_enable ipv6) \ + $(use_with idn libidn-prefix) \ + $(use_enable gnutls starttls) \ + $(use_enable des) \ + $(use_enable 3des) \ + $(use_enable aes) \ + $(use_enable md) \ + $(use_enable null) \ + $(use_enable arcfour) \ + $(use_enable static-libs static) \ + --with-libgcrypt \ + --with-html-dir=/usr/share/doc/${P} \ + --with-db-dir=/var/shishi \ + --with-pam-dir=/$(get_libdir)/security \ + --disable-rpath \ + --with-packager="Gentoo" \ + --with-packager-bug-reports="https://bugs.gentoo.org/" +} + +src_install() { + emake DESTDIR="${D}" install + + keepdir /var/shishi + fperms 0700 /var/shishi + echo "db file /var/shishi" >> "${D}/etc/shishi/shisa.conf" || die + + newinitd "${FILESDIR}/shishid.init" shishid + newconfd "${FILESDIR}/shishid.confd" shishid + + dodoc AUTHORS ChangeLog INSTALL NEWS README THANKS + doman doc/man/* doc/*.1 + dohtml doc/reference/html/* + doinfo doc/*.info* + + rm -f "${D}/$(get_libdir)/security/pam_shishi.la" + use static-libs || find "${D}"/usr/lib* -name '*.la' -delete +} diff --git a/app-crypt/truecrypt/truecrypt-7.1a.ebuild b/app-crypt/truecrypt/truecrypt-7.1a.ebuild index 87eca808d266..e40c51bec8a2 100644 --- a/app-crypt/truecrypt/truecrypt-7.1a.ebuild +++ b/app-crypt/truecrypt/truecrypt-7.1a.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/app-crypt/truecrypt/truecrypt-7.1a.ebuild,v 1.5 2012/12/22 00:10:44 alonbl Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/truecrypt/truecrypt-7.1a.ebuild,v 1.6 2013/04/09 10:14:47 ssuominen Exp $ EAPI="4" @@ -17,7 +17,7 @@ KEYWORDS="-* ~amd64 ~ppc ~x86" IUSE="X +asm" RESTRICT="mirror fetch bindist" -RDEPEND="|| ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) +RDEPEND=">=sys-fs/lvm2-2.02.45 sys-fs/fuse x11-libs/wxGTK:2.8[X?] app-admin/sudo" diff --git a/app-emulation/vboxgtk/vboxgtk-0.8.2-r1.ebuild b/app-emulation/vboxgtk/vboxgtk-0.8.2-r1.ebuild index 5c16f477806c..852e0c4b383c 100644 --- a/app-emulation/vboxgtk/vboxgtk-0.8.2-r1.ebuild +++ b/app-emulation/vboxgtk/vboxgtk-0.8.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/app-emulation/vboxgtk/vboxgtk-0.8.2-r1.ebuild,v 1.4 2013/01/06 19:03:54 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/vboxgtk/vboxgtk-0.8.2-r1.ebuild,v 1.5 2013/04/10 14:26:52 mgorny Exp $ EAPI=5 PYTHON_COMPAT=( python2_6 python2_7 ) @@ -27,9 +27,9 @@ DEPEND="dev-util/intltool DOCS=( AUTHORS README ) python_prepare_all() { - distutils-r1_python_prepare_all rm_locale() { rm -r po/"${1}".po || die "LINGUAS removal failed" ;} l10n_for_each_disabled_locale_do rm_locale + distutils-r1_python_prepare_all } pkg_preinst() { diff --git a/app-emulation/virtualbox-additions/metadata.xml b/app-emulation/virtualbox-additions/metadata.xml index b44b543b7cc7..cefd27ea325b 100644 --- a/app-emulation/virtualbox-additions/metadata.xml +++ b/app-emulation/virtualbox-additions/metadata.xml @@ -1,7 +1,6 @@ - proxy-maintainers polynomial-c@gentoo.org Lars Wendler @@ -10,8 +9,4 @@ patrick@gentoo.org Patrick Lauer - - swapon@gmail.com - Alessio Cassibba - diff --git a/app-emulation/virtualbox-bin/metadata.xml b/app-emulation/virtualbox-bin/metadata.xml index 3e0c41cc367e..8ad5c4d1f45c 100644 --- a/app-emulation/virtualbox-bin/metadata.xml +++ b/app-emulation/virtualbox-bin/metadata.xml @@ -1,15 +1,10 @@ - proxy-maintainers patrick@gentoo.org Patrick Lauer - - swapon@gmail.com - Alessio Cassibba - Install Guest System Tools ISO Install kchmviewer binary to enable online help (in MS CHM format) diff --git a/app-emulation/virtualbox-guest-additions/metadata.xml b/app-emulation/virtualbox-guest-additions/metadata.xml index 749d4be9ad3a..e71fc2f6ed3d 100644 --- a/app-emulation/virtualbox-guest-additions/metadata.xml +++ b/app-emulation/virtualbox-guest-additions/metadata.xml @@ -1,15 +1,10 @@ - proxy-maintainers patrick@gentoo.org Patrick Lauer - - swapon@gmail.com - Alessio Cassibba - polynomial-c@gentoo.org Lars Wendler diff --git a/app-emulation/virtualbox-modules/metadata.xml b/app-emulation/virtualbox-modules/metadata.xml index 0d37fbcb5d50..7401e9b14556 100644 --- a/app-emulation/virtualbox-modules/metadata.xml +++ b/app-emulation/virtualbox-modules/metadata.xml @@ -1,7 +1,6 @@ - proxy-maintainers polynomial-c@gentoo.org Lars Wendler @@ -10,10 +9,6 @@ patrick@gentoo.org Patrick Lauer - - swapon@gmail.com - Alessio Cassibba - Apply patch needed for pax enabled kernels diff --git a/app-emulation/virtualbox/metadata.xml b/app-emulation/virtualbox/metadata.xml index 572e854dcb72..0622c0598deb 100644 --- a/app-emulation/virtualbox/metadata.xml +++ b/app-emulation/virtualbox/metadata.xml @@ -1,7 +1,6 @@ - proxy-maintainers polynomial-c@gentoo.org Lars Wendler @@ -10,10 +9,6 @@ patrick@gentoo.org Patrick Lauer - - swapon@gmail.com - Alessio Cassibba - Install Guest System Tools ISO Install extension module packages diff --git a/app-i18n/cstools/cstools-3.42.ebuild b/app-i18n/cstools/cstools-3.42.ebuild index bb31ecc996b5..2a1588cd2ab0 100644 --- a/app-i18n/cstools/cstools-3.42.ebuild +++ b/app-i18n/cstools/cstools-3.42.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-i18n/cstools/cstools-3.42.ebuild,v 1.6 2013/01/20 09:56:31 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-i18n/cstools/cstools-3.42.ebuild,v 1.8 2013/04/09 18:26:49 ago Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://www.adelton.com/perl/Cstools/${MY_P}.tar.gz" HOMEPAGE="http://www.adelton.com/perl/Cstools/" SLOT="0" LICENSE="Artistic" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="dev-perl/MIME-tools" diff --git a/app-misc/esekeyd/Manifest b/app-misc/esekeyd/Manifest index 914797f9ede8..5fc88afa7e5a 100644 --- a/app-misc/esekeyd/Manifest +++ b/app-misc/esekeyd/Manifest @@ -1 +1,2 @@ DIST esekeyd-1.2.6.tar.gz 102077 SHA256 3c7ac45d93400dbe962001ba1862cc12f2af5fd40734d3d9978e1c8bedb64fb8 SHA512 04dd41d155c39ff4d2c3931a9aed647f2e767173157aef317217a9eb1cab4021dfb4603798f591b2fec1cb47b72b680698d6518e24425b6c8671fa4ebadd6652 WHIRLPOOL ad5168e3a32ab9e1ad58a4afef6ac3679930b8e0c0f040094ed41fc6e1c8bb2e6130a489ed0ae3c55f020af90f46eeea2d3748ec2218138b936167895c36510b +DIST esekeyd-1.2.7.tar.gz 104502 SHA256 58bdac994be805d9c11b21065427c8f53684d38a1b44bb02b175fc4ee594cc56 SHA512 dc15623e0ffdd4cc7f3834b2becabf54ce61ea5190fd44734b2aa426db3d936cb5e3caada82357d6ed41db6eba41e9f792e453e2bb93c0fe62d87ac29651c89a WHIRLPOOL 75498558448fb7cf91ce79bdec21e6f3a14a582206398065e66e583ffe038bfc61e7541f3312f680492f9de600275274a6e4027c43c4b203fbbec01ea3afc94f diff --git a/app-misc/esekeyd/esekeyd-1.2.7.ebuild b/app-misc/esekeyd/esekeyd-1.2.7.ebuild new file mode 100644 index 000000000000..7486ef2c39da --- /dev/null +++ b/app-misc/esekeyd/esekeyd-1.2.7.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/esekeyd/esekeyd-1.2.7.ebuild,v 1.1 2013/04/10 09:04:54 pinkbyte Exp $ + +EAPI=5 + +DESCRIPTION="Multimedia key daemon that uses the Linux event interface" +HOMEPAGE="http://freshmeat.net/projects/esekeyd/" +SRC_URI="http://www.burghardt.pl/files/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86" + +DOCS=( AUTHORS ChangeLog examples/example.conf NEWS README TODO ) diff --git a/app-misc/fixdos/fixdos-1.3.1-r1.ebuild b/app-misc/fixdos/fixdos-1.3.1-r1.ebuild new file mode 100644 index 000000000000..87842c273a96 --- /dev/null +++ b/app-misc/fixdos/fixdos-1.3.1-r1.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/app-misc/fixdos/fixdos-1.3.1-r1.ebuild,v 1.1 2013/04/09 11:54:32 pinkbyte Exp $ + +EAPI=5 + +MY_P="fixDos-${PV}" +inherit eutils toolchain-funcs + +DESCRIPTION="Set of utilities such as crlf which converts files between UNIX and DOS newlines" +HOMEPAGE="http://e.co.za/marius/" +SRC_URI="http://e.co.za/marius/downloads/misc/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + epatch "${FILESDIR}"/${P}-gentoo-makefile.diff + epatch_user + tc-export CC +} + +src_install() { + emake INSTALLDIR="${ED}/usr/bin" install + dodoc Changelog README +} diff --git a/app-misc/fslint/fslint-2.42.ebuild b/app-misc/fslint/fslint-2.42.ebuild index d19b01a5b36c..a114fbfe6643 100644 --- a/app-misc/fslint/fslint-2.42.ebuild +++ b/app-misc/fslint/fslint-2.42.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-misc/fslint/fslint-2.42.ebuild,v 1.2 2013/03/29 18:31:15 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/fslint/fslint-2.42.ebuild,v 1.3 2013/04/09 15:49:50 tomwij Exp $ EAPI="5" @@ -9,7 +9,7 @@ PYTHON_DEPEND="2" inherit eutils python DESCRIPTION="An utility to find various forms of lint on a filesystem." -HOMEPAGE="http://www.pixelbeat.org/${PN}/" +HOMEPAGE="http://www.pixelbeat.org/fslint/" SRC_URI="http://www.pixelbeat.org/${PN}/${P}.tar.gz" LICENSE="GPL-2" @@ -23,10 +23,10 @@ RDEPEND="dev-python/pygtk:2" src_prepare() { python_convert_shebangs -r 2 . - # Change some paths to make fslint-gui run when installed in /usr/bin. + # Change some paths to make ${PN}-gui run when installed in /usr/bin. sed -e "s:^liblocation=.*$:liblocation='${EROOT}usr/share/${PN}' #Gentoo:" \ -e "s:^locale_base=.*$:locale_base=None #Gentoo:" \ - -i fslint-gui || die "sed failed" + -i ${PN}-gui || die "sed failed" } src_install() { @@ -53,7 +53,7 @@ src_install() { domenu ${PN}.desktop dodoc doc/{FAQ,NEWS,README,TODO} - doman man/{fslint.1,fslint-gui.1} + doman man/${PN}{.1,-gui.1} if use nls ; then cd po diff --git a/app-misc/glcdprocdriver/glcdprocdriver-0.0.6.ebuild b/app-misc/glcdprocdriver/glcdprocdriver-0.0.6.ebuild index c3bac88c16c5..be05a188bf8e 100644 --- a/app-misc/glcdprocdriver/glcdprocdriver-0.0.6.ebuild +++ b/app-misc/glcdprocdriver/glcdprocdriver-0.0.6.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-misc/glcdprocdriver/glcdprocdriver-0.0.6.ebuild,v 1.1 2013/03/14 08:40:18 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/glcdprocdriver/glcdprocdriver-0.0.6.ebuild,v 1.2 2013/04/09 16:26:14 tomwij Exp $ EAPI="5" @@ -14,7 +14,8 @@ KEYWORDS="~amd64 ~ppc ~x86" SLOT="0" LICENSE="GPL-2" -DEPEND=">=app-misc/graphlcd-base-0.1.3" +DEPEND=">=app-misc/graphlcd-base-0.1.3 + sys-libs/glibc" RDEPEND=${DEPEND} src_compile() { diff --git a/app-misc/grabcartoons/grabcartoons-2.4.ebuild b/app-misc/grabcartoons/grabcartoons-2.4.ebuild index ba55999bcee4..14ede0ab8e0e 100644 --- a/app-misc/grabcartoons/grabcartoons-2.4.ebuild +++ b/app-misc/grabcartoons/grabcartoons-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/app-misc/grabcartoons/grabcartoons-2.4.ebuild,v 1.1 2013/03/14 08:46:47 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/grabcartoons/grabcartoons-2.4.ebuild,v 1.2 2013/04/09 16:36:17 tomwij Exp $ EAPI="5" @@ -12,9 +12,15 @@ LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" -RDEPEND="dev-lang/perl" +RDEPEND="dev-lang/perl + virtual/perl-Getopt-Long" src_install() { emake PREFIX="${D}"/usr install dodoc ChangeLog README } + +# Opens a web page, which is unacceptable during an emerge. +src_test() { + : +} diff --git a/app-misc/lcdproc/lcdproc-0.5.6.ebuild b/app-misc/lcdproc/lcdproc-0.5.6.ebuild index 6c31f14cf819..47fd72047e78 100644 --- a/app-misc/lcdproc/lcdproc-0.5.6.ebuild +++ b/app-misc/lcdproc/lcdproc-0.5.6.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-misc/lcdproc/lcdproc-0.5.6.ebuild,v 1.1 2013/03/14 08:56:28 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/lcdproc/lcdproc-0.5.6.ebuild,v 1.2 2013/04/09 16:55:50 tomwij Exp $ EAPI="5" inherit multilib versionator @@ -10,7 +10,7 @@ MY_P=${PN}-${MY_PV} S=${WORKDIR}/${MY_P} DESCRIPTION="Client/Server suite to drive all kinds of LCD (-like) devices" -HOMEPAGE="http://${PN}.org/" +HOMEPAGE="http://lcdproc.org/" SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" LICENSE="GPL-2" diff --git a/app-misc/nut/Manifest b/app-misc/nut/Manifest index 415adbb30c85..1a43b4a096ac 100644 --- a/app-misc/nut/Manifest +++ b/app-misc/nut/Manifest @@ -1,2 +1,2 @@ DIST nut-18.5.tar.gz 1331213 SHA256 45c959fe2839a41726fde647b78175c45d4f0d9fb59dc8da1e828103b7fd5507 SHA512 d598532247611556cc4d8fb5d70bcbfc6978f8b1176a9c5a1ccf05df71fa50bac81045ff39c6ddb0344023fa128def12635c21da9b87876278159912a7eeab45 WHIRLPOOL 0c196a3afa40ae1cb31e987f4627d818ccc94166ea816930567ff7d728d862d8a372701747d8b197424aa61b653c866cc5878f7ac8a34b8a9bdcda8d28023cd9 -DIST nut-18.6.tar.gz 1634835 SHA256 4d49c9f9f29339f615549c900172e2e9e3a32fb555a5ea54ea46e3b07f952a58 SHA512 572ca4a0a16d0641e30a1de2e0565f43d0aee02fd80ebfd8ab7c0405bc574c8476468138a9edddbfdc294ffcc73175e45f3414565cc87316a238bda75ad1d592 WHIRLPOOL c1937beb93c8437c5cf7ae073c2c53cece10d20087695fbb6eb88daca0a34027c3cea5f79f70cd1a88613bfff8847a34bd3f86599b15dc3742f52b0bda24c81f +DIST nut-18.7.tar.gz 1337114 SHA256 0bd35bbb5daab52d0a0270ac1955651cfbfd2f053e171f98cf5fb5bac1a9cdfb SHA512 cdcbe69eb5e6bb53e32a2e00773d88a3dba2b38b966b337e9b95da29e4682cd6b71b401e58070e6f9e4b9573a01c0663a01af86737fe1b0dbd87a8a1ca7c1b49 WHIRLPOOL ff53d764c3d096c701b1f78d438c7c6de217f2082b53601e5ce2ce3a258b0ac2f36d3ede501f2a73f1aa3b3e758b3584583ccce04f9d46ebc1f179369ceb8437 diff --git a/app-misc/nut/files/nut-18.7-fltk-linking.patch b/app-misc/nut/files/nut-18.7-fltk-linking.patch new file mode 100644 index 000000000000..bd35c4276d71 --- /dev/null +++ b/app-misc/nut/files/nut-18.7-fltk-linking.patch @@ -0,0 +1,20 @@ +--- nut-18.7/fltk/Makefile ++++ nut-18.7/fltk/Makefile +@@ -5,7 +5,7 @@ + NUTDIR := \".nutdb\" + FOODDIR := \"$(libdir)\" + EXECUTABLE := Nut +-LIBS := `fltk-config --libs` ++LIBS := `fltk-config --ldflags` + + OS := $(shell uname -s) + ifeq ($(OS),HP-UX) +@@ -31,7 +31,7 @@ + OBJS := ../anameal.o ../db.o ../food.o ../meal.o ../options.o ../prtmenu.o ../ranking.o ../recmeal.o ../trendy.o ../util.o $(patsubst %.cc,%.o,$(SOURCE)) + + nut: $(OBJS) +- $(CXX) $(OPT) $(LDFLAGS) `fltk-config --ldflags` -o $(EXECUTABLE) $(OBJS) $(LIBS) ++ $(CXX) $(OPT) $(LDFLAGS) -o $(EXECUTABLE) $(OBJS) $(LIBS) + + deps: + makedepend -Y.. ../anameal.c ../db.c ../food.c ../meal.c ../options.c ../prtmenu.c ../recmeal.c ../util.c *.cc >/dev/null 2>&1 diff --git a/app-misc/nut/nut-18.6.ebuild b/app-misc/nut/nut-18.7.ebuild similarity index 64% rename from app-misc/nut/nut-18.6.ebuild rename to app-misc/nut/nut-18.7.ebuild index 1c7e1b305a82..cbacb1173b5e 100644 --- a/app-misc/nut/nut-18.6.ebuild +++ b/app-misc/nut/nut-18.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/app-misc/nut/nut-18.6.ebuild,v 1.1 2013/04/07 02:47:34 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/nut/nut-18.7.ebuild,v 1.1 2013/04/09 04:35:05 radhermit Exp $ EAPI=5 inherit eutils toolchain-funcs @@ -13,8 +13,12 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86" +src_prepare() { + epatch "${FILESDIR}"/${P}-fltk-linking.patch +} + src_compile() { - emake CC="$(tc-getCC)" OPT="${CFLAGS}" FOODDIR=\\\"/usr/share/nut\\\" + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" OPT="${CFLAGS}" FOODDIR=\\\"/usr/share/nut\\\" } src_install() { diff --git a/app-misc/task/Manifest b/app-misc/task/Manifest index 5b211e55f17e..2f806603a1ed 100644 --- a/app-misc/task/Manifest +++ b/app-misc/task/Manifest @@ -1 +1,2 @@ DIST task-2.1.2.tar.gz 4639841 SHA256 cf5171b54b6d2d2dcd9c559f437cf8a2cb3836c7631edf96a16efbf8b4383e36 SHA512 b9c802503b5580f6c1b965cdee1e39386e818027adba69699071d28dca12c27b37963bb9586b17a764c3430d3405a55febae176b6ef087798660020f2f683b86 WHIRLPOOL cba5aeb279021cb98b9c23c417182f7f2ebd9a05468bd283d10703f2b177c36f9e7c71c2466d4ebaadfa4b9524bd86c202e93be45fa172037c0d1b5e0d51c20a +DIST task-2.2.0.tar.gz 1190905 SHA256 39e25dd285e6bc8474337a5868cb2ec55675978fa1f08c802e6da58b4181ee14 SHA512 16ff1ccd037d62fc99ea0a31647714d3ccf8a90948b67d845d55e08e4bf49bb6a7f69f7464f485093abeff0672f17dc5f6d4efd96d2e447316975d185082f862 WHIRLPOOL c790c59a8867249ede33d51a85d33987a51f1031db225267fdac4e50e6f8ac3f94abc8ef80577648a783aa85d4b1297e7e8be55103750e46bb521d1282c8555e diff --git a/app-misc/task/task-2.2.0.ebuild b/app-misc/task/task-2.2.0.ebuild new file mode 100644 index 000000000000..fe4b39db4a92 --- /dev/null +++ b/app-misc/task/task-2.2.0.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/task/task-2.2.0.ebuild,v 1.1 2013/04/09 03:21:41 radhermit Exp $ + +EAPI=5 + +inherit eutils cmake-utils bash-completion-r1 + +DESCRIPTION="Taskwarrior is a command-line todo list manager" +HOMEPAGE="http://taskwarrior.org/projects/show/taskwarrior/" +SRC_URI="http://taskwarrior.org/download/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="vim-syntax zsh-completion" + +src_prepare() { + # use the correct directory locations + sed -i -e "s:/usr/local/share/doc/task/rc:/usr/share/task/rc:" \ + doc/man/taskrc.5.in doc/man/task-tutorial.5.in doc/man/task-color.5.in || die + sed -i -e "s:/usr/local/bin:/usr/bin:" doc/man/task-faq.5.in scripts/add-ons/* || die + + # don't automatically install scripts + sed -i -e '/scripts/d' CMakeLists.txt || die + + epatch "${FILESDIR}"/${PN}-2.0.0_beta4-rcdir.patch +} + +src_configure() { + mycmakeargs=( + -DTASK_DOCDIR=/usr/share/doc/${PF} + ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + + newbashcomp scripts/bash/task.sh task + + if use vim-syntax ; then + rm scripts/vim/README + insinto /usr/share/vim/vimfiles + doins -r scripts/vim/* + fi + + if use zsh-completion ; then + insinto /usr/share/zsh/site-functions + doins scripts/zsh/* + fi + + exeinto /usr/share/${PN}/scripts + doexe scripts/add-ons/* +} diff --git a/app-misc/terminal-colors/Manifest b/app-misc/terminal-colors/Manifest index 6b0a7fd5de35..6517fb8dbe5e 100644 --- a/app-misc/terminal-colors/Manifest +++ b/app-misc/terminal-colors/Manifest @@ -1 +1,2 @@ DIST terminal-colors-1.4.bz2 4089 SHA256 b9bb39cf3d5f3a7698dfdcfe81d1304b930a1dd6304336cc1d9661327f39b2c5 SHA512 d335f608ec128b7ec604729c3ecb94ac966dc3430bf92fe86090866d2b7fedb26806d25da71d0b432024791310ed7e5fd60d792970afa6e40321f57bc49d14c6 WHIRLPOOL 582e994cc675ba39d9c34dc49303d7b9abca1ac9f87fd9fbb862186ebeb84590cd827a31ee671fb397d94d8e47fa5228c2302469a6fe498d844f44a586f238ec +DIST terminal-colors-1.5.bz2 4080 SHA256 c92de036ecfaed05f65645e3fc1736e711fab48293ddf808b2ffa9a5422acecf SHA512 628439b314b29ec3a0807bb5b3cfec4af20ea03b94f5cd4a4b9a5c4fa4f9da74eba3b972a48a3c6cdbd4a8acf55610a60e055271f4d0292566dfd239b7668d93 WHIRLPOOL 11ccde0f4838f4e8a83fb25206084432e3fdbb3be1e23f47dfbb246cb785248fc63ce8f02d24ae79c8060998e2e105532e5371719ce26e83a9252eaa671f363c diff --git a/app-misc/terminal-colors/terminal-colors-1.5.ebuild b/app-misc/terminal-colors/terminal-colors-1.5.ebuild new file mode 100644 index 000000000000..065deb5065e0 --- /dev/null +++ b/app-misc/terminal-colors/terminal-colors-1.5.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/terminal-colors/terminal-colors-1.5.ebuild,v 1.1 2013/04/09 03:53:06 radhermit Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} ) +PYTHON_REQ_USE="ncurses" + +inherit python-single-r1 + +DESCRIPTION="A tool to display color charts for 8, 16, 88, and 256 color terminals" +HOMEPAGE="http://zhar.net/projects/shell/terminal-colors" +SRC_URI="http://dev.gentoo.org/~radhermit/distfiles/${P}.bz2" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S=${WORKDIR} + +src_prepare() { + python_fix_shebang ${P} +} + +src_install() { + newbin ${P} ${PN} +} diff --git a/app-misc/tracker/Manifest b/app-misc/tracker/Manifest index c76002da61d5..029dc7137b4e 100644 --- a/app-misc/tracker/Manifest +++ b/app-misc/tracker/Manifest @@ -1,3 +1,2 @@ -DIST tracker-0.14.4.tar.xz 5946796 SHA256 b818ee42b9007a94b2f8046edc4706bb2036187d5fd304e7ae23e5d2fcf85918 SHA512 e9d6d28276dc7f9930f0e8801fa3b3ea2a30ced0979309418ff5a36d7417ab85fb4d2c246032cad88ea63a4716b301db95a0046bd17eb1849e8a9a7edc464103 WHIRLPOOL 82aebbd0596c931867c65612672af52a510da202c881b2e1fdaa9a07136f8bef2840c2d0a6546ba0e6a53c9e61c973925dbc917ba5d8ec3b385f0656a34b926a DIST tracker-0.14.5.tar.xz 6065728 SHA256 cabef75eb18ad35208000dc472bdc20a74269799414527ee6e1c1c1cfb28eec8 SHA512 ab65d5618ef51d23b65e3d6972834e573415dba52e7bb9f20f8f9d4d4aab467b667301e6540083401d91c9e36cb63fdb2259f6dd9e975e9ff60bf1f83245b777 WHIRLPOOL 4c2c5ad9ff0d7a35c5e9c6bc42b354b9967a436cb1a8b2b640ca09e102a428e268bd011e0405a2b331f80df5a69dcd7e0afc693ae4969604ee41088e5da0c25b DIST tracker-0.16.0.tar.xz 5921104 SHA256 299c6a180370522d1d794c184aaef8d8222d3f737d564b8e5ca25b8751470c4f SHA512 621b0ab202bfbe6f29d8d75333a8f051b677c14c9c352d09afef92aca7f908b82307ceea4e1e55f14fc0666d8256019ff7e2664737eb34b6ab8c22a742696a40 WHIRLPOOL 245a64d577bccd65798ad90459a027d5f5b9cc344fcff298ed8912562a7391b982b2fb5ba12aa81b9208fab35f6cb769ff27c3b694e1f0d709696f473ee329db diff --git a/app-misc/tracker/tracker-0.14.4.ebuild b/app-misc/tracker/tracker-0.14.4.ebuild deleted file mode 100644 index c82da4c8b117..000000000000 --- a/app-misc/tracker/tracker-0.14.4.ebuild +++ /dev/null @@ -1,295 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/tracker-0.14.4.ebuild,v 1.13 2013/04/06 03:06:30 tetromino Exp $ - -EAPI="5" -GCONF_DEBUG="no" -GNOME2_LA_PUNT="yes" -PYTHON_DEPEND="2:2.6" -VALA_MIN_API_VERSION="0.14" - -[[ ${PV} = 9999 ]] && inherit autotools git-2 -inherit gnome2 linux-info multilib python vala versionator virtualx - -DESCRIPTION="A tagging metadata database, search tool and indexer" -HOMEPAGE="http://projects.gnome.org/tracker/" -EGIT_REPO_URI="git://git.gnome.org/${PN} - http://git.gnome.org/browse/${PN}" -[[ ${PV} = 9999 ]] && SRC_URI="" - -LICENSE="GPL-2+ LGPL-2.1+" -SLOT="0" -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" -else - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -fi -# USE="doc" is managed by eclass. -IUSE="applet cue doc eds elibc_glibc exif firefox-bookmarks flac flickr gif -gnome-keyring gsf gstreamer gtk iptc +iso +jpeg laptop +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps" # qt4 strigi -[[ ${PV} = 9999 ]] || IUSE="${IUSE} nautilus" - -REQUIRED_USE=" - ^^ ( gstreamer xine ) - cue? ( gstreamer ) - upnp-av? ( gstreamer ) - !miner-fs? ( !cue !exif !flac !gif !gsf !iptc !iso !jpeg !mp3 !pdf !playlist !tiff !vorbis !xml !xmp !xps ) -" - -# Test suite highly disfunctional, loops forever -# putting aside for now -RESTRICT="test" - -# According to NEWS, introspection is non-optional -# glibc-2.12 needed for SCHED_IDLE (see bug #385003) -RDEPEND=" - >=app-i18n/enca-1.9 - >=dev-db/sqlite-3.7.14:=[threadsafe(+)] - >=dev-libs/glib-2.28:2 - >=dev-libs/gobject-introspection-0.9.5 - >=dev-libs/icu-4:= - || ( - >=media-gfx/imagemagick-5.2.1[png,jpeg=] - media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) - >=media-libs/libpng-1.2:0= - >=x11-libs/pango-1:= - sys-apps/util-linux - - applet? ( - >=gnome-base/gnome-panel-2.91.6 - >=x11-libs/gdk-pixbuf-2.12:2 - >=x11-libs/gtk+-3:3 ) - cue? ( media-libs/libcue ) - eds? ( - >=mail-client/evolution-3.3.5:= - >=gnome-extra/evolution-data-server-3.3.5:= - =sys-libs/glibc-2.12 ) - exif? ( >=media-libs/libexif-0.6 ) - firefox-bookmarks? ( || ( - >=www-client/firefox-4.0 - >=www-client/firefox-bin-4.0 ) ) - flac? ( >=media-libs/flac-1.2.1 ) - flickr? ( net-libs/rest:0.7 ) - gif? ( media-libs/giflib ) - gnome-keyring? ( >=gnome-base/gnome-keyring-2.26 ) - gsf? ( >=gnome-extra/libgsf-1.13 ) - gstreamer? ( - >=media-libs/gstreamer-0.10.31:0.10 - >=media-libs/gst-plugins-base-0.10.31:0.10 ) - gtk? ( - >=dev-libs/libgee-0.3:0 - >=x11-libs/gtk+-3:3 ) - iptc? ( media-libs/libiptcdata ) - iso? ( >=sys-libs/libosinfo-0.0.2:= ) - jpeg? ( virtual/jpeg:0 ) - laptop? ( >=sys-power/upower-0.9 ) - mp3? ( - >=media-libs/taglib-1.6 - gtk? ( x11-libs/gdk-pixbuf:2 ) ) - networkmanager? ( >=net-misc/networkmanager-0.8 ) - pdf? ( - >=x11-libs/cairo-1:= - >=app-text/poppler-0.16:=[cairo,utils] - >=x11-libs/gtk+-2.12:2 ) - playlist? ( dev-libs/totem-pl-parser ) - rss? ( net-libs/libgrss ) - thunderbird? ( || ( - >=mail-client/thunderbird-5.0 - >=mail-client/thunderbird-bin-5.0 ) ) - tiff? ( media-libs/tiff ) - upnp-av? ( >=media-libs/gupnp-dlna-0.5:1.0 ) - vorbis? ( >=media-libs/libvorbis-0.22 ) - xine? ( >=media-libs/xine-lib-1 ) - xml? ( >=dev-libs/libxml2-2.6 ) - xmp? ( >=media-libs/exempi-2.1 ) - xps? ( app-text/libgxps ) - !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) -" -# strigi? ( >=app-misc/strigi-0.7 ) -# mp3? ( qt4? ( >=dev-qt/qtgui-4.7.1:4 ) ) -DEPEND="${RDEPEND} - >=dev-util/gtk-doc-am-1.8 - >=dev-util/intltool-0.40 - >=sys-devel/gettext-0.17 - virtual/pkgconfig - gtk? ( >=dev-libs/libgee-0.3 ) - doc? ( - app-office/dia - media-gfx/graphviz ) - test? ( - >=dev-libs/dbus-glib-0.82-r1 - >=sys-apps/dbus-1.3.1[X] ) -" -[[ ${PV} = 9999 ]] && DEPEND="${DEPEND} - >=dev-util/gtk-doc-1.8 - $(vala_depend) -" -[[ ${PV} = 9999 ]] || PDEPEND="nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.14 )" - -function inotify_enabled() { - if linux_config_exists; then - if ! linux_chkconfig_present INOTIFY_USER; then - ewarn "You should enable the INOTIFY support in your kernel." - ewarn "Check the 'Inotify support for userland' under the 'File systems'" - ewarn "option. It is marked as CONFIG_INOTIFY_USER in the config" - die 'missing CONFIG_INOTIFY' - fi - else - einfo "Could not check for INOTIFY support in your kernel." - fi -} - -pkg_setup() { - linux-info_pkg_setup - inotify_enabled - - python_set_active_version 2 - python_pkg_setup -} - -src_unpack() { - if [[ ${PV} = 9999 ]]; then - git_src_unpack - else - gnome2_src_unpack - fi -} - -src_prepare() { - # Fix functional tests scripts - find "${S}" -name "*.pyc" -delete - python_convert_shebangs -q -r 2 tests utils examples - - # Don't run 'firefox --version' or 'thunderbird --version'; it results in - # access violations on some setups (bug #385347, #385495). - create_version_script "www-client/firefox" "Mozilla Firefox" firefox-version.sh - create_version_script "mail-client/thunderbird" "Mozilla Thunderbird" thunderbird-version.sh - - # FIXME: report broken tests - sed -e '/\/libtracker-miner\/tracker-password-provider\/setting/,+1 s:^\(.*\)$:/*\1*/:' \ - -e '/\/libtracker-miner\/tracker-password-provider\/getting/,+1 s:^\(.*\)$:/*\1*/:' \ - -i tests/libtracker-miner/tracker-password-provider-test.c || die - - if [[ ${PV} = 9999 ]]; then - eautoreconf - vala_src_prepare - fi - gnome2_src_prepare -} - -src_configure() { - local myconf="" - - if use gstreamer ; then - myconf="${myconf} --enable-generic-media-extractor=gstreamer" - if use upnp-av; then - myconf="${myconf} --with-gstreamer-backend=gupnp-dlna" - else - myconf="${myconf} --with-gstreamer-backend=discoverer" - fi - elif use xine ; then - myconf="${myconf} --enable-generic-media-extractor=xine" - else - myconf="${myconf} --enable-generic-media-extractor=external" - fi - - # if use mp3 && (use gtk || use qt4); then - if use mp3 && use gtk; then - #myconf="${myconf} $(use_enable !qt4 gdkpixbuf) $(use_enable qt4 qt)" - myconf="${myconf} --enable-gdkpixbuf" - fi - - # unicode-support: libunistring, libicu or glib ? - # According to NEWS, introspection is required - # FIXME: disabling streamanalyzer for now since tracker-sparql-builder.h - # is not being generated - # XXX: disabling qt since tracker-albumart-qt is unstable; bug #385345 - # nautilus extension is in a separate package, nautilus-tracker-tags - gnome2_src_configure \ - --disable-hal \ - --disable-libstreamanalyzer \ - --disable-nautilus-extension \ - --disable-qt \ - --enable-guarantee-metadata \ - --enable-introspection \ - --enable-tracker-fts \ - --with-enca \ - --with-unicode-support=libicu \ - $(use_enable applet tracker-search-bar) \ - $(use_enable cue libcue) \ - $(use_enable eds miner-evolution) \ - $(use_enable exif libexif) \ - $(use_enable firefox-bookmarks miner-firefox) \ - $(use_with firefox-bookmarks firefox-plugin-dir "${EPREFIX}"/usr/$(get_libdir)/firefox/extensions) \ - FIREFOX="${S}"/firefox-version.sh \ - $(use_enable flac libflac) \ - $(use_enable flickr miner-flickr) \ - $(use_enable gnome-keyring) \ - $(use_enable gsf libgsf) \ - $(use_enable gtk tracker-explorer) \ - $(use_enable gtk tracker-needle) \ - $(use_enable gtk tracker-preferences) \ - $(use_enable iptc libiptcdata) \ - $(use_enable iso libosinfo) \ - $(use_enable jpeg libjpeg) \ - $(use_enable laptop upower) \ - $(use_enable miner-fs) \ - $(use_enable mp3 taglib) \ - $(use_enable networkmanager network-manager) \ - $(use_enable pdf poppler) \ - $(use_enable playlist) \ - $(use_enable rss miner-rss) \ - $(use_enable test functional-tests) \ - $(use_enable test unit-tests) \ - $(use_enable thunderbird miner-thunderbird) \ - $(use_with thunderbird thunderbird-plugin-dir "${EPREFIX}"/usr/$(get_libdir)/thunderbird/extensions) \ - THUNDERBIRD="${S}"/thunderbird-version.sh \ - $(use_enable tiff libtiff) \ - $(use_enable vorbis libvorbis) \ - $(use_enable xml libxml2) \ - $(use_enable xmp exempi) \ - $(use_enable xps libgxps) \ - ${myconf} - # $(use_enable strigi libstreamanalyzer) -} - -src_test() { - unset DBUS_SESSION_BUS_ADDRESS - Xemake check XDG_DATA_HOME="${T}" XDG_CONFIG_HOME="${T}" -} - -src_install() { - gnome2_src_install - - # Manually symlink extensions for {firefox,thunderbird}-bin - if use firefox-bookmarks; then - dosym /usr/share/xul-ext/trackerfox \ - /usr/$(get_libdir)/firefox-bin/extensions/trackerfox@bustany.org - fi - - if use thunderbird; then - dosym /usr/share/xul-ext/trackerbird \ - /usr/$(get_libdir)/thunderbird-bin/extensions/trackerbird@bustany.org - fi -} - -create_version_script() { - # Create script $3 that prints "$2 MAX(VERSION($1), VERSION($1-bin))" - - local v=$(best_version ${1}) - v=${v#${1}-} - local vbin=$(best_version ${1}-bin) - vbin=${vbin#${1}-bin-} - - if [[ -z ${v} ]]; then - v=${vbin} - else - version_compare ${v} ${vbin} - [[ $? -eq 1 ]] && v=${vbin} - fi - - echo -e "#!/bin/sh\necho $2 $v" > "$3" || die - chmod +x "$3" || die -} diff --git a/app-misc/tracker/tracker-0.14.5.ebuild b/app-misc/tracker/tracker-0.14.5.ebuild index 7fb1b6e20416..00721efcdd01 100644 --- a/app-misc/tracker/tracker-0.14.5.ebuild +++ b/app-misc/tracker/tracker-0.14.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/app-misc/tracker/tracker-0.14.5.ebuild,v 1.5 2013/04/06 03:06:30 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/tracker-0.14.5.ebuild,v 1.6 2013/04/09 21:26:48 eva Exp $ EAPI="5" GCONF_DEBUG="no" @@ -8,26 +8,15 @@ GNOME2_LA_PUNT="yes" PYTHON_COMPAT=( python2_{6,7} ) VALA_MIN_API_VERSION="0.14" -[[ ${PV} = 9999 ]] && inherit autotools git-2 inherit gnome2 linux-info multilib python-any-r1 vala versionator virtualx DESCRIPTION="A tagging metadata database, search tool and indexer" HOMEPAGE="http://projects.gnome.org/tracker/" -EGIT_REPO_URI="git://git.gnome.org/${PN} - http://git.gnome.org/browse/${PN}" -[[ ${PV} = 9999 ]] && SRC_URI="" LICENSE="GPL-2+ LGPL-2.1+" SLOT="0/14" -IUSE="applet cue doc eds elibc_glibc exif firefox-bookmarks flac flickr gif -gnome-keyring gsf gstreamer gtk iptc +iso +jpeg laptop +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps" # qt4 strigi -if [[ ${PV} = 9999 ]]; then - KEYWORDS="" - IUSE="${IUSE} doc" -else - KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" - IUSE="${IUSE} nautilus" -fi +IUSE="applet cue eds elibc_glibc exif firefox-bookmarks flac flickr gif gnome-keyring gsf gstreamer gtk iptc +iso +jpeg laptop +miner-fs mp3 nautilus networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps" # qt4 strigi +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" REQUIRED_USE=" ^^ ( gstreamer xine ) @@ -40,7 +29,7 @@ REQUIRED_USE=" # glibc-2.12 needed for SCHED_IDLE (see bug #385003) RDEPEND=" >=app-i18n/enca-1.9 - >=dev-db/sqlite-3.7.14:=[threadsafe(+)] + >=dev-db/sqlite-3.7.14:=[fts3(+),threadsafe(+)] >=dev-libs/glib-2.28:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= @@ -89,8 +78,8 @@ RDEPEND=" >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) - playlist? ( dev-libs/totem-pl-parser ) - rss? ( net-libs/libgrss ) + playlist? ( >=dev-libs/totem-pl-parser-3 ) + rss? ( net-libs/libgrss:0 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) @@ -116,12 +105,7 @@ DEPEND="${RDEPEND} >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) " -[[ ${PV} = 9999 ]] && DEPEND="${DEPEND} - doc? ( media-gfx/graphviz ) - >=dev-util/gtk-doc-1.8 - $(vala_depend) -" -[[ ${PV} = 9999 ]] || PDEPEND="nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.14 )" +PDEPEND="nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.14 )" function inotify_enabled() { if linux_config_exists; then @@ -143,14 +127,6 @@ pkg_setup() { python-any-r1_pkg_setup } -src_unpack() { - if [[ ${PV} = 9999 ]]; then - git_src_unpack - else - gnome2_src_unpack - fi -} - src_prepare() { # Don't run 'firefox --version' or 'thunderbird --version'; it results in # access violations on some setups (bug #385347, #385495). @@ -176,10 +152,6 @@ src_prepare() { sed -e '\%/steroids/tracker/tracker_sparql_update_async%,+1 d' \ -i tests/tracker-steroids/tracker-test.c || die - if [[ ${PV} = 9999 ]]; then - eautoreconf - vala_src_prepare - fi gnome2_src_prepare } @@ -205,10 +177,6 @@ src_configure() { myconf="${myconf} --enable-gdkpixbuf" fi - if [[ ${PV} = 9999 ]]; then - myconf="${myconf} $(use_enable doc gtk-doc)" - fi - # unicode-support: libunistring, libicu or glib ? # According to NEWS, introspection is required # FIXME: disabling streamanalyzer for now since tracker-sparql-builder.h diff --git a/app-misc/tracker/tracker-0.16.0.ebuild b/app-misc/tracker/tracker-0.16.0.ebuild index 6bf9c3afbf32..87d53b13b2cc 100644 --- a/app-misc/tracker/tracker-0.16.0.ebuild +++ b/app-misc/tracker/tracker-0.16.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/app-misc/tracker/tracker-0.16.0.ebuild,v 1.4 2013/04/06 03:06:30 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/tracker-0.16.0.ebuild,v 1.5 2013/04/09 21:26:48 eva Exp $ EAPI="5" GCONF_DEBUG="no" @@ -15,9 +15,8 @@ HOMEPAGE="http://projects.gnome.org/tracker/" LICENSE="GPL-2+ LGPL-2.1+" SLOT="0/16" -IUSE="cue doc eds elibc_glibc exif firefox-bookmarks flac gif gsf gstreamer gtk iptc +iso +jpeg laptop libsecret +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps" # qt4 strigi +IUSE="cue eds elibc_glibc exif firefox-bookmarks flac gif gsf gstreamer gtk iptc +iso +jpeg laptop libsecret +miner-fs mp3 nautilus networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps" # qt4 strigi KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="${IUSE} nautilus" REQUIRED_USE=" ^^ ( gstreamer xine ) @@ -28,9 +27,10 @@ REQUIRED_USE=" # According to NEWS, introspection is non-optional # glibc-2.12 needed for SCHED_IDLE (see bug #385003) +# sqlite-3.7.16 for FTS4 support RDEPEND=" >=app-i18n/enca-1.9 - >=dev-db/sqlite-3.7.14:=[threadsafe(+)] + >=dev-db/sqlite-3.7.16:= >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= @@ -74,8 +74,8 @@ RDEPEND=" >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) - playlist? ( dev-libs/totem-pl-parser ) - rss? ( >=net-libs/libgrss-0.5 ) + playlist? ( >=dev-libs/totem-pl-parser-3 ) + rss? ( net-libs/libgrss:0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) @@ -101,12 +101,7 @@ DEPEND="${RDEPEND} >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) " -[[ ${PV} = 9999 ]] && DEPEND="${DEPEND} - doc? ( media-gfx/graphviz ) - >=dev-util/gtk-doc-1.8 - $(vala_depend) -" -[[ ${PV} = 9999 ]] || PDEPEND="nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.14 )" +PDEPEND="nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.16 )" function inotify_enabled() { if linux_config_exists; then @@ -128,14 +123,6 @@ pkg_setup() { python-any-r1_pkg_setup } -src_unpack() { - if [[ ${PV} = 9999 ]]; then - git_src_unpack - else - gnome2_src_unpack - fi -} - src_prepare() { # Don't run 'firefox --version' or 'thunderbird --version'; it results in # access violations on some setups (bug #385347, #385495). @@ -161,10 +148,6 @@ src_prepare() { sed -e '\%/steroids/tracker/tracker_sparql_update_async%,+1 d' \ -i tests/tracker-steroids/tracker-test.c || die - if [[ ${PV} = 9999 ]]; then - eautoreconf - vala_src_prepare - fi gnome2_src_prepare } @@ -190,10 +173,6 @@ src_configure() { myconf="${myconf} --enable-gdkpixbuf" fi - if [[ ${PV} = 9999 ]]; then - myconf="${myconf} $(use_enable doc gtk-doc)" - fi - # unicode-support: libunistring, libicu or glib ? # According to NEWS, introspection is required # FIXME: disabling streamanalyzer for now since tracker-sparql-builder.h diff --git a/app-misc/tracker/tracker-9999.ebuild b/app-misc/tracker/tracker-9999.ebuild index 3deb48bb9df6..a96be957eb25 100644 --- a/app-misc/tracker/tracker-9999.ebuild +++ b/app-misc/tracker/tracker-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/app-misc/tracker/tracker-9999.ebuild,v 1.61 2013/04/06 03:06:30 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/tracker/tracker-9999.ebuild,v 1.62 2013/04/09 21:26:48 eva Exp $ EAPI="5" GCONF_DEBUG="no" @@ -19,7 +19,7 @@ EGIT_REPO_URI="git://git.gnome.org/${PN} LICENSE="GPL-2+ LGPL-2.1+" SLOT="0/16" -IUSE="cue doc eds elibc_glibc exif firefox-bookmarks flac gif gsf gstreamer gtk iptc +iso +jpeg laptop libsecret +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps" # qt4 strigi +IUSE="cue eds elibc_glibc exif firefox-bookmarks flac gif gsf gstreamer gtk iptc +iso +jpeg laptop libsecret +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps" # qt4 strigi if [[ ${PV} = 9999 ]]; then KEYWORDS="" IUSE="${IUSE} doc" @@ -37,9 +37,10 @@ REQUIRED_USE=" # According to NEWS, introspection is non-optional # glibc-2.12 needed for SCHED_IDLE (see bug #385003) +# sqlite-3.7.16 for FTS4 support RDEPEND=" >=app-i18n/enca-1.9 - >=dev-db/sqlite-3.7.14:=[threadsafe(+)] + >=dev-db/sqlite-3.7.16:= >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= @@ -83,8 +84,8 @@ RDEPEND=" >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) - playlist? ( dev-libs/totem-pl-parser ) - rss? ( >=net-libs/libgrss-0.5 ) + playlist? ( >=dev-libs/totem-pl-parser-3 ) + rss? ( net-libs/libgrss:0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) @@ -110,11 +111,16 @@ DEPEND="${RDEPEND} >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) " -[[ ${PV} = 9999 ]] && DEPEND="${DEPEND} - doc? ( media-gfx/graphviz ) - >=dev-util/gtk-doc-1.8 - $(vala_depend) -" + +if [[ ${PV} = 9999 ]]; then + DEPEND="${DEPEND} + doc? ( + >=dev-util/gtk-doc-1.8 + media-gfx/graphviz ) + $(vala_depend) + " +fi + [[ ${PV} = 9999 ]] || PDEPEND="nautilus? ( >=gnome-extra/nautilus-tracker-tags-${PV} )" function inotify_enabled() { diff --git a/app-office/libreoffice-l10n/Manifest b/app-office/libreoffice-l10n/Manifest index d87a9dc7ee28..cf6f764e8bd3 100644 --- a/app-office/libreoffice-l10n/Manifest +++ b/app-office/libreoffice-l10n/Manifest @@ -164,6 +164,172 @@ DIST LibO_3.6.4_Linux_x86_langpack-rpm_xh.tar.gz 1623056 SHA256 c8768937750b6b45 DIST LibO_3.6.4_Linux_x86_langpack-rpm_zh-CN.tar.gz 1666519 SHA256 bd8a8427eda31e983011620085d10f48f5410bdb75ad31bf5234756ef83ec404 SHA512 2b2b8ac231d96bf4ed61866075019e743beeb7f74b99fa40971457dfa6d0c2efa8a2ae943f8f7c13675033631321b7085b779c6074a9780b5241de308dab2c79 WHIRLPOOL b4961d2f80ea1e006cf641c47ed0de8d2ed21dd4322639f4ed35863120da90190dd0e9263545f3010cf7fcabbb615e48b22bedce4ca42931eb205032a0adc96b DIST LibO_3.6.4_Linux_x86_langpack-rpm_zh-TW.tar.gz 1657904 SHA256 0bd244ef35d3b98cff9f7109bec463e8a8366a10e3f9234b6be0b0c69cc0d8eb SHA512 9a8793b812d41e371ef73fb584939a0d10abb999af1ad71a95c52a6d4dc3e4a20db843a2093a0f42a31b490352bfcfcf8eae9fb6f76016a98284e7008181acde WHIRLPOOL 03b3de22229912d19a6e9c7b21be038d350a57aa6f70392d2b82c7e45e422055f45c2c6c5f9d0fda595adcf4d3f791d433d7ed9e94dbaa4bc2251abbea5ebc51 DIST LibO_3.6.4_Linux_x86_langpack-rpm_zu.tar.gz 1619560 SHA256 1fa2eb4b76e8ce41574b7fb9021f14480ddb4223cf1841f27f046195c9fcfffe SHA512 cdbaf688464ebbb243590744b7cfd218ae77b1f50d050b22a2976c7eafe23e602ee1903137f6aedffad5502a04d301d3c7cb70dc2faa7c2adc4a75e47328a423 WHIRLPOOL ed823e6d7baedad786939acce40851b7f9e07a01b9246f4e82f1c7e5955f27dc9ee4736f9bdd48263db7ca63891a2a65d8ffd79c44991b5affe1dad008c7e080 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_ast.tar.gz 11069846 SHA256 7f7d499ef3339d7c6ceb899498c2ba9aa63d78007a93fa191244c1c8d4fbae8e SHA512 138759b435850bb249ad8e23ccf6139a50fb9d16dafe5bdfbb641c4dd118ef28dd92f3e237480ce2d62ec15db35e9cc452d2d72514740c593ae3d3928c6bb647 WHIRLPOOL f56423ccfc4818a8ccef84d38c0ad97182bcbeef0a50ffd89648a5d4ea35c0de90b2c3592ea4dded55b0ddfaa4945f3792202207bd2a3e3aebb1ae74e0e16786 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_bg.tar.gz 11596667 SHA256 f63b8fa8cfc614819882f81cf14c368d8b6b893261f9051c1e2bb80a0b5eb0ba SHA512 decc73658275a44f2d14ac2c831c63159ebe69e02f2183c52c786102a635d8a32cb8435638a6754908cd3e1897b3dba2971e9f0729ac5c11dc11cc409e9a62c0 WHIRLPOOL cc196edbb91993a6acb9fbb47c18ab60d40c1ec8ca5dd48844455ed69d77ad55b7867ea7153cfe8674f965ff900f5755bbc6a6715832fc3147527cf69e3afdd0 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_bn-IN.tar.gz 9412726 SHA256 e03d24e8efbb42b1168b0b09703825cee2afc0ebe1e598d23d9753df5953260f SHA512 4d1bcb239e42fbff78b987de4711acd778e7445d5374e5593213662ac7da4ddf1c69faeaccc0c911c2204554e1a80b1d98452a559de54fd5c56c1ce1434a1eb7 WHIRLPOOL 4c629bf224ae187f8c4bce90c6ca22840555f253725a6040b22daa1e7772d4e96b3f9eda57deb873cb61a56455981a7113fc0f47589db6603ee7e7fa2bd89a16 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_bn.tar.gz 13303995 SHA256 ed0771024e756c62629df2dcd11f856a30c393112f2fb6047bb9414d19b4b284 SHA512 bbaac292a6e127b3e42e71631a0ba673aea9a7842e6eb6e2128c841e0f572661067a4e9d94a47a9b0f1b2de0d0f9d977383e66c98d25859f1cb08b9e8b091461 WHIRLPOOL 66b96d2b1714769a084985221cece6070f9959ef5fae26ab4a5bf8d6818a727a5cb0273cdcc0b30e739ef8289345f63a680c87d7029aa2bf1041db9800aff81b +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_bo.tar.gz 12883754 SHA256 c9aae89ddd6031cbf5cab1b15cc2fc83af440f62d673c4e347a9eec0861706ee SHA512 98a10d50a154457b6e8beecbffc5396848f1cb45210e6c66e1ee7efd9df7a9fc9c9967cd64e3db15a9cbb32fe1df77774428a30b9200405f7fe4f920942a5513 WHIRLPOOL 84e3e73f1c75a5fe402ef3e4726f46a519af430b9acc47c5c4a839042426c1d630b6b6550c1579711e3ef186428fb8bc2a80bd7fe3dc68bc7c709eb1000cebc2 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_bs.tar.gz 10072589 SHA256 292f3ab142bd6726a93a5c11380c41a94fdef2e754f5511272de819842da44e9 SHA512 b77f664651229fc83e97b386b5b9af375d6cd83be69f712f2652cab73efb590cfd51a0bf2eec6f3c820d96502cc98f706243d44b5ad010bf4dd03f94f311e396 WHIRLPOOL dabd46755c3ccbdb6107b91005f96ecbff6f18d21915ad1b99d61509c76cbebc0c91c756c40a3ca815b89cb3531f6a6321ae34515db017cbb4e211f0c2c12e69 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_ca-XV.tar.gz 10941079 SHA256 4323de911245e28bb8c5c2b14f8102c2f69d76d821052b47d7f9a08d75911e9a SHA512 db2cba9964f20e5c4b2f393e9c6353593c553155e6adc789b32ea3a59cf1ba164793b4232d786d1e23dc08074c3f395c39202fd49910c210915c38a9b089f9bc WHIRLPOOL 40ab8aa13e246c100aba38f0301975bbb5aa84b8729a9a406831bfdb45d9b989adc7e8659d43a2b68d31f1c182104fe962c9f1fc8c411cfc719a5d4af4b8b2a3 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_ca.tar.gz 10917582 SHA256 c4392a7e2a6626513c56442442d544f4909b4ea570b18dbc27ed2ca9bd72f9e6 SHA512 2098b4e747ee3b9bfeec753e295c71677c4c088e9a4eb1a50f4d8d0bd99142f8b19b42c13ce797b2095b8c39b187c60b7140fd6e0872bcc9ffd47f370c9ecd4a WHIRLPOOL 7a13a54ce76a92ec94df7925a3a4be1d84aef424e9f6c061b258c3cd829d10de45fd240e344ceddb0bc4f112997cdc5fad700262a2b8d62bd349f361af896dfa +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_cs.tar.gz 10609433 SHA256 8c43106f3cef9d02fb124b3a58359a76b63ea2fd71f78d6b374f8ada13f29b12 SHA512 ca4b36cfe0052c63c478ea9d26ae306ddab03507d84a7bf16b3690a5e5d5729505223d08f12ca9b8104a49303be430fd7b8cd48c7a5f5507b0ba463b45798230 WHIRLPOOL 99fe536260e800b4913b2eb447260a0f4d991c82d8cd89e4fb8c3f24cde09df9f13326815ddde80c2e8456a4462c2207dd47b2f88a91ebe09dde1e382efd481c +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_da.tar.gz 10528004 SHA256 e8a87932ca1c678aa1895ea1c557f39edd14d481e5e2466c9f8f32f08e9d6f19 SHA512 f79fb3a8ad5e5eca36d61a221c04cc45078173c8fda0bebdd61c6c6d876446770cb77eca96b4d4ab5bc9a4bfe8fac76b30cce5940ed7084479df43756e3a5109 WHIRLPOOL f7c42258bc969bb9f07bc76db6e1b8f1aee5748e493687292426401267c7e2340d9e795053c6f2cdbed813a581eb5e0bee0c9ec491e51ee67fd2da35c7ccf29e +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_de.tar.gz 11145088 SHA256 626f32a410c77cb6820455f2fc798e95865e0c990660fc64917ea3bfbd43c819 SHA512 6728312344418304868d1a9b4135500b6fb6965e81b037c22f0d716d9613ee11700ee7928ecfa3b05a753f90f0a7adad0c55014d14f8c50fe0cfc3b705be1413 WHIRLPOOL 3bd465023e2ca7dc7e0b3d9865aacca43a2af3b58c26ea95317485def90a158dd545dfd0c30138d6734e7670458915750f0b7a995006b8567b9c23cd5be0abb6 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_dz.tar.gz 13937890 SHA256 cade67973c7866d5d7a908d6193ec1941cfa0faf1b33c0b4f245aa3958962f2d SHA512 741eac4af178417c2604ce935abe63372f285a7c5813ba95aa65bb611ee5d9896294d50b84d3c0bef6b2ac0ea8049e26211984dcbe863977b76bc501b38907d5 WHIRLPOOL dfc4ca1223818d59a2e67ef36aea17a2d456b34866152e88cf3acae0d8a4962e399e969eb6c73774ce19ebd4d5193dd816282eafb87f9cf41dcf246305c1acb4 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_el.tar.gz 12356291 SHA256 f91b8ab543801efdf185d6f4e001819791ef801751fc06bf3e64b5aec599fb04 SHA512 eddfffa732b77783d7b8b4ac32b1775d8191c60638f2ae4d6adcdbc05a4a9fce3c32ee9032b62c4d7b02e6c1a154cb29e59e779c1d314714034f790f88ac98c9 WHIRLPOOL 558342f15a9d9108bc973f14fdd539803bdbc7a2eaf0ee89e07d474eeade27749c25a27e6adbccf53e3ec0d39a5ec02d3a18a290b394e956d170f83aaf998e4b +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_en-GB.tar.gz 9357746 SHA256 07a55d1a7954194d6cf7c8f5051852379cd511a8722958d0f0735cf37656da8f SHA512 061e2d8798898f5be401b7cd33b1cf1b6892c0e0686a95a3b7dcc84adf9bed1e207ecc0669fb9578960f7700b4fb566bbc89d807ca13afb404748f15cba4a9e6 WHIRLPOOL cdd1fab3d4ae449f8a9c7fa40ff18056b9bad1b873a993748ce7b72d19eaef3e067a6dee74a00830a1bcbd51686d1b8a4b1693a4e4642ef4b108a152b3a5b7ba +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_en-US.tar.gz 9412773 SHA256 486a9835d9e2cdf281c0286095695701650ef7565fa30354e38a63b0a514c700 SHA512 64d9d4fd9527adf17f0078b77989706d190047c5255ccc2d09319a9add554068662eb65ac635ba78719d8dec4bdbe09d0545a38566339f183d436430f112918e WHIRLPOOL 0bce6e274727ce3b621fb42d772ddb937bff064f624375ef27fe772f031087aad4c214a44bb851cd01eb6a499ca0752cb17e2777ae7210145c2aa6d1330dd1f9 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_en-ZA.tar.gz 9340074 SHA256 817c4b3c1facfae411d7a25951133bd846cbb7beae5ebabb9c5b3b121fc6cf64 SHA512 81f457e617bf849be61eeb7272b96aa6273c22d3b8f349d90cc058ba13436295a7a0d200827e14cdf54ed5af8fb081424051df12c0045c5cf312f70dddabf6f5 WHIRLPOOL c05382100a283f0f250a4edd394b4f57c4b44d88f033c7c73d882b893d91a1f89b6c1a5a13a4ac10a92a76a39b741dcbd0f1e9d8f25c3e23c501188f0193ca36 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_eo.tar.gz 9921128 SHA256 19cf51f541b78e18492dccb7d31475148f3eacffce401289d2ae6a8ea49f4aad SHA512 7562baa18af6e9aba9c4ef78d1f2fb41b4d22fe065347016a5c41e45b888d60acea840d367f618367e0385c5e3376c82343f7cb0620c822ae392c44d55a94fa7 WHIRLPOOL b3c1bde2b1f32010ba35cfec71cf45ccd8272fd87bdc6123dbd86908ded098e380ee439df91a8bb97586fcad8d574cc4bbf65de32d5ee2441d20a0ecda66218f +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_es.tar.gz 11033359 SHA256 643b3fdc0d0a06e95d149846abb4936d9efba373a9938e7bc716e4ca608ff293 SHA512 5e3e08710929a7d68e7bc7774d4f335279fe8cc9f985094a039949982127ca627d202736d10a744987a2b5be7be3245f09f29a28a6581828d7cfcc46273bd711 WHIRLPOOL 9292cebd19259cc1b29a27f10b8c50eb83c674a316675fb691b1796a952da8aee42801f744953e8aeaafa7f06c4f361c9f9541ebce1d999f3cd19a7d252ee48a +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_et.tar.gz 10430155 SHA256 7382ae4e38da4ea63798862f4b836c4698f8f9d649429bbf79bef5bf49123742 SHA512 8fba17d30041090b5505766915f81c6b19a10cf16a2d098f06551b0448b338fee2535dadf58b08b6aca693affb0cfed060678a37816b64e92f79f546c81270c4 WHIRLPOOL 54aab4d57f202ea5bcbcd56705f140641aef54298d1b4bee50ead333ac3b9a51f89e8174a3caf99183024e50b5640e40906544fefdf33584ea57f2394df7f979 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_eu.tar.gz 10609785 SHA256 8c890a3a98b854cd304828cd082934e317d9af5f2e2f0884ac4360f50ae3edc8 SHA512 1615ba097bc9857337e8ea21a71aec5a4172916750fd9ad2205baa1cdcf94bf017fd61b76475c6d011a54652319f41934808f227112f871f6577497970a7dc91 WHIRLPOOL 27767428de0010b58aa237b103bb2a1dae4ac7e34e973f920e77d27d4fc05ed909bfda8a2269d94cb72e68fbb6ec4c27ea0c08588f200f71d18225f9323e6c1c +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_fi.tar.gz 10729125 SHA256 ec2f5386345c4a591df9ea4faf955de020b9c677cf7b07f00181a83b85046794 SHA512 3121910b766158211c681cc99b225068fb60a5056d4c5d7a2ae0fe53519f8b8684ba6c3fdafd3325a2b6ed92b5690fc132f325d02da85b0e626c45532856a806 WHIRLPOOL 85d6799cc716d3b07d87e9b033933bfa5a6fb836b4ac998375506671ad574afe1f5d4deeb8614dd03f17f6b4d2b21ad4d2b699e15de54ee6ae6bf492ba716064 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_fr.tar.gz 11196621 SHA256 3a4abeb4ebdc7a257d649ec91899d14f89f3bec92c67df1cde77ad97ff9a85c9 SHA512 f775b04a725e321406b50f0e2b214cacec15e5f1fe1e2b08590374df3c5281d414dfb2fa9c99c5071e55a4b6214b78333f7c0ceb5e5c14a209a7cfeeb70c6721 WHIRLPOOL 52cea3e612ed4112d45c859b2fc69f7e0156d5b010ac86e650d5ae48cd2bad0f4accfa1a50743a9d67dcf3d87c2b4a90c4fe4a202bb6a69a3bc8a35117b2bde1 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_gl.tar.gz 10474376 SHA256 5de48bf13c77c37546475dc605a15bc25ef1017a4f5d768f20c17a7c4d061fe2 SHA512 3358437f7c7513621e0dd3a195112b415abfe80b944280f8da9bece95cad1b74ca67c3f979ccb0b4dd54287364ea054744ccbc72ad67ca9b1caec511e15b9944 WHIRLPOOL a43f74db1e54e69fae1dc39277c493970c4f49d82788e77b35e5d0102d0eb1b73545586b5191c39d847617ffeb667a69ec7b79c36e365713dbd178c0dbe5daf4 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_gu.tar.gz 9525666 SHA256 9b8276939ec38237ac30abd43bb641b57404a0c966a05501d820476b3193af34 SHA512 219cbf7dd1432ce1220e5b2c8900999bd6ab493dce6382f9faf207c1a5b38821a3a9b760a0c49273a31bae670c85dc0f651076eb194163707deb3751224a9221 WHIRLPOOL 40469359f5d0aca43a97940423213af6704c783b5b3ae13e06db2e217fe2720b89c68cd207038b903299d74125da240de66e89b5cab3ca88ab1dc24bfce24ca6 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_he.tar.gz 9126694 SHA256 a400840fa9e663e0f9df55df62e586f6058e899e7e889760c92cc2cf11a83749 SHA512 5372195c93c73a52453af7adf20eb82e3eb3f8407f757308edc90a661530094cfd5dc927782de35f31af4cd3ea702a3da2961326ed7f542cc5df109fee671414 WHIRLPOOL 8b91cc10cfeb95d693e58484ddb43d864b6ebfe464ec012792968c93e59df062fde96284b156b276c9558d0cb4d8f5feb7c9ba86f03cd3ca9c8c97a2573a4247 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_hi.tar.gz 10361477 SHA256 7559b77e4f32ccfb8252e47f60dbf2c93daf8422cda43d4ed33de14a57a96180 SHA512 6e457aab6d196c0615d6c3bd6a2e38d5c785a1bcb34e4737c1de391ece291fd68f46d849daf57f8fa200952eecd5e5474f7239afe303be2dec616846ead537b5 WHIRLPOOL 36ecb8c892fb76450df50522fb8d58ba8e75f947124793553e745565ff99b336153072929aec7ab4d6e1e9f26513bdd94a3bb9f06ad1aa29f97e6784e6777b21 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_hr.tar.gz 9731358 SHA256 6775ff4de3da599c6b586b2b902020410d1de933b78228e6e78bba909c7b00bb SHA512 5e65807b9a9ef709ceb205c4bbf7da3d5196914e012af3db8d79d01a426bd26c3624318aa90b3284f5f36f8c48d8f513d3acff7b226c1419fc02349366647245 WHIRLPOOL 788052c9f8ef09235364fb31e3146bbcb2ccc3b3dd906fb3163762ed8b421b6c5e5453ad15ca04d2e58fa802286238500fd9ff12af64a0937739e22e89b15627 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_hu.tar.gz 11079496 SHA256 6e2add85c5c715c195fa5999791c9bd48b4a1fbfa136b798e019747dbb1097cf SHA512 80cdcea10c4835c556e4c662f936e052020ac4303554f0a714e727b11c556dd5e746c2240af47eb3a6469d397208acde91cfc8819a6c448f71e74daa36047084 WHIRLPOOL 17d8fe625b8a0814ea5422cdfe2cc8424469cf30a74297de745e75d02f9b2b11513d627a9259751eb1e820d6b7f8314ded2509e23e741858249815916b7913ae +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_id.tar.gz 9670066 SHA256 6968d6290a9e8859a5589e8680a4aaf37d529c5a329d814d568747d3ea82bbe0 SHA512 d8be7d241674266161f81d0a1043487bebfd5fe66b07a8bf66b7ec382f11e3e83e6ff2c384d54a1314668f72546c96d5c57c0a005977e178b8c13ca4e85e9d89 WHIRLPOOL 930e9c51657cc12416e3aec06a35529b7c83c7392b61d448790934b1a742ff8a191deeedfc0df5884dfee70db8e1e4d07ad77cf37ba1cd79d9e4058eaeffa5a8 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_is.tar.gz 9817637 SHA256 393d8c99dce8314a4e8017e401c2b6d164f776b7185687f7ba4d63d05c18165a SHA512 dca06a41615688164d57e076a78929c054d608b05fc1b77f48f6b4a4e38472a0169d91e59ffaed70b3b828dc64c936ed379c37b5783f24cec4319b52055b195a WHIRLPOOL 84c7329ce51650871c85fa8b0b7422e06443e80be9472cba0afe51e4d3790fb01ae9635ba85697fbaa97251810042f8897b7e207e37aee5abd784221dfa1d93f +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_it.tar.gz 10920770 SHA256 ca1b1283dd58b4605ce41560c52229e2ce9bab575ca0d5015096e21d85acb43f SHA512 90933e1042e4cc8bf2b05edc1e2dfe65a1be6e7b1fc8b9a2cc45cd2881d6bbcd92f2b6b24bd90b65262fdb73b9993d941afe4c91a64d9681e5853b50a13815f4 WHIRLPOOL bb6001a51e6716416ac2d66a787bc8496ab4cd4f3f606c0cbe4e8c66cb5133de2253f6594f30ab4cecdc4e86ae29c91bc93bcd9c83974e8373d58902f3f6b08d +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_ja.tar.gz 16975050 SHA256 c76bc653c470002da690f8b9614ced8a6000e16bab1ffb5f2d213baf9c59a9d8 SHA512 51966a3b5ffc55c5d9490cc0d59d548d1ca8991a7937756fc8d716318b550ccb6f49ea84553651fabfb42ad9043b99d59c339455b27fd71545876d7da3d3c4eb WHIRLPOOL da912ebdf7c3968b3ac4dca9ec9c366c7972374232b9a1ce370a541dbfd4a7573d6a395cba97ebb10e9237b39405a88b9590ab01885a75ea4fad692c43289c1c +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_ka.tar.gz 10159842 SHA256 2ed5f628011e59cecb7250fbd40fc82bd40c0fb3ea665521f9c1b5595d7450dd SHA512 48828830285ba43b5ab0fb34e2b9cd3e34dec84557844e6e59a9f3055585447c74fe565dd7f836d96be3e4181b067d0249c77594c7d51ad97fabf29af3cee7b4 WHIRLPOOL f0fb450f6db9acf00bd7eb309c6308f579c7e9b3074a4b246c5f13b810e6fb1b5c183af6b765590f539d33b32c5fa9fa96485addcf7a8be6f222de35470fc7fe +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_km.tar.gz 13809768 SHA256 e277cd7143f1b52bd73ad187ce980312b6ef791e5ad92961f809239d9c82b3ec SHA512 5d86640abd1c3c964f2b7547178684059500c9bc1fdf07a69350ef21cc1826c4464de474aad1342d667b652052e67d049ced570ea4278ce02086e0b2b8d79a14 WHIRLPOOL 88369147cac27eee02e2c9f5d909f21e67e837a2ab68d38ba583302e48ce5b3aa3089b0bb246f86756f04db4449143e21616191161bbbfe99dfa343e15e23221 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_ko.tar.gz 12545580 SHA256 f12054efeabed0d9fb7407ba14eac0127bfce4a403a0df03269897bb3022bd9f SHA512 a31d23caa3bd3aff5f32ee48e5c3001088b9f9657cd3e8940dd9a08077f7b70b8123d0aad39df067360571acc81de428bfe3497520e1b9584354f90bad410a44 WHIRLPOOL 1605d80e2a3f3933dd8877e2ff296040b8cdd02858de2f22a803284aa27c6b2bbd2a9f7b7189df2a8aeeb893d991230148319ef379aa562abfa5158d88633c5f +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_lb.tar.gz 9412713 SHA256 85aec4d8e8166ff81191244b1b9e2c712ee42e193678491306f675834aa537b1 SHA512 f26815e6a78304850dd61b0042286864dc16fe2a27cf6c430fd6625bbe92f8f53ef2690135764e70b8f268a0ddafd4638fdf36dc2cba351f228b3a878f0854f0 WHIRLPOOL 36c7ada64262cfb207a84629b451c6d85a5e10f080f6f0fd5e5423a0bee38b919baa86eddc810795f5e52fe620308a653f97a1003563897b67647052f4d5008d +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_mk.tar.gz 10430854 SHA256 f5cd3f50d7a3dee2dfc5d0d5d10cc4a7d6d71b634795fcc691ee88b64e3db8bd SHA512 f6c8f40fcdd16527039bfe2ab0eaffaf7fefb3799416da901b54575e6b3d0572117d4a9d3a8d3a749a72d76cd4812dac74bdfa8d370066f3dd8100256c56891e WHIRLPOOL 0c1e09e8e8b3d0390434675bc4aaebe05650f017be441e844816b1be3f159a812d82fdf921008a0ac7b67d82df74f75f69271e3aa218d3383425c21c17aae36f +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_nb.tar.gz 10638200 SHA256 a49e1bc54426806b00a9ea62bfd7b31fe933cb35e6ebd4296dff88703ec33aec SHA512 846c23dd4a95bb60e932695627b9edcb6e2d4c3ff83fed2444cf868b46940ecf98c65d525db68ad5c90b6899675937f6aa220ecf07bf5fa149545feef710c79b WHIRLPOOL 9d5b795ddc9acd7508097b09a2e55f2fba527b19765d4440490898dc7b5254afc6bebd2cd1a15bd5df397f055cc449c3ff102b27d044764c45373366a0565522 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_ne.tar.gz 13307968 SHA256 accf5ac75aebca27b0ac7457920e230988c4dafa60c538942f9f6c3c9da011c5 SHA512 b5ca7400a82595cf9bc43a8092803c5af7b15ce2d15873abad994d0dced8faa8793e3a6217d371365135290a94b92c848c85272d677f9cb4856b922491fce963 WHIRLPOOL 14461018af34f8230e70d4668c5c645d4e4041c7700792205fcf0eee61b427cb1c43ee0d13e49bf5d778a29dcfce095e85261a616957ce9295b9306cd8c7946e +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_nl.tar.gz 10698978 SHA256 51b6fb6b0a2d69979300638c600c353217cfcaefb064fbed7f7edc891e4647e2 SHA512 3fd8a2230f061585819ab57e6759b55bc7a8a4a16580d02831d6a140b950ea14c99fca6d0be0ea9e2830e57041c3a072b8cee2eff7beb77b6b469395962a9556 WHIRLPOOL b288239ca18417d563efc06c9b90c2d5f520c93dc0f592c0c97f929427edac37058e720efcf90f9cb2addfca6f8423e594061f9e09271630427c5220a45d5d8a +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_nn.tar.gz 10211074 SHA256 895f3ae1b1733c80114222c9332d03048e73f183c3704ab3f7b245c7e7825314 SHA512 35d658d61f0826a2531eac4875a5f2c0d6a8abd98c1235fd2a62a4b56d265f329b646a61e5c9f1f94770634c0c8ba90ab0f87d1b608b2f12aa2df78c0143ee0a WHIRLPOOL bfff3c26e6ae5ecd17c004a5f677cad84f363c88ade2cea215cb685bd3f80123f1e55ba30e21d926b59bcd20c3b4fd77127822abba2aaafb4e7a22b21d610098 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_om.tar.gz 10969649 SHA256 0fbec9a8e2a30ecf5fff92761f28118cc607d3ccf8994d4a740ff20c9984895f SHA512 05067cf611c0fe53ab895599b99afb5265aa1d02174639eb06501d57dce481f6d5d2d76e97728005a333c40e5737d7549229ada61b1fda4888d7b1672de3e5bd WHIRLPOOL 3df1f23a4af59699e3d16b3756ca6e72abad85f0ed7aae7348dfda4671f6b001bd6f6bebd8850c2c557984639854c8a089dd95cd922f092be9fa7b08c0d29320 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_pl.tar.gz 11066043 SHA256 36acf8eeed6fda88da8d6c0a62c7e5965f666f3deb02b56a740a9cfec084eb0e SHA512 f5d202f7175fe8fc542e96b4d0734dea1c059b7e221239cfb29fcc3fc6fb767c0e8df8502d19dab726c6542820abbbc592128a9e26132739d79581da084472b7 WHIRLPOOL 4abae51bf3c6595f5eafe888fc6aa6694f652896fc2c4dcd67cb0f21e3bbca8d9e63a3ff93ce5949efd6dc78aaf5e3da228ae20539dbf70c063bb0be7eb33e89 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_pt-BR.tar.gz 10775756 SHA256 564cd21deefcec6e3288ff962dfa6ba6cdc74f8b5c7fdb3e5cd030dbbd2408a0 SHA512 3413498bfd29aa56ee937a59376cd5e2f9621a7e31718a8bc794db4d3e58d0a2ddaeb7aac5b2083725e5719544bf9b68e295a393b82dfd3022eed1a240792f67 WHIRLPOOL c3c1061c8d3c922d23de30e8489667e4f7eb82d31314e5e5e3cef92fd410b8f1f6008123431677595133164a9fff5d5708d5219e4f5d2dc91e90d021aeda973e +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_pt.tar.gz 10765004 SHA256 6ca0bbb731465ba133522606c4bc331c4a8a53cb18fae615d4ae8345bec350a2 SHA512 e19478a2db23421ce62b3749b2cbde155e81a360b45e12d5b96488251e0bc0d5ebfce461eea320051dfbccccf9b214028a6b2c194326c5990b901c2c51e8c0ad WHIRLPOOL 26512e23abf438217ad0a85f8244b718a2bbb6d9c2045ec48d828cd6ceac85c7b8530aa8f36efa6ccd589c3559229ebd206eeb7000cf44e845a41e848587a825 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_ru.tar.gz 11729831 SHA256 952d7c4113c4860fb1c5a1ae06c9a2440fa4a02ea8b92362966c3ce64c72350d SHA512 883c68ddd0c0c33637a43f3daf4473bcd2a9f2748d61a591e259ed26bf5ebc8a52e8119d7526845a13e6330af5e78f48d1ed3affbf085d93aac54c6dfcd12b38 WHIRLPOOL 00843ff0699b7d4f424c39fc56856283e8bb6dc808dfde8c75d59c7b51f1278f7a205ec17d7d4157360e33faad99c3684a9f44f23666195a25bacff3fd3fea6b +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_si.tar.gz 10148159 SHA256 4f6bfe013f6688f36809032fdd383f9edc7d501845dc6a863c8e86fd15a29fab SHA512 5b9eb8c30fe0213f890dc034a752fbb567e15d95b7c5ffcc7f6df680f18e836603a9b9b9fee695f893a50ca4a090a20b4071aac69d0101242eecb1b807c7fd77 WHIRLPOOL bccbccab1ee299ee18efee2c02643c978f5975546108f2c4aab4b4182683e5615206a152dfe1455667fd27b5d0f02cf41b5c651d71dbb42f178b10bb898be27b +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_sk.tar.gz 10509638 SHA256 ed50ca8e9263b56f19bc4c9f672a068b540b6f9dde9c66624a2be28f7b1b3cad SHA512 0b9505e73d4a47f7543a1a96c70ef1026b93b99a4eab6f360a08c0e64165183ba591b1035e66db38185863ab2687884c295df8968ff86945f03c9b9cb39efe84 WHIRLPOOL d38f381f9a4668876b1db2b4f64fc040c3e65b633ee4233b752a2d1b76f9a057019d29013b076540f980e2ee9a64fa608782265ce025ee26ce4faf10f1aa18da +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_sl.tar.gz 10691798 SHA256 289a07ea05dbca41e9838e57804e388f4087f456a99a3140b2d5122d91df2e21 SHA512 861f5a067de1dcaa9d369b93793b00d14f1232be651453ea1f482a2b00f6ab8028b616011feacd94006850c3938ffb1ddaf4935a686dfb6406fd6cf3846d9ec2 WHIRLPOOL fbaeabad42874e1d9a5f7ba99d58815132b79f7439390c258644341db621acd008d8fe2f6608e6263dc566aa916d230495d633d387199e053da34ca7ea9949cd +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_sq.tar.gz 9830068 SHA256 3a3a58ab74ead64c288b938b1e0b3bdd8253547bfb4b224060c2b37f9d503715 SHA512 18809eaf1353717a3353d0381c06e6fdfbfb3db6d75e272362869af943b866b9b577a156f5f83260654d81209089979af32b55b2d4a8e427177802a11ba62222 WHIRLPOOL c114c0c3c7bea2748b8e079f5b6e1202f3fe4bdc6fe4dd5f97af2a2eacb1093a862e8af6d58502f0b1e48d3810eadc1437cdc6142ebf487f4d884dfa11ce7f04 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_sv.tar.gz 10650352 SHA256 99c8ad3ff78e5b69d87f15d7b031bbe5ca7fbda1ba7cce958feee93fe882050b SHA512 a016a8f9e45689171a27fd314cb120e782388002ec84ca3fca65e033983cd1136483a7fd38b12fd2a4ef48da0129d2161a61640c40f1c687fd2bc0316d1e022a WHIRLPOOL b5e2e52c4ce4fbdd752a5bda73c8650e783744e00d9047c7dc660eb2d7bd1130c4ca57b9e461ba41f3db14392a8df6887bd21bbea7621a86e030864f4a548957 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_tg.tar.gz 10237827 SHA256 ca900cf63878ac4eb5ca179f180a07af760e9bd37ee7a4eaae98d918ade06009 SHA512 2a90ce132ebd5588ff047a183913d22efd6c5784369dcf1b8f443238e4539ed7bd5c6d1a8d6439eef2e2144301bfdfae247255b332eb19439dae6578bae143f2 WHIRLPOOL 1283c37dd1308ee07dba5fc09cd20d5be7331b6f668d50214dda1005bb26d071db2a9706ece7d2d1c0de661375504e42b3addc5f974879d6ab7ad8c27a481915 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_tr.tar.gz 10964509 SHA256 0e0cf56e2f4602901e4598f12b66391698c2d50d090923f6e20f5f2e662a859d SHA512 1ba0eb562b7309a019ea33ef82a2d59934653b095424910af832fc88bce50be49602675d8dc3101dd0f3eb82500b4ec8e7448754aa3b37c2849f6c41eb207b4b WHIRLPOOL 0fd259e918c7d8b4c09cf10a71c02d014b734200c693b256fea91ede505e3fa28fc206e04c3870f840fc228f5826a862c8e20700312cecffdd356deb65c7dd44 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_ug.tar.gz 9807638 SHA256 26dee38e275e3319dad945758335839b164c9edbed63e1d8d8d3295a90db7af4 SHA512 fc4ef0aa30798ed9881d2ceb901840ccd35732e34e8eceb062537e3002c135b69f95e2102c38e252249547910d4a8e428f90f4d1ffb5bdb922eaf1c525a90f0a WHIRLPOOL 5b8595263002a088970f4e9c91ec02fea0b0f78f1de13208327c6f180bb2f6716a4a33219d89e5874df933637144ef5194cec7c0af510d1f74c7586bcc9e3444 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_uk.tar.gz 9637661 SHA256 106ebd57a9d42e5687de4974bd1beadb3fea6e506d3f63aabdcc4400998a70e1 SHA512 e8dfce7f4d453597c6f877465ba4c5366c27f48aa1318f3e186d071615de0bd5e0f72e7976575a5fb25754c9279055b674700d9c018f1449a3dc4298c0eb0731 WHIRLPOOL bdcfd8a751b05a86fca5c666c7199e26a8b2efeb7d78c8fd207d301a5229550bfa0101f5856981f0bd6c2e540ed604dbbcf8cce75883200348bd6c7aea18f5b5 +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_vi.tar.gz 11309395 SHA256 b4b4669f702f99b479ede072714ca6a756878d03db9cbd3c092a882650101abe SHA512 8c85212fd8f118c4c680fbf1ad7b6aaad4836737bf86e668996f0a619fb2b432d22ead8f0a5c1007aa808bb15ee26ac0553e7d82b1756f935b3d9d814d7c2f42 WHIRLPOOL 43ac97f1e87cc91778ec6ea85d25f51348b6f99dd94cb6dadd39bd0249808114b9ea81c1b4b1c5fad69796fbdff0943c980d2477a4b2c92e344a4edb345e14ef +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_zh-CN.tar.gz 13871303 SHA256 d667a9af6b8006334f2b0c6206e42cc4adefaea549fa4338b9da5a09d850db92 SHA512 709249b0c9311512dc0b77a20caf87d453ce0ac441881fea39e54f99f01feaaa5b3b7b5f56b12117525672593b10b8ebae2cad26085f224c9dce353c47587f5f WHIRLPOOL c87779de5e8e53b537321cab4741ceaa27b2d72dfb3800da328520376668899c823e7f6386d64c9c4b971e2e24adf5a9a89cc4f25ea1f5baba16c09ea60418fa +DIST LibO_3.6.6.2_Linux_x86_helppack-rpm_zh-TW.tar.gz 14011989 SHA256 934ab06ce9e7ea7d2af3976d7f8419e21550d31ab35b4c9e9d6255c42194cc0a SHA512 96e9273574b8102258f8f21e163676f2d20e6d4944271418ec23626fba3402e93ece6406a2a7ad111e533a67bbd9cec45fc7c42b8977c471e491351ab4610c82 WHIRLPOOL 524118b1bf9f988aec5514073cc7580d51ea8d7cb46a815bfe79edbf9f7344d2795277849515cfa9609fd41a621c854acceb49712339a88598da4df1159c0f98 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_af.tar.gz 2214441 SHA256 23e4fc6ac3466154a853fcab38f749cd5a2049bec89bd39613db3c2a3e5c7437 SHA512 fbdbffe523954391e40d58d25238d61735e6b48ed584c73f6b92e6b0cb3a7c22db4f1bf0dc6b34065fad0515944543dff50b84b4a844ab3cad33c7ee7438e16f WHIRLPOOL cc4b4c0e41460bd2e853d08d505aaee3741c32749c342d482749d34a4f16bb4ef26414d90eca53d3f659707e1634a091029ff4a71d408db7aa8a7e75df00a710 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_am.tar.gz 1620514 SHA256 d0a60e477be50cc8124770e035de3dfbbbaf7c71416c1a395c54157ff22e6a50 SHA512 e772f780dffdf89bba59a46396e3a83fef9065f67e0a83764f6f382b885b35c2f142d4abfc21c8e0636bc93a978ce64d14e535d286919dd7f380bf4173633e2d WHIRLPOOL 82595911c01f6fbd67123192e4676e77efaf6174f503b94aa14a4285ef3d2dc70cce6f42f3297ea6546c32506d2cf27afa258c6602623aab2d9edad3800f3ec2 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ar.tar.gz 3355823 SHA256 732c0d3a4df44149c04fb902ed4fe6015da906f1558e03cfdca6e22b4cb7567b SHA512 b524c2579ce1e24fbacfc9e2c720a1279d1f82ea5977656b927ce308dc0c347fb614d04a098764bfebffa1faa2d2c6b6aace62af3288b05b1078b45f2e791104 WHIRLPOOL 42f90638e8879ce4953b1ffbeae2f6f768e225c9afe76041cfe17d7e2ee8863a8f615467eaf757ad21cb1e21ab9c383478eceb0aee5c4197f5650f3bcf94ce06 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_as.tar.gz 1657373 SHA256 6589b43a93cc783ebfb47525f1088aa3a786c93875605445a6bf5bfb02d58b17 SHA512 f6a255386fe6cdda88db6eb6d71f37e51286804e0119aff07fc1a5a00578b23b8a59a704f6fb2fcee794b9ce8a484a9605a9a9e4ed1a7819f517be1732292144 WHIRLPOOL c3dd651f15195d4b33496ac8be1b9c02a64575cb4378337655f56e74259617cbb41bceb2e54b287718885643eff8cc1645866a9e9655979ec06a6a1bfb4f9576 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ast.tar.gz 1599220 SHA256 2418ba0610a4f2578033c328ec1af7e11d244cb680395e682c3c3613809873b5 SHA512 e03534b2f458f36a3d772f54026f5c99a1628c34525a87f6ec1e0e4a8973718b19b780f63257dbd34b469812ac029f201d6114ede8f0bab050f502b1c490f8e2 WHIRLPOOL 4ba1a631577e2da180388915244666786fad96e18893621ab8205719f084652a56af4d6f4670eedc9f81ed54294b1172f7626b9aedc6a593d1b10371ef4895cf +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_be.tar.gz 1998157 SHA256 f63e988063699ce7aa649b878105fa02bbded6029607fa8f93cb1e2dacf22cb9 SHA512 605b17d085f9b53e98faa8832aa31bba8d92b964a0c89514aa0c3fc09a0a19a8310cfd201302ea9672d8732e3c4b334214b770155ece2e061d8926d5cc3d1d36 WHIRLPOOL 8f7d9a1f0a97d04d0534086e4777a28120cf715b3362f06fa15f5c180a8aaae8d48db3680f59e7c10e423f424c426e31b4f386419cb649ebdc3bc59961889b5a +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_bg.tar.gz 3010396 SHA256 dbc3493eca40fd44f192a4d18edd3085900a89e69219bcba34fe50f2f701b0f4 SHA512 74c93ee993a67868cb464b87eb0e07140352fc32a4c83052ea9b8f26a22112e77c686aff343eb7c4d4c211336abcbde759f73060351f04d82e20ff4ce19df0b4 WHIRLPOOL 93771548cf371bf9edbd42bfedbde08a944d09c743c239f597a40ff7fc847bffe19e4b01a6005e38f1625cde3263fde1393393b20179f976761c8aed113d4ae6 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_bn-IN.tar.gz 1653298 SHA256 e7a5c10ca6d3a378e956eee97f49d383000841d29d735a82129b56d2a5613995 SHA512 453b5fe80b9c66d6f2591473faf057da037cf02f96a2af1911fe60193d4fa0595cceb115de6897b6fd29ecb40ab96f9e954028630ad95de5d1710fb0d01aca9c WHIRLPOOL 0d36c3e0b7425c8f4625690d4df7f89819817bac3467f8e323d9ebc0524741cc5c33b20610ad19c40bb034df58025b9baa590b504e8ee76ab0dbc33164e5c9f8 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_bn.tar.gz 2027412 SHA256 703428a5fa69d52832cc394824df3139570fac9247a1e2750a106d43180c7367 SHA512 9531a8081e3056686a7db5a3a898b62030cfe2a539d5c1a072a3afd095f63373c510e90720ba037ec570e7a9e10fe9d3f7cb45baa353391061c0d879fe177766 WHIRLPOOL 0136e8b0716ada389cec47cb7409e79a74de57523470cdaa81c8a11d2fdfc3918c25b90fe0266c4eac03ef1e40220b6d76760a5ddb73cca2b4a975eef7ec3ab3 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_bo.tar.gz 1669757 SHA256 bdb79838fd508bc45caf844206cad246df732e4eb649f93a6029359e917901c7 SHA512 4de6eeb7204a6d8b0f4537b3e0f39ca77e9b81079025956ee132f795b97ebe2937a3e6eb890be2da6899ba7437ca563813e26d7510fba0f59a5b4ceabc028e94 WHIRLPOOL fff3991eb8ffcd8c45791469fcd1579b16c9330ed0c496c33986e87b1129221d8549a8941f51168f8a3e6fa184a4c1d6aa80eb00a6c0f8c2f94c42481badfd4a +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_br.tar.gz 2808619 SHA256 db3854fdd0c56c783985d6793c83892b6e8b2831882dee9dd8487decb91b88dc SHA512 f2ce843b4d91c7fcbefe3755837c68f6744aad724a1c716d52d7e7ace0f0742cf97d1e718c2659a6dc35861a9725fd18dabf8a9e717e6d30d9893a0c797c4322 WHIRLPOOL 3a867bb0d79ba069bf4071b260094e541c029e8c291b51808f4943897f6c7f90bb71adc3a94342de52b8ed24c9bb55ce355e6dd156b351938ddd4b10a898087c +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_brx.tar.gz 1633244 SHA256 00a7f999b418517496047abe69ec77e273a75666583a45431642da3395632218 SHA512 936ad9315a327262e7426fa0b018a878099fd51cbf507b6d188fb4f9970af726ac0ca8ce51c3e59928b1506fdb3738139c778661500da5c5c56f4e57778cb18b WHIRLPOOL 09b5a1c42bf438bed1549ff7578f1924ce70e2748bdd040b6d1d4c7708d79db3ceb30a4648dd82684d68afafebe2e36ecdede6249f741411ec24c0f6233670c7 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_bs.tar.gz 1598126 SHA256 028c1c986681655ecd68e8a16611285a12b2be21da5ceefe5b3273d26e5a2d50 SHA512 c963de7ae96b6f2a809643bea22244b96caed2c732bf294fc63eb1311fd1a78e1a07bf7dd56d8c34d0a42e415df3e861e27ff27695a6b0b7412d6d10df1d1ca7 WHIRLPOOL abc616996f9cfc2cc5a35956b8612373a56157a442763f0166a8c4cac9ca0578d33fe4344f1bd0961534dabab87ec742a3af241249f5f494b3ed7f5238b9aad5 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ca-XV.tar.gz 1595339 SHA256 814d8f5a54f4fdc0830a425ea45c4404d3db5b14ed12aa7ba1924d4e230edf47 SHA512 041b3faae41480f3f6d96351b6e663b1d518956beab31500b7aa4494d05d0b96d5b09d6c781ce5f7b16d75299cfd4434455bbdd4115d952c37c00a27735dbf96 WHIRLPOOL 933022a08f9d5f1d7da6c015a406691dea04ff3b51fe8ade4b874c3573c2eef5c0a3151d552b272698f5752fa9d757806564a8014a75adcf4c885f78490570b7 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ca.tar.gz 2246281 SHA256 560b66cc9f814b60324c5e6a30cb0e2a3a02a77ed7cd83783e5a1efa98a5936d SHA512 5eb6d8b326b706d3fd271597063f489228793aea90e42059a98894b3092bc3c6a2c7a8d14762dfb15871c02b8a94c8a686d5972bd26924eebfd4adefebc92f31 WHIRLPOOL f894287802c60210c801c3039ac267d79449398a3860e2cc280dd8072241d8f9c56ac31e46f4db9c80683424aca85390cf67b24412d18415aadccada1c809ca9 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_cs.tar.gz 3464693 SHA256 df87c7388cca68c8dd830f83aa526578b10e649842f81e2ec931b2c12a9c9d52 SHA512 99420a7e8074b84ec8168403ecf42d06607798d3e529662ffd97086f164726bd51eada57ecdeffc2d2d644ae0dfc92ed7dbc0acb127d77b9be60a514027814c1 WHIRLPOOL 14e5acdd60370e8e31594fe5591344954cf32fffcea9472fc817403c2f351ab44dfc4964cc03a2b8406e413615a13a887a842b926544093082e2dca78ac14b7d +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_cy.tar.gz 1575770 SHA256 0bf1c9ce706deb041db3fea4c9ce45c1e720687f9b825a27c7aa5227515a3c46 SHA512 60ed32a3fbf7c0f4232d0478bd9c791a76d55c08e6f8c6f1acc56ef0034bbe07ea06b8feb01fa3b02b6e68239fd92a122f31032ad58e9183460a4240ac724e1e WHIRLPOOL 8b5d256e626255b196928f5fff96c342a0c7d6d40d6d2800f3273f8922c6d9b1fcfd87b3ea78e5c7684e707508df06776ae5ed31e385dddea4135fdd44ab6677 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_da.tar.gz 3402468 SHA256 2e6a848fdb2e282e072b6263e02d7ccf182eb4ea7f438364c8cbd3e94dedb04b SHA512 bac54ad8834a5a9cc0434c660601274b0c603eb4cb68720395a04f481273473aef9ad8fa9a1ed35fd6a195fba130110feda03ecdeb7bde814f7e23521c7584ac WHIRLPOOL 8b589bf49fb6eb336937ef6d08198524a480c148218df92782ac4f2bd7967cca6fbe44a1e70b375e5578e682b9f96dbbe95074d11109871db16970600b24ca83 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_de.tar.gz 11645271 SHA256 ce1624072b3e79977cb24f1a2dc53f37ae49dcb7ff402fc293197449d4ebac52 SHA512 c09f8ec622c9b445e465b20dbdd8292c71f58388806e1d5f4a1cbdf254bda49a0bdbdc79c2df80032156ebe74db74c3d367a48acd81ce000d4ac954e041e7f37 WHIRLPOOL c766dada97e1a7db807b3d1a74ba49f44d05d37cf8c7418e87c44513250a5d1c848615327b041a717576cf6c7a634d6d9af8004d92ea6cedd02f8c7088b145e6 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_dgo.tar.gz 1644890 SHA256 5099de356828d75973c148b6d2ce60998d79d2b6412781dd857a05b232ff604b SHA512 f4eddb6cb04f35b651211e1ec284b3b3d66480b5fbd6bd71c21b82620a8e008e46bb51cf3f5d7522da6e37ce1add99041656778c8c9625687167d936532257d8 WHIRLPOOL 3b597486fce5dc442e7ccd1b35a5b4d012cb049e57dd086f2e474ba61da28e1bab94813f14ad130bf4109cb41ea761d1e82f0c86033a39bad780f6b2d8b99666 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_dz.tar.gz 1682093 SHA256 4592c34c986b9b06c314e57bcf81f10c10c95dbcf1edac83ef4aa06647fe3a5f SHA512 5ac30a3c7707111aa8f9e7df1a6da6061d6753b7dfb7a38a9f1c20eda7b71a43fc7bcfc5de49efbfa88d24b8700fbfd097a3b075a9af23b3438abc69348e8b65 WHIRLPOOL 30284ee60594e6a821afcf23eb216ad64f99b8f71ea7f4bb5b526261a37d885589d91d122ac89c0e258a697fe174d4cfd8567b93f64c2d8de41f3763f7564783 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_el.tar.gz 3197257 SHA256 3c142e175017e7fb6c70b03035dfb475f96e1957cbd1ee654663aea22d64909b SHA512 234704cadc34095cc158c875713d219cdad813d8955925c81fca2c2cc4eb6d5b3247b4f63efde563f676ca452856a75255d93a7ab313d41dcdd32c946e1fc3d1 WHIRLPOOL f7ea4b979dcb59d1e28e0c8bdc2af9b0111fd142877f2c3a244fa9da37be600cb057dfea146dddf063665ad91e5bd5f17c6483ce77d0dea1359c0caf8a865e7b +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_en-GB.tar.gz 8197843 SHA256 5a302611cac3e2d52c0762f3cac47ff0e3936a9a81f9bc7bd095ec4879c302ec SHA512 51029074c582271924f2f5b001d6b433ddceef65728b7c68d3ff17cee586da83b5754e1d23a473c5bdb098781d6b4632b56cd3c392d3df2a9f5b25bbc4532ed3 WHIRLPOOL f38bf72c3bfdec99cd2aa848605ec19c1c9181477172bc31bdb27fb784ebe3630fde3ad01189b6ec37106df664d7e6014dcb9b4e6c0b208c5760afe70a52faba +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_en-ZA.tar.gz 8118180 SHA256 3b8dd5e88bec89e1d8e1d4a70b08b04b707110702c495ac0943650ba174a84a3 SHA512 6474e5ff679c85dcc06da856eed58b89da70eead8cba185d13e6a563919820219c95e16099a12c37fa01a8bc6c6678129c89ee9d373e2c6c29cbfae5752bbae4 WHIRLPOOL 66682f8c2cd9128b6481632fbc08517766f3479534a4152e74c9040ebdd5e1497224bc4a0f5aa7d4015844977aac5b846ac1f2ed0cfb219c618f6fc065590599 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_eo.tar.gz 1574109 SHA256 5a397a3f92f413208bd2102bf54aebd1d4f10709beaf3628fc16dd86e7c54589 SHA512 5c3a9e1ca79884790d95d34dfc45138ba77be1aa631b50806ccd2539fba93ca867e9ff633f33148e341d7103fc779a5edb98286928f38229c88111c8f10b3440 WHIRLPOOL 61d906150c28250b8c55868ff3c5a63c6684c71c9a9be35b84c4f041c3109c1c892ea49b875cc115fdf1270e5a0d5d599e5424a09adff502e3942dfa99b28318 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_es.tar.gz 2795045 SHA256 4ad3134ea466d0548a9c57bf6a469f9b4576c07133910dfc7bad1f24de039155 SHA512 5b1a56b5074c94f817438017a78daf7d2588bf21abfc937797698eeaaeb9e1565d6e68d7eead330112f135869792538dad4f1da6d262cbcec87851c4388bfa58 WHIRLPOOL 179da4d8370bb32f21a82148656ddf6d030cbf28c17c748886b8ee2497d05bcea5e00150f22fa3e372cd6d73959044eb6e3b993fdd5116a6435d1e628af23734 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_et.tar.gz 2486725 SHA256 c4ab2afbf780e4b147c66c05c739afbbfa5470857343aed4128c836d89be031e SHA512 178957be4b0c9acede78c557cbb3565791b69d52d81e96e7eea1ae6a4f16d9829cd4ae577f3c6bc42cc7aa8da3276268544e27f0144a07d28f3468647a189851 WHIRLPOOL dd1684f01f54d7e86f554e020f4e630936f2deed9c4e3fbc483b9cedb2deeafed84e35e8ce1d39c73cfd0582a30e911ad5ac55d790ed154308186b1317af9c7f +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_eu.tar.gz 1769947 SHA256 265c83602acebb2209ef72b628ce7399067e12c3dae5b5a1afdb6511a7611641 SHA512 a22be4aaac3853fb32856365f3f5820a6b4e04916105cf849a08a68c526f43f1f6ae0a0558d321fa64f65a2f71ea7c495f56c18df954c8b430ffb5bd54887314 WHIRLPOOL 33ff55164167f0a24c4baf6bd04e73e9cddaa34548d953aa155d27c5be0e48373363ad9edb860cab0970b29eefedeec1fb0eb29d08d58beaa4b57b91845d657f +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_fa.tar.gz 1622242 SHA256 a5231271522b99e30b9d278dd50ace71d1b86b3a8b8bb5c222ac7c2b6a334015 SHA512 aacf453804e2327cb6b04b5495539f25101d796bf360a223378a052e01044b3d26f718b3bc634424751c8ab0b60cbd3c27b590b525ee7c8d32d6e933ef0176cc WHIRLPOOL ac99fa5ba7dda957c7bcd1714c7682d5a4462bc24ddcc676af7677c7e9fc957791a0170b0d98c7f23fb75f68d3a7eac6790ae9d4a882ac1632e70075c40cb341 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_fi.tar.gz 1589027 SHA256 b0ee0913928b4e6d80f50c6470b5d60856acb2a72464b19d9a0d663d7fc7efc1 SHA512 830e9f42a54f6ae8ceafca8bc3d01638ffe3477d793deaf62261679601feae604bba8cccb9b5df3d8778b7f7d5f12f29379940e9a122ff82b7b14afdc639031e WHIRLPOOL f961dd29091fdf09f3572cacb9d802e03f3c183495d5c6e82b1c8250d9c38898d338d99bf36907bc6b38d53db3c2336b62d67fb48f08fbafe96d3fe8dd202c05 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_fr.tar.gz 3793421 SHA256 1f3c1cf6fdc45cad5d493c992a8e7245f70e165071b405ff2841e8822e4bd18b SHA512 542de88da577049036a994d4df89720b737ebf465571876a69dbd7fa3c70c8c49d30440d4a6a41ad75d70bd1cf9b61750a8420c057784ef69297e280356a7b79 WHIRLPOOL bf9e9579c13f056f7b3132c1ad463b4ce3323ac61b26712462f5ef43f81eb393bed6fafc809d8bfd539241e4ad4346bfca869de244cb9251e2da7ca1facc7c37 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ga.tar.gz 1601426 SHA256 fbdf844e8fc9f7bc9b0893dea9650ef4e1cf91eb53e11abecd080efb486786be SHA512 355dbe599187d400e2620a90cc6e38315d030331fd14efd219aeba0ea0fd979fc940bcfa621d813f69091daa6f2b6e8030248483a4aa07af1383e8577033a65c WHIRLPOOL 02a514e079575784ae61cac51fe66b299ba34fd12247b79bf8ed18ee62978f83c1558c4c9f1786ef5d5fd94f0cde8d1615aa9059454e6f8d2919ea817edd5a72 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_gd.tar.gz 1978201 SHA256 54989970a3b5291420ef2dcbf5d6f014c40fb5274f51c486df0dc9e88b868596 SHA512 6cf8a8f400c3d17f03162adc769c4368a1cf81f5734944cf83c1fa2f2365fa06fbb4e6cdf064fea612922bfec0753ba801f3fd78ca500fd949c795d6999af1c6 WHIRLPOOL c80056f360180202310ff17a7395bb53ca21f7aa01c79ff008ec7fdd9923d315add0878f9cd822c27bd82a1f1337c87a395ca7bbb71f0638870066b99c67ed22 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_gl.tar.gz 2147080 SHA256 b9eedda5b8752be59b16e7d93853a3e5d2deb8f131ce498d9adcb2bc27d9728d SHA512 f8312e8b369137d9fd90f6d12de17fedbb86f673fb1abdc25ad72cf2ddf753b1924857de8a7ac44acbdb2a751d9d38f93026f0372b8764285568db29f171caf8 WHIRLPOOL 5478fc15a3a50a15fe06bf911dfe8888282a02957585a6d02bc67de0f14df2ab945cc1ae240d6a7ba13a7810e4609bd9776bce5c6e96b1f2e1d02d82a2fa26f0 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_gu.tar.gz 2294236 SHA256 f93e2c9efc8c4b7255298e8dbff5ec2d4c82bbc555570d0c14a410d9def8806b SHA512 93e7abb5811fd409c61823499800ef22f0f8aa58ae7c09bace9bea4efd598e05d130a0a124cd8ae9569f0eb9c81f6dbf170863fbc0357310f27720dfb75857fa WHIRLPOOL 297d6faacfc38264ee45b6b8206a87ea549f3ef982b16d89bf366e84a5bde6fef81593bc80dbaafd53033b402c486ed4b47505f4de69983881f8e9cb1dca0666 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_he.tar.gz 2673533 SHA256 7ebcaa1e72dc7f3b2eb8f4254708ac73c9593621a015ecd570d3fdf2522dd056 SHA512 c4b4994d464c031bf047e0f935393fe8c58444b07462c62bae6869cfb2f9b77f036eb8ebf647d367a7d38e5fc22134a3407741fddb8d90916d5221d6ee647677 WHIRLPOOL 59358c5638ecefa94e783704cea67b941ae0ef74f3bde871fd87a132c64794838e686c1f611dd6037d1a76e0912b13a514091f7ea635f179810e53ed9049c300 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_hi.tar.gz 1721450 SHA256 f82e77e9e6e866fd07ada3805b5d2a86a172bbaa0e713f7e69bfedc289cf462e SHA512 748631c23e58f80d04f4ab6960a6da2c8ee662084d8b2a9536cfd8345282f7a1887f428703abd7d8c158382facd1f50263b36890f52a4aa417ab8e1f4116bcb3 WHIRLPOOL c5ec934ec8c2d17b9fdecd721210f9db45100719f78170315f41a85f682559df018accc2d8ffca176de4951a090495069fd5f45a59497fd692a079120c7d8f5b +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_hr.tar.gz 2355051 SHA256 1ae1053f14fc2622e38121ef5217b5d625eb1199581af079cc80111fa198d496 SHA512 35b847e6fdaead9ff273e5f7ee357834fd212538fdd437469eece3f6ce37971967a1e94794ea75e700c45155cd4b98e32e37e542b6695e6359fd80f09298844d WHIRLPOOL 5cf4f942ecef567f07797af2a89bc50c0299d9f7e8fc9b44b9d934144d9ac7d1ddee4419df844f7c97411f048e2dfb0e871b7438b5be85deeddad98603be51a8 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_hu.tar.gz 3772104 SHA256 fcd0f210657f2cde6634bdaf467e44ff7ffbd0395a479a99a907b28ec37a9411 SHA512 ec4fc59f9bcc1e643b8389d393748b2b6167ceb79cb2bec9a9d61a955661d34507ee2176389877cceaefdaea3059dbc6c19cfaa8552c943a10337456d0d1e41c WHIRLPOOL f34d734559d3a21b9ea471b1b17c714231afaf3b1c19e3645e30ad8f9906f6acdc526d66a68a437025aade7c8073596133b479809f3723267d727e0b878671bc +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_id.tar.gz 1572896 SHA256 60570cb9da1a8f0850bdda70353da2d3b575f05f1ec76ff54d178a8e88bcc145 SHA512 6dd6afb22905cf7d2f061d46e663c91a0cd8474b81c2cebb3e78f87ba4056e854eef8e8f613eaab8684a2a99c9ec70764a92c1d7904a5cc33e3d0dac8f2dd9d9 WHIRLPOOL 126722914bd02d78b22d2f7a11b17f5d4663b43290dd2a1f8d62b8258cbb223e6a6de83dc7fe00d29e501c2a98007ca67bfac5def1b4335942e8cb2500c6057f +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_is.tar.gz 1596206 SHA256 e97e70a37c6ed77a8ce745695cd0859dce01eb4e42ecad96131b80ad6e74b309 SHA512 39b0f535dd3ff18b57afd825396265b07722b56c8c8bf53098770b9eafe85207037fd235c52184a71496ff3e9def7d6dcd905000b8ad23c91d0b1dc4c80d2464 WHIRLPOOL 044879e27b65b254083d30ee79e0ae4cc0d389cc58396e2a5197cb4125e4a55201c8cf521b2b14a409bfd1587c0e36a65872180e0cdde4aef9d3dbbac335be49 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_it.tar.gz 2826060 SHA256 fe52c04e9a0149a02b830a0d1068435b26cffd00338180af44d092de6595c4ee SHA512 eddec80a34e36909c3edb7c011da3e76426351a0c507ff3b87fe4dd3d236c8445242d474847e1507dea9fe9a5cffe6186421176e1fa16413d0437eb9c706519e WHIRLPOOL 5339ac0cae4fb4c29f0f55383782a980c4c0e9d059af089277cc95b0c5f1c25828d288577f8933eef5ccae361f931e83cfd6b8c4a84f226648d490ad26b41beb +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ja.tar.gz 1704054 SHA256 6c1eab65a5a231370a3fafa6fe2ba4784abeec6241655a3b1f3ca0392eedd73f SHA512 5db974c394d941c40fe72ab08370f14d4dfea6e45ea4a8f7a6ac6deea6f5d52cefed4e234fb5dfc99c9b43f7d39339c6ebdb29e40d9e27cc91385372efc1bfef WHIRLPOOL 36e7d48d2911a0c117fb991bfadb54fc41bf0832d1e0e0fb663698ac5e4baaf0b405b17fa774dcb7dc65269a814bf352b0a3c5c364e1a6777d6eb56040b6a48e +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ka.tar.gz 1644034 SHA256 41bf8e63d6ee43ba2a0aecdb08e25fd3f0d4a514358234ccff2ef8b64427a626 SHA512 357e1b8625940a245beb96f14e048d4dabd8378cdcedc9d53e5e4ea2cf8d27ee298f2b7b81c4632771e158044ba44ad21a6ef5e54b5e0db275b08b930a2ecc26 WHIRLPOOL c59fbc098d0a3c62f2d63a54a3884def080afaebbd0f26c65f28104b3a176efada844d6143063586d1c468e312b953e552111a7c0448478bb20eb6ff40c80b61 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_kk.tar.gz 1640015 SHA256 7fbc8303cf1b8386c0f28d649c452ecd78374f0884d23c610c5a7187c716f823 SHA512 0203d017526e89ba0f3da0cf121c0ced148be5304b4bfef4c85a1ea545539096f7432651eb7993cd46ee06364cebbc6a48bf3d1a9519c2ac7c876ed12125c8f2 WHIRLPOOL cb63494cb787bd3eb0dfd126d8acd6e6ab5b7b4ab6d1ec699d6c5aaf1b99336de97127b4c0ca1b204ab51e141762083ec694e6982b972d1e6aee589843fe5cf9 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_km.tar.gz 1814203 SHA256 dfefc67bba71672cd695b2559d954df638c2f88c4557d82f23b70b3ce4f835b5 SHA512 b394161078e6c32f1e8fad730b68a9ce2f55920bf9205569037e5e3d894c59145c11e90947df4a94908bd9754a427ada9026b0cadce047a6b20f2c630eac5b25 WHIRLPOOL 823277bd04d6b3eaf1233df47215fa9cfa0ce285573b1bdfeafd0d4d814e19bca3ce6ea811bacb7c1186906057a3de3bc90906d50acbbc0c355c2a30094beccf +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_kn.tar.gz 1667137 SHA256 d30a1257013a39ee3c992d333c02e4d5bfe194f558f8dd10c14dae6c2a2dbac1 SHA512 885d205d5624ad3997dbd000f96caef757323ead74d8621e773cca03e7dc683145ac7bbdab85abc986201c9b3445e50e8f7b8f235f3464bcc02a6fcd1b46d4e4 WHIRLPOOL 3ab2e1b8bac9f84a020f2a90772686244f15cb0f1a4d6268276be1fc0eaec7831fbe014a5bba4ce018c298c03b2a1b1394652b765b9b727264c0bd07a6b97383 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ko.tar.gz 1569501 SHA256 04e8b4321d838087399dcc7d37fc7834a7e286b3247395a6789d3e728cf8f6cc SHA512 81dcc373eb48b02ffa0f5d7fce90753b61bb5d768a74856b69f614b80a03497697e94e728f38ddeae627ff75db0a095dcad8d83fdf1c4e9075631cb11ec71095 WHIRLPOOL 3879c8e5b2f9233205ac44fbbc542632218a12cd5b140ac09c0843a9fe16f091c7f68c42e787544bb5ba45b592935683bc0cc9b21c40e9bb841f92e2238cbd8a +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_kok.tar.gz 1633317 SHA256 8bdfa586bfa5af7f73e083bfb53cebb22d35c1165e18dca20e528b9a62b1f758 SHA512 9ba2cf2038f3e56121f02f820667975ca5cdc6e0fd84da3fde8295852bea7006c4f5817f77493a4056818fab2a52c20bcb5fa6daa23cf14fff0f1064081bba3c WHIRLPOOL ece3274c2118b6df19caa59874d7d76e37d719a1744288348ee5c05b5af426eeaaa9ff8a678917117669aa6471264fe8026f141671274f6d9424291f62c5fc31 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ks.tar.gz 1637535 SHA256 ec7adbbb6ebd537afbe03b5ab07b1051724adc96df1a02d67c5b348d445c488b SHA512 35b6430e24bd0adece429f41b5c630c5eafe24764aa05dad872a571f9aec35c01052ec94c687f4b2b39b2690eae632c9b420dc501fb9d14f77fef6ca0b68265a WHIRLPOOL fd219dd52b84993bae8423fe05fdca32f5e149ff03a723b307dc1cd20b7cc77112939beb8ef68068a94b793e65a699237a696744808816a52311fcad1377e876 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ku.tar.gz 1666668 SHA256 6ab84ca76da3198e5dac6fb85790b0ba46718a3e6288b16dbb9507f53ceb753d SHA512 0d99f2d46bd644170d4193840b49d48de1d9ee57bb138ece627b916306d9e915ab5dc72560d9c176ff5ee56686e114bcce4c45b7cb1f55e47a5423852c8fd8fe WHIRLPOOL 533645adb8ddfb971534ecd7bb054793ce0af1a7a8b6c30b0552f9b89209c7832d2dc6448992fee73b852d775e92b2162c8fbfab27f2fcb9e89695196913a603 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_lb.tar.gz 1571535 SHA256 d2f9c1eac12a743c207412e4228055682d678560434950060ae7ac5ea8fbfaa8 SHA512 24931a7baee2c783beb5daab78b403b127e2541f8a32b2ac4f876974de7155ae150ec053567060e8c7a74acec7392e4d8da55777c83b2f6724f56dbe0213fc3e WHIRLPOOL 6cc8805a03d938e7bc79daafc65ef954f8a0e141d8420acbcf423f1784a60e08289b8e0660222e18a56f779d7a4a29de7301d10ca59dbccc0b53c3ec05cc5206 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_lo.tar.gz 1626607 SHA256 db09efe1d835d6ae40e036664a8f69d5ea2aeba0c850e878487091d3168f3da7 SHA512 e6db74b277635f13740c024c1431a6b03c799878abb5632b60b98a9e6e6a1ca802f98d637f15290489875b96e63d37b3294380c9a0eadb62128794882f7f5f73 WHIRLPOOL 8cbdfabc973e5d3e9b99aae60fea91d9322cbf4ccc8ca88d364429053a77554eaa8c242cece30b71bf9dfbac95f651429ff2ff47d3be9466ad61769e74a500c6 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_lt.tar.gz 1966244 SHA256 184f8bdc19a6d5f7f6c9dd02f0628eadada77ff96a7c7533694eeb4c6dc335bb SHA512 0a65c6ad69d8a63c9aab6e5d155cba5d69f1460f75f5eccc852b1f1cad475937bdabd5a8bd908836b2919ff5215027a3e6c74f83f11a6c1d08e9c45f0d6e6ab4 WHIRLPOOL b28180ae85f0e4dfebee79e4193839f24d457b4d2e67bc8c7ee82b570992e153158afe70eee181f094369618db503aff37f5ead638768f17189b762c88f4fd96 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_lv.tar.gz 2350965 SHA256 c6db625bcd5432fdcae6ce57b026298da0e677262732b7ced23acea7092508fa SHA512 b40c21ced0fef68c1ac60ce14aa602d8774cfd6169d416d15dba82e2f2dc6a2d90950664ef8c4bc77bfd2b5ed761ea69c570ab1274b5ab956c95234d953c08f1 WHIRLPOOL f15ae2a986f6ab1fe038dab111517011897608cd7d31cb864dcd096e6022d246c19cba3a997c35c99dd5529dd858bc6cc6c2a51b6638840052ba808f16045455 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_mai.tar.gz 1644291 SHA256 721ebcce78b35589df6cbb852e7cd291e806d89be292c31547dcaf3693540a5f SHA512 6b15abfc823a9c64312de248ec04f364a1d7153f1b38d982b99a8ccf55c9e88d19bc2bdb445a1f0577ae55a7b1f21f97ed1106b1da95a4a3ff95479b4bb31c26 WHIRLPOOL fc7d14cded8b39c3c5d346102566164e64e4fbfdc1cb52bd44f11c4e846ab10a2f44c4259fb7ee992b8b0b1b5c4adb55236299a7e368f336245ecc9f21920b21 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_mk.tar.gz 1643150 SHA256 257c42da826ef9393e6c50b12f3902e9307791cc3092a699ba2fc4d011792e42 SHA512 5773292de939171c1a280a009e1f9756de342a3e06568b4bc08e650221cbd88315ddff3407bc6fc02634de6c2aadf29b0e0e0cef85c2034308917a6af132e442 WHIRLPOOL 6bd2de4e0cee957afcc5bf8cf734c7e33f48fd9b0a3faefec266ca6529be89462901b0f0d59711e5a442c9431c642701872e6f10d8f0f0f8d8bebc6b875296fe +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ml.tar.gz 1677264 SHA256 0a7cf635bb3ddf4647ab5d934a52e836585160a0a543c0f0e8cb7358d346e2c2 SHA512 aaacd6cec1c36832b856a4a9a1502716d85cf3503d8fad4b250abccf4962b2b2fe791431d080e3fc97525e689b6a077894e64539a03f27f02c8a6e66f0a66d92 WHIRLPOOL dc00da3a8b1e9f2422abe06a191b54a3a1fd8a35c02153c49c7aabf79be6343abd84d92a73a6d2560d22ee6c2d82ea168df8faca158e55f606f3e9d5054e9927 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_mn.tar.gz 1644956 SHA256 f53f07a5062c619a33a669cc61e4585c90abebc9a319de9c87f5340644f4031e SHA512 769f46bb7f6b2100bd78019005e0d827328e70b5b4e3d948d569feb986d1db789a27b03550660fe25cd3b8bf3a3098061dc514f6fee9928ea97d917637412c6e WHIRLPOOL e031d9cd15b41c742836277a76b0121c2b1f6c1f8d2e288aabe17585b8aff1756683714689e6ebf1769ec383cff5ec229603e1809b51eeb649aca18583377d34 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_mni.tar.gz 1638881 SHA256 e47dac8cb43e33dfffeed7539f349869b64f7f1b51ab1ae50b771affa1a70b4c SHA512 cb1db3bc94ee1cc07d2148169eee883339b5474dfd9d3d99b0c7072aa180381d82d040f6fc7d8c5d919797df2e0dc19fc19b0530592180ef8351f3465b82b1eb WHIRLPOOL 18c4c57faff8b6ccb51d62938e2fb6205aa977271b5e114f8b3868d83f39bb51ded9adcfa4085e887663e132745f6762e38fd87c5e12436e779986593564b13a +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_mr.tar.gz 1659355 SHA256 2df4ae7efba2a23b7a214705d694a326e668abf7736a1e54d82c318f83bce4af SHA512 d0e6fbc88ce0a60dc5dd174ee766b4294ee7043014bbe82ce7b6ae8a020dbcd0ba281c926aaec7d80372104543e92ef7125503a50632aa0cec9dd7fb4aa1b62d WHIRLPOOL c3ea89c277cd63689eb82106ee937c1fac1873f9b8845e9aca42cd98b104734cb23ce44fbded3627c1c6d4c487022f11618bf1e0e2a479d7f01737f97a71cef4 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_my.tar.gz 1683651 SHA256 51c8ccfdeaf3b60f9272fd026fbeecb813f1f55fe9e6b929b16c1662eab183da SHA512 962dd6e0b2ad628183a9b1f6462e5471103cd651daae57c1b85c614a06f0af1e1ce270b2b3c58ba45d9ae1d99f82c29ef4292f82d7b8ca8fa2aa3d305cd43a11 WHIRLPOOL 39bb8937de0a6d741df8ad71828e9daac43ee87406c784675af01a699f85447bad5c94f01e5cb759087575c07fb537a357616c1f5f9ba198034d2df9b29b6108 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_nb.tar.gz 4794113 SHA256 49d3400655082502a02e2dc3f51d4873369b909dcc7a3e8ee73fd5333c05206a SHA512 adf38432699839f47663a83d4f6ccf0dac2154a08f85fa9f69dcbac9f34dc8f075051e2cd0b062c2334af1a992513fbb203a5257453330303b0c02100e6dc1ab WHIRLPOOL 9ef2823bda078ca4dc01d2baf89fb1ae9fc32cbca80cb9282792561a4ba846200278285af4f781f9ad37ff502e97c5fb278775c13f6a27eae15a33144542af86 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ne.tar.gz 2037310 SHA256 ac67c4148f68186b01d2b353066aadefd7e40e13cbc737f8d308eaf7f38ea05b SHA512 93a7ce02c92a165031a4f1aab47188f0de67163b4c13bcc0a90de77af56dc1f6ced4ff87d61a6e9bf91d459e12d6a87ef4b669218ddc340dca7e2dad25481a41 WHIRLPOOL 57a8d7f2d7b5bb5520df5195bb205c9227a12e429d095ab82eb92f3e2d282c7f4a4609d59d135f9ac9e71a6d15380d7aa7064eb92dbb349d53cd44c8038e05f1 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_nl.tar.gz 2317956 SHA256 537b1cf1aca634a26417755e11ea1d321a229ec0acd40f48ba21e6a14ab7b799 SHA512 2bea4d7c84a97d93c041ef31e7b9d4cb246cb53642cdeee9e221b6922bf33cd0af42585ea3158a627a67b6e75bef6e3c0dd900b808ec3144d666e09ed663f43f WHIRLPOOL 9b62b8bb674236f7f0b93e9f04d11a2ebc14c8f9e98c622236740d2352207ea86d61b9454d731f52742dca7be1aaca321666e1be44f378afef428d96b8da0088 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_nn.tar.gz 4800904 SHA256 de0e0aac769bb626040bb8f3c2a9224a4d9c6f4cf3471383828266b87d30fc48 SHA512 375012d53007661d8ddfaad34c6180351e08cd5effcf722d7043ab8470e3e71b97501653143d141a9d49f1898777ea337d53d0ba3b44419d59401b729f9d4a91 WHIRLPOOL 14e35c3fe47e6611f3550fc21a4f78ca349e0ae4533532633470f49b294f4ed9d3b5dfc4301ab597a5b197807c77d1182a1f8f7375e7b5a9b64beefde73b614a +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_nr.tar.gz 1613399 SHA256 8635ef8bf9d79501001c823ac66ce7e7b5c7f05d75c11316257cde5847609916 SHA512 d4e8dd5aabfb43bb3ca6e487cef0c07746348b1dfaaf50a94e1813ca971388d2f54d2756d4fe89ca4e22df4178adc577ceb767226059e2574e74bf3f8ecb14b9 WHIRLPOOL 3b2453e0b5ced25ff907ada04fc8729ac35a9245a5450cd862908166cdd1eacc5fd379b00e8326dac0a5382f7a7d5177c9c5bc7a740a5d158a211d4a289f91c2 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_nso.tar.gz 1602710 SHA256 f15f50a7ced2de9f85495cba46ffa1d0774c86bbca702495d31806cd5867ff83 SHA512 efe5b320875c7ccac5b7749cdcff1741f0de925af65ff5a404fbbebabd47f941dccc4c041df87026d51e3bdf7b19f2ad74f5e15c7e83c7077abb7ca95e20d9b3 WHIRLPOOL d11139801e1547a93ed4ccd1597db522f1d3790fa19bf735811d2df4d98d79bc5109efdcc0c7bcad3582ed59db4cfeec160b90b2d66666939e1570f4e7953392 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_oc.tar.gz 1794480 SHA256 2e200492c4e2213305626980d340ce446bbbdb3c297da4af0f12847bdb45be6d SHA512 88f5f69a0532cf24657eeee61348e8d612107c7777e3b1aa84b47441060ac96da036b19a9c0bf811534ab4ecdd300439e30d06aa3669836cfd389bfc8c0a60aa WHIRLPOOL f21299b171ce284970904b911e1bffde694f05c23bc2e25ac143deea937605e8b71bfa6dfb066cabeb47e5aee6aaafc8c8537a1d5a2627cd03eb6dd6a6b8d8b9 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_om.tar.gz 1584239 SHA256 62db8cdaf5b28d6c3cb5bd03415da09e9c2aa52c1d50478868c677850fab121b SHA512 022dae37dc607b1eabbf2d764ffef2ebab9c12912f257437d2aeec57224284730522001e165f13a0a720f70c093111ac0a5ae57ca46157c80a372cc242a07578 WHIRLPOOL 1bbdc42bcdccb979e1ebabf3c1b24355241e64ddf423654e0828a58ade2a8ef8aaa23efbd3acbec2fc578567cd9a7cb1e4164428a83e8e526504b2697bad5e15 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_or.tar.gz 1656169 SHA256 7feb5da7bccffa1436e8e596cfcd4450f02be337aa64f2ded6e2508290d0a754 SHA512 a27b7feb2ac3bfd6c45f370078e786e8bf7c393575324d963131dc1a19a3e6f057f36c87975cdb2956afe948cd8494202c61af17b3747f6ae24c9dca26486b58 WHIRLPOOL 5516c72e7a4c0c4283e87734f1c8be953b870700c1ef0f5d610eda605e72afba6c83d7e795a76f63e3b03d8880a5fc052e53158ea42fa96962c8d1ca6d4d1df0 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_pa-IN.tar.gz 1634749 SHA256 65ecf8bd4edd258cc20833240184d58cd6ccc63174cc2aab863f07869ba78a64 SHA512 4d076bea10957178ae7179f280420d846eec2af735d10d07b9d2485524e1a805b43b69d946367c4558842a288aa7ed6b1cb0e3f29a032512577bd31b6d170c28 WHIRLPOOL b7b33640003e9f2be278c2ba0ff4d501633674ab1c701aca3405bbe5d28df2986c28feaaea14aa9c7bdf0a3735e72cbd19e93d90697bac3b8f087367d63a8547 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_pl.tar.gz 4304103 SHA256 e05f827d57e01351e3590275ffaf3b48fc158ac3a8f478151d569e6fe3f2a1ba SHA512 ff1767789b77bd60b3d0e1bee8ded5efdb91cdb142aad91cda9863796b6e9839f67ad88ea980d12dd90f2f9b74f54d99b2b40ae089b8d50bf6dd87a0ba5d4676 WHIRLPOOL 5ab4ae39721a50717327a3e8d07041b72ef339aed9ce5dd5d302fe7310e3a51b10e77531f246e5c9dab64161e564aa219e635a5a74bc8f4967a32d04e54973d5 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_pt-BR.tar.gz 2909784 SHA256 2a3e3afd94c1870805f0ac8e53dd2b9a1a4eac5ad344aa15ab8fdddc0216114d SHA512 5e11711613c9084b88bbe3359c3e48a83b0027646843fa9b226936b3bd9c8a3875b3d87600a87f9cd976bfdca1d9827b275883b75867c5c17854f8e1aa0d299d WHIRLPOOL 29ba6c17868258c3430b2eb2e50811c51002e13cf461b35193e5725543968b6a2f46c7530b26f9d2795ac4de6743cbce3c1981d6d36ae9c87102782eef1677ef +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_pt.tar.gz 2167609 SHA256 4042c81579b63447f3c12e27a49a908e419484a435ae427d4bdd331548e854eb SHA512 bdef98799ecb72d56d04f51cc72869965d1cad806e20ae14cd9fd2ddffa942daaf1065bf7e286e4b4df51b9d4920094497cad5157090c31b82993aaf3f64f1fc WHIRLPOOL 81d855249fa23ee54567407e88f96f29c433d30e30c86709a1a1fc22780e4f3fb0ed3c0fbd76131ebdeedc1100b213a76b58f27d95c2101b2f2a702ad1c2e5ab +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ro.tar.gz 3416344 SHA256 fc43f1b1c0b1c74dd69ad5a49fa833a1a740748331293ae62d9611d57202edef SHA512 2bd680b6c3ac48045a547d603a659080d9376c91670c5e118828c0d0c3a793995e8ba8767b8818c72252f0ea0d5a45e4b2c5798e0c911fcbc74e62a6cedd33ec WHIRLPOOL 6ab925cb476243ce5943a2ee71a4735267f941524e5d8b3e2a4f2f15806505cf8f9962c95b98fbf32f1a784e406ac03af8135211d5249879ab6d25b4d516fcf1 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ru.tar.gz 2720594 SHA256 bf2c37f26fcee74370600d788452162607020a8d384a310a5cf36b504f9f156f SHA512 a1f28ff99d917ec63387bf936fcd38ff397fe1942d9d7271eb1f238a0a7c0c4449647db1f90d3ef638a52bcaa948cdc44bc4914c3806b0d5a84ae447f79b1c68 WHIRLPOOL 4436864ab2d0d66d8b63a54f756a564cd912656140d81d6d7d3d2ef637b6cd6f2838de3f039fcce01aba7ca958f25d0c9b1cb68c3d04821709b2665f6d33fc62 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_rw.tar.gz 1593911 SHA256 2d788bfcd92697ec6e35290a06642208594b6503ae58767e87039cebb3648781 SHA512 fd87dffa774afc71c37b39ad0d96d864920d9aa1b382d2f6541ee2796513d1cd088af6e42ae45dc0832235489dd24a77536539481edb2103df95ac2e5d2c32a3 WHIRLPOOL ccbe1c88e8fdd9db2900dd8df56f3e7affd695d419a5481d88620ac31e59776b350dba67965ffaba9a86d1abae57c099dd66db44c01070841090346d6f361c3a +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sa-IN.tar.gz 1641972 SHA256 cba5d6d2162ad6712dc6278af26c207a645775d537498402e651e6cfaefabdf4 SHA512 f79e4ff8161abf8f6aa8421a774837223a623427861650c5f5ebad0ea9f58ea09ef7da9ca0a763f26d4ccab426d8be955b0466a8d7bf5a305920342e65b1b778 WHIRLPOOL 67c9b1d4bca2154a3b80d7b18868afac1a4a086598ef440331fab666afd80a6dbcbe173b2e02a18a03569bb74961cbe576b8a3b7e8964bc803e362be01400d0c +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sat.tar.gz 1630238 SHA256 a8baee5eca8d2a0bd9669678c1be0fc789761b3d933a563c131f276b2ffa9dfd SHA512 089db75a557a09695769dd80db3c7d712d697047bd1981e3dfb910ce14fc2d00a54e876c2bf5950c93cbb1b45172f0ab6511ef1f23cad2c3a0d4b8859ff0307e WHIRLPOOL a5a21724427ad4a71a82d2255e41e4efedefa4197e93fe6e17ac2e2bf816e8a2d2cfd6f7d3ee39013e3be6eed6d4ad7a5337156bef5c5c590c374acc9fedadca +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sd.tar.gz 1628698 SHA256 59abfc168d88e91461581086ed150b77a33b00ae8da09ed51c536acd81780f5e SHA512 2c09d35432ef343434f9bd1d753a7396f5a88e16516b246540f677b9e1d53ace110a5591e209ed4087188a6c81f301b45a527e2e4981c58dfe4b013f509c97df WHIRLPOOL 3df8bf4904e1acaf741d7af54b86ee7cbf713e77a2c005bddb6c48128c98796228a9129ddd101798e450f092abb65154b43d47e09abde667fb8368d7a3d2848f +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sh.tar.gz 2781245 SHA256 c9295a9c6c83ed1761375ba291f67e87002df639758b346205b3f0bd9bcfa240 SHA512 99cb3fef44b34739a70fb8054a8ecdc9c9fdba1e93769adeb80b79454d7393876b5edee78de9e922a60bee211d88f2b47595a210cd5f9970fdd7a6a4380ccf3c WHIRLPOOL 44f2fee93b2cf49b6835e625adea03df1f478854e5cd1c8cb0dc412f826b1d2ee7ab0032c72e840bbcab8a30d6f5294bd8f3a52d2390bc4c13fc10245ea417b0 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_si.tar.gz 1944935 SHA256 0b2e0fdd1b3c9d66e94c596e1b431d92d040a87c6c7f06ef40654248a5992dc4 SHA512 195966fb69fc3fb4216b3f3fd89fe9bad4a3edb4be03387cbd2c403ac2e6224b609df165befd4fe5861a41be09a86a2697fbbccbfccee829c4d8d84176c2b9dd WHIRLPOOL 4fb243b32439ae5cd28f6811a8fd621195b39a9f8ad28d236d7664c9d7aa1c86861126bb3843d1a7af2b98b7e346d6846a5a886edf6929b97b0cc307ccec3d3d +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sk.tar.gz 2982110 SHA256 285204a17c9eaabaa54a6404f83b8c369c7c71df20673c50e005701e7ab477c4 SHA512 89db565de224c6f617a557bf70b9a79fcff03a72f73c179c5187f685b29b3484ca6c5edc5223420cce5f94f9efa92d165b2b8f1f7c9d57b491b80d0a15df723a WHIRLPOOL 46ba1c6e0c42018f9d667d31c3bc731231c5714ae6072e50f73a794d676f0b438870d945153fbbea661d57bfb01da412722b073c642aee2eaf17cdc6e498e9a2 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sl.tar.gz 3135496 SHA256 419284fdb2d7c4877cc735deaf9e7612e6f5fa341c39e90142c3f972d97b1230 SHA512 1d03a8e8d99521ae35d9121427f53187adf930d89e28c1a4b1b0df355d69840df4a8be412504e128e3c38fecdb39daf172853ba7e07bff21e8d99469c9560fee WHIRLPOOL e43ebaaf3b7ae0a82e33c7bbad56e377c0d32587338873a371afc067dc710de93fd11bad05a995cfbab48479cea8ff8b86b4849faefbc143fd563b4c3c9ee5da +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sq.tar.gz 1601643 SHA256 cc18f5976334ed3ce9a0451b1bd2f26f49940d50f6f5a34be7ad8aab243f7247 SHA512 914b3d93b2c98be9d26d9336ae5fba5b13e538a342f768c4f7241e6ae98ce45e03e1a2fdee8168438b06ea83fb17e94b00eaa3c957b3ec5db4cc914cc1d264b1 WHIRLPOOL 919c48c5920793e09d5fe59dd2c26283b87e1a201ac57e0f2f07900aebe38f9a835edd965ddb8c1245d77857b3a74b8f7e95408e1fc6491a0d161e918f86be41 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sr.tar.gz 2829681 SHA256 4711da15b84e37359f815d810220aba334383af87a731e1d86ac0e546bd73512 SHA512 8d5bbc81d4044e730d757ea900246e0e914c44f084d466f2b1057afc2249f1a42ea9d994c0cd8855f3d437ed4455fdb4faf140415ee21ad49b43db2cdbbae128 WHIRLPOOL 65c3df0c9904afae3898de60b20112271c04927f1c6697d35200be05a799bb0b0107db792ce98322fdc978b31d5fc2d632c9708f2a816c88125e99458aad05f5 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ss.tar.gz 1608952 SHA256 c2207088773c08dff39c1b01a41d7fba69412861a37a967d258fd7dd9221601c SHA512 500426f72ab5fa444bba0a0b9883f4f4d8a89c9e599e0ae8b365ba4f886612098c02ec6414d1fe25517663af44d50385cef9a1fee18d8f0980b2160946f8250c WHIRLPOOL eaf88a08bd801d97c4ff9b77c26a16be2279fda694e68aeb320ef0b2d28d4860a005a28e79229d3757710e373f2ee334cc149a3d502013ce2f7773d9c9db90e6 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_st.tar.gz 1606348 SHA256 0dfa0c7fe24504a317b4ae9d2c23627851cd6d34df7f0d66ba545f56f48f8a5b SHA512 ac66ea0b9f545881e0f642e192f1d772e1786f2fdc7042ac424bc1e0097e7bc398ef9094a6472e2d84edc434b3dd39a35f6c4dae77ac9c6f92f6cced954a7946 WHIRLPOOL 2a7db2d20d17f7e483e79dfe19f4ecf76673af018999d02cd1900658f62e10b1abe9638b65e750cc1da94a16d84d47110951c170797a54109b31fa885eaf655c +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sv.tar.gz 3025948 SHA256 664b90f6c5d0a9b3705e9afba14c05a0bfc38d238635d87d943c175b1ac5477b SHA512 51949f9f8ba2adc467cd262a00cada4911297e29834d9f84cb41bd22d294f6b470c0bedd3a9f22921bcb819a8781bf87fbdbcdfd0301cef22464b1ff16518d4a WHIRLPOOL 4b2ab47854a3ecd61a29e1eb7188ab6b229f64aaca19217abe5410fc574763f95b20b810d336fc0a1e48932c6a2048d5c7ab4068333a88587a4dc9e4a33f919f +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_sw-TZ.tar.gz 1581541 SHA256 de4fc1cd7d208363626524856508a07486f344af1eab8b5cd9518259073a599d SHA512 46df77daf74b96418158249e108b8add273e1f4215cfcf860a7182407fa47fde5fe8e92c646a279f9b95f62b9f5fca06a777cad9d1c4a548a1762e365551815b WHIRLPOOL 7b912276e8a1ee91706215c0a1af774d427db0e918bbe50330e68a08f9ae71534fcc3626723a37e129c0ec7bc527451f6019c22a8feb8f6e9d7b9e659422c40f +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ta.tar.gz 1653092 SHA256 8430144f72db505699c49ec7d765f788f0ba531d74cdafa35fa83a7a32a83549 SHA512 bd3a4606890f5f30c9a9c2bfd26476ec1d728bdd179417160b1ef0f98fd40b01e2972010553b6fba833e050b218e9e8319d2b2f7b90c9ba02545dde79966578d WHIRLPOOL da699024ea0b0f154e074f98ec3b18e4e70cf8fb529b8240dc96a3d3332ca77fcf71e5b0b35ac1441d21bf9c44b8ea08945c493bbf81dc14f8dfa8ec14070916 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_te.tar.gz 2223206 SHA256 eb05d137c62ca9ab9ccd0b728630fddb91af6cd8adf33ed60306e1b5ae4975ec SHA512 856666e4ffb589fbed3a1e1909ded6a18a099f831e44fe0ef8e9435167ccd02f45efecd4b1eceafc19382ef8eee7c3f1171b681f6524671b017829ba27a85c2d WHIRLPOOL 11c129d24cc693d4bd4585755e6f22c333747007ac1ad17189322b957c89b1bb776565f72f978b3852474aa22b2fc703f4c52bfe72b355f930dec21a397a805b +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_tg.tar.gz 1629377 SHA256 b09052a614b90f31a9b94479c63f124053e5b81c01bed86dcc70270b2833f227 SHA512 26c842a1f167e574e7659b678a4f6b1db2f0dc9044e2bb0fbceb16613bd7fb504d38c3e3d711a5ec73973eeea70c5f1dcc59838e75e7beb1ab5a7b608bd78596 WHIRLPOOL 10c35fe074a57f1af96a7a8dcaacd8536902a776430b18a7ffe700e234ea8e3111e9c9f78c8a8c89f025a60638ab761fef28e2e7bbc86fb0821982d7defbd9a9 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_th.tar.gz 1791706 SHA256 589ab5ef04ae392cfc57649d5475c0358636c72b8373f5c571e7f8baf9ec9f72 SHA512 251a4034475a12382f805814817d994ba7b6910f387de66991916dc383db3b3e0e4a5d8c04320504c87a9dd2864f478ba5923fd869d01680fe7c2534cc41b2ad WHIRLPOOL cbd4730bc5f065d6bef32f7df6ea5d58992abe4e7b5fd9792187744ee750f4347f4e44f13e80d910008621502563820d97904a655a0af9e97a2c3d7d0eea7a8b +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_tn.tar.gz 1590009 SHA256 f7f77becf3b7e66becfb7dc92c1f2d1e5318a512d21901cfd1776f98d1e2943e SHA512 d8a07cf132da2e76115b9194895512d7c421d6177f00fd12521918d9d9307fcd3d4203d8d411b68c9c788df5ec8e2520bf5fb4a1d1037696ce1786da8e9a8efc WHIRLPOOL 6df365dae469d7bb35b2a4d50b331ac11b785294ec5016d8d227a9eaed781350fb0e36e2f397b99e259bf7048eea17a589158b23bf047642a90a11817ac8e1bc +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_tr.tar.gz 1560208 SHA256 d44380e8ac28e0f6a237f03701fee3142aa59404b9c4ab2c516cd260eace8fca SHA512 f60eb328dbb8cf1b39ecf81bb0bad9501f2c64350074745ba84c34d8e56c5670775a738ed28ca1f93b1b49e1b940dd19fbea59559720a0a285c4f9204b133976 WHIRLPOOL 42f7ed5c8b373303dbca9bc8cdbce1996d8c7dcf3c011d9f994385c3dfb9e4c4f3fdb84c0501646b398899f34167448506fab1595da096b9fbdb80d232c5cb32 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ts.tar.gz 1607793 SHA256 7ad0254566fb05db5a141738026f7ab5e227ebadc9d429f13ae38c00fc175591 SHA512 d563c793363a426df5389d37faf7f90a059d4ea86650147a3b152c08e10e861869816683a79a584cc92861d9c4715c511c21e9418ad591c7d6cb2aeb0fdd8dc4 WHIRLPOOL 0fe6bb960916574274fcf9cafbb7da9bbb0a4fa706511bb13081dd193848f0120dc2950b80a2a12b9f85dbeb9df073adabf6c0c59577d373e02c2e53518ae34d +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_tt.tar.gz 1597180 SHA256 708eac3a5fc74d84d6606eb9757079aaaac4e9314551176ca45087c8bd74273c SHA512 58a1e7cdfa0c4ba7847bea1e23dac2aa912439292fc5038916ec5f1a29255cdeb7c96a0efcd4ac055ebdb6e1cd1cb199986ba6d9bf9fd2b8c5a591379f3ddafe WHIRLPOOL 987a633bed473b92b6d44efa2a74eac096d55436640e270a0918535380c35ac72607fe9bf6c7ba970776f1ff75daf84edf0d3ec752e087efec3dd47ae12fd13a +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ug.tar.gz 1630253 SHA256 ff562feeffdcd4d347c04fa8a8967c474cc64cd2f29ecc940d5b5f9ba572fe20 SHA512 81c2b627055ef3b262d582f7a9288158a5d46cc76a9af9cb80af4bed74443f3e2496f3e42e0a72e768549bde2b7ebb06b7534e144e25bbd70d9ae9c3cf631e94 WHIRLPOOL a1b2ce2a364ad51576a65d8fd15416403dc0011a862542c38a2d31d520b871ae5d3a395c8781fe8cb858e679abf966d8a4b40ebdfc52d20d5a118dbafe24b8c8 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_uk.tar.gz 2475455 SHA256 fce3f8da7268af8789654de7c5835089b2121564bda9b6c467a3a916a85b1c33 SHA512 93fe9838e19cd0baf9ce3a6c4c6e5488203c565c40830e4623c4d83976a6f5e9598846311ed87734e30af9249aab7061791af1048e941fb3f7ecb978977b7855 WHIRLPOOL 6cd5ad41a5f99a8c505b1bc7bc02b46ebf163c6f911b4dc0260f554a839df03dca50333a6038435f03002c4cfdfb799a445f8f111fd6dd3eb5a9e3795224f1f4 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_uz.tar.gz 1592211 SHA256 33df24145b640590ce81eb5d5040660fa46b8fe22b6e03faca752688170804db SHA512 c78a1a7feba80169c179f0831f337a7fc3626c0c982c88cca1387fede277ae856dfb3f5c41b68e372898d887138644db7ffe4c3204a306c0f0ecb09c185fd205 WHIRLPOOL 524cdbfafc2de247aa0c4f42310f5675ff82ab4e1a98c25add7a1c79fb1e634ce59122739d4df716d58716023b2f0189cec4317acaf0138308e96abb70e80e1d +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_ve.tar.gz 1612813 SHA256 ea6d6834ecf91eb4a7954084428b63f2e06beea03b88fd1b42b46e89f2e671d9 SHA512 c6dd950f883fdde27ff52744005ae3257cb0d5bb650e39ffd4610bcde169fcac30b3109e90e71f2a97c28420ba333f88ed52b8b57e92490702e29376c8eb1f7a WHIRLPOOL cf14bd0ef14438ffaf0057e59df83d23c8d63f79802a607ac80d64ff81fafbe462c3301843871bdedec97f0ef6466ad8e3871bb39589e06e85aa98ef04fa5022 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_vi.tar.gz 1714360 SHA256 eb1a66c74c330c9109e05687e810d1f6ad712d35f91490850881a4a4e91596ab SHA512 418f27381eddb4937b9e330d9ad43846f40752c52fd8a98079fb624eeeea3fdd63efda60112301de220a104c12d6ad23a7728eb7f73c247150af63d7a22a6671 WHIRLPOOL 7587ca33a951f9141a7b6974bd0173f8359d8145bac48b6609cbe3986115d7e773b75f07430832bcfb7c1c152872712c7f23a9e09b54062cb74c6b2660fa26d8 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_xh.tar.gz 1624173 SHA256 f2f6f129a81d6eb64fccb49ed85c66897e0609682067471e7510173d6bbf1e6a SHA512 bf0c5befa6847e7bc6ec7a280689f9b9f10fb8b0bad8c81451676fdc6baec851bcc1251172400261c65f04c4127179740884accd74ca2f013d1c071e86c629b8 WHIRLPOOL b493b85e70d1738a7c8279afd45d1e45248cec200f734990a7aa5cb7ccc1020d29bda7ccd1e63106279eace380f42a8b692112284eaa14d7e3213733c3daacb8 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_zh-CN.tar.gz 1665856 SHA256 be1f7e1e7d73d9046d069957bba93fea68bf6721dc5e5e78425ed8014e9a709d SHA512 996f206e3f1bb3e8cc048e5e8c2f1d1bd66ee9397833a5041f8c09d4d68e9c29dddd2128c3d1538af20c7172805790d2bb5a5e328684dd3ca0163b4281998574 WHIRLPOOL 0e761af9e4166f75544655b983ea2e3a15c74997e8d63d279c03c4af8b54616a8b4ec64b56b0557a6f3324c7d8cdd7aeb4192a5c50855c5f6292c0e6ad77a316 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_zh-TW.tar.gz 1657638 SHA256 16eb680ca6544ee7237eab729329721d9b6e7b3ce54efd802eba14682794b611 SHA512 233b7a3cdcc6d515d1e7a04e2f181c7157526737a0265fda8640510800275a2f87b34d8bfc672d63397a573c137ef85f5d5aedd62de3da53ff1937fce1469aad WHIRLPOOL 2f1676392c2a110cd2f13d7063e9168abeefc0934c6b4d0d45346510266a4dda3a842e629a62b12bdfcb4f82901f79b4ec5c5587bf79db0c4d5a95815b9899f8 +DIST LibO_3.6.6.2_Linux_x86_langpack-rpm_zu.tar.gz 1619679 SHA256 c8dad8772ae18ece4aa47239b83c1b934fca102fd70dac8c326478ba3cc9edd1 SHA512 5b454fd6df79df7380070e7f4cda8a513d7d91690240cba4053205f39096b3def075827d4c1644c133ce817f76a249c2c003db9857e5499334cfdf830f9476d0 WHIRLPOOL cfb6bd813e2f73fd647d124129ce9b114596be0a275faea9e577e5dbe58013c2473044cf78e2e504ea09e0f2a326a16506f2f9741b55ae9f62bfc350dc112522 DIST LibreOffice_4.0.2.2_Linux_x86_rpm_helppack_ast.tar.gz 10803626 SHA256 2ad476710a08bb05e2b786be7940bb6f6f3fca091bb891b0e5e5534320c92624 SHA512 23abd4fedcd4f92230a0167098382e153068977cf56e8c6e9d9dc321570c2d85fc42ad67655a329f7e24ff291db586211e5c7b531eaa03a166639d18b23424ad WHIRLPOOL 58a76e05aee4cd1eba7f0c52ce65014ba4b464de73f0851c0d79f7399a4ca44c00d0559dc9a45c47c266dd86abba9228547daabdf8c8a2c3c4d66652bd869095 DIST LibreOffice_4.0.2.2_Linux_x86_rpm_helppack_bg.tar.gz 11335150 SHA256 5ab28bb3f639f01de8546f9fad0636128dc1806695be9c4c1826635562789ea0 SHA512 f72a979a2e54b742878e6722262989bc67a165e399b8a03489e385730fe286bb6baf4f845945fcbb4ac4d21b92a29d7bbe6f184d73b44b54742651b4d219ce7f WHIRLPOOL a7ff336928fc15009301e53d30e003486654277b8f38481503a01e17872610477a9e1e4ff5dbe01fe3415a1454472f337ea813f89dc1919755edb61aa3883b5e DIST LibreOffice_4.0.2.2_Linux_x86_rpm_helppack_bn-IN.tar.gz 9148407 SHA256 1d22409b6900be86340f73e4ce1c648ade6cef9d1c0cd0a867a9c2da28ecd3b1 SHA512 4345cca44b8054cca12e20abc46664ffb83c2c34aef274c8648788cc4d5fda8a230c96ad567b828ef582dcbb7d492fcd776917af018f285595d59acb4b89e95d WHIRLPOOL d0de7a151aeab69f337f074254591a120042cfc64671177e939a414b436ed32675f79e823e46202783e62b58cfa5faed32262f9b8e23c268b064140ef72724ee diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-3.6.4.3.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-3.6.4.3.ebuild index 1e97e5f4e2cf..de3a2ad9ee9f 100644 --- a/app-office/libreoffice-l10n/libreoffice-l10n-3.6.4.3.ebuild +++ b/app-office/libreoffice-l10n/libreoffice-l10n-3.6.4.3.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/app-office/libreoffice-l10n/libreoffice-l10n-3.6.4.3.ebuild,v 1.2 2012/12/20 11:14:37 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/libreoffice-l10n/libreoffice-l10n-3.6.4.3.ebuild,v 1.3 2013/04/09 11:42:21 scarabeus Exp $ EAPI=4 diff --git a/app-office/libreoffice-l10n/libreoffice-l10n-3.6.6.2.ebuild b/app-office/libreoffice-l10n/libreoffice-l10n-3.6.6.2.ebuild new file mode 100644 index 000000000000..9fed37259dd8 --- /dev/null +++ b/app-office/libreoffice-l10n/libreoffice-l10n-3.6.6.2.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/app-office/libreoffice-l10n/libreoffice-l10n-3.6.6.2.ebuild,v 1.1 2013/04/09 11:42:21 scarabeus Exp $ + +EAPI=4 + +inherit rpm eutils multilib versionator + +MY_PV=$(get_version_component_range 1-3) + +DESCRIPTION="Translations for the Libreoffice suite." +HOMEPAGE="http://www.libreoffice.org" +BASE_SRC_URI="http://download.documentfoundation.org/${PN/-l10n/}/testing/${MY_PV}/rpm" + +LICENSE="|| ( LGPL-3 MPL-1.1 )" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" +IUSE="offlinehelp" + +LANGUAGES_HELP="ast bg bn_IN bn bo bs ca_XV ca cs da de dz el en_GB en en_ZA eo +es et eu fi fr gl gu he hi hr hu id is it ja ka km ko lb mk nb ne nl nn om pl +pt_BR pt ru si sk sl sq sv tg tr ug uk vi zh_CN zh_TW" +LANGUAGES="${LANGUAGES_HELP} af am ar as be br brx cy dgo fa ga gd kk kn kok ks +ku lo lt lv mai ml mn mni mr my nr nso oc or pa_IN ro rw sa_IN sat sd sh sr ss +st sw_TZ ta te th tn ts tt uz ve xh zu" + +for lang in ${LANGUAGES_HELP}; do + helppack="" + [[ ${lang} == en ]] && lang2=${lang/en/en_US} || lang2=${lang} + helppack="offlinehelp? ( ${BASE_SRC_URI}/x86/LibO_${PV}_Linux_x86_helppack-rpm_${lang2/_/-}.tar.gz )" + SRC_URI+=" linguas_${lang}? ( ${helppack} )" +done +for lang in ${LANGUAGES}; do + langpack="" + [[ ${lang} == en ]] \ + || langpack="${BASE_SRC_URI}/x86/LibO_${PV}_Linux_x86_langpack-rpm_${lang/_/-}.tar.gz" + [[ -z ${langpack} ]] || SRC_URI+=" linguas_${lang}? ( ${langpack} )" + IUSE+=" linguas_${lang}" +done +unset lang helppack langpack lang2 + +RDEPEND+=" + app-text/hunspell + ! wtf? +# hunart: only on ooo extensions -> fubared download path somewhere on sf +# numbertext, typo, validator, watch-window: ^^ +# oooblogger: no homepage or anything +# Extensions that need extra work: +# report-builder: missing java packages +for lo_xt in ${LO_EXTS}; do + IUSE+=" libreoffice_extensions_${lo_xt}" +done +unset lo_xt + +LICENSE="|| ( LGPL-3 MPL-1.1 )" +SLOT="0" +[[ ${PV} == *9999* ]] || KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux" + +COMMON_DEPEND=" + ${PYTHON_DEPS} + app-arch/zip + app-arch/unzip + >=app-text/hunspell-1.3.2-r3 + app-text/mythes + >=app-text/libexttextcat-3.2 + app-text/libwpd:0.9[tools] + app-text/libwpg:0.2 + >=app-text/libwps-0.2.2 + >=dev-cpp/clucene-2.3.3.4-r2 + >=dev-cpp/libcmis-0.2:0.2 + dev-db/unixODBC + dev-libs/expat + >=dev-libs/glib-2.28 + >=dev-libs/hyphen-2.7.1 + >=dev-libs/icu-4.8.1.1 + >=dev-libs/nspr-4.8.8 + >=dev-libs/nss-3.12.9 + >=dev-lang/perl-5.0 + >=dev-libs/openssl-1.0.0d + >=dev-libs/redland-1.0.14[ssl] + gnome-base/librsvg + media-gfx/graphite2 + >=media-libs/fontconfig-2.8.0 + media-libs/freetype:2 + media-libs/lcms:2 + >=media-libs/libpng-1.4 + >=media-libs/libcdr-0.0.5 + media-libs/libvisio + >=net-misc/curl-7.21.4 + sci-mathematics/lpsolve + >=sys-libs/db-4.8 + virtual/jpeg + >=x11-libs/cairo-1.10.0[X] + x11-libs/libXinerama + x11-libs/libXrandr + x11-libs/libXrender + cups? ( net-print/cups ) + dbus? ( >=dev-libs/dbus-glib-0.92 ) + eds? ( gnome-extra/evolution-data-server ) + gnome? ( gnome-base/gconf:2 ) + gtk? ( + x11-libs/gdk-pixbuf[X] + >=x11-libs/gtk+-2.24:2 + ) + gstreamer? ( + >=media-libs/gstreamer-0.10:0.10 + >=media-libs/gst-plugins-base-0.10:0.10 + ) + jemalloc? ( dev-libs/jemalloc ) + libreoffice_extensions_pdfimport? ( >=app-text/poppler-0.16:=[xpdf-headers(+),cxx] ) + libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) + libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) + libreoffice_extensions_wiki-publisher? ( + dev-java/commons-codec:0 + dev-java/commons-httpclient:3 + dev-java/commons-lang:2.1 + dev-java/commons-logging:0 + dev-java/tomcat-servlet-api:3.0 + ) + mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) + opengl? ( + virtual/glu + virtual/opengl + ) + postgres? ( >=dev-db/postgresql-base-9.0[kerberos] ) + webdav? ( net-libs/neon ) +" + +RDEPEND="${COMMON_DEPEND} + !app-office/libreoffice-bin + !app-office/libreoffice-bin-debug + !=virtual/jre-1.6 ) +" + +PDEPEND=" + =app-office/libreoffice-l10n-3.6* +" + +# FIXME: cppunit should be moved to test conditional +# after everything upstream is under gbuild +# as dmake execute tests right away +DEPEND="${COMMON_DEPEND} + >=dev-libs/boost-1.46 + >=dev-libs/libxml2-2.7.8 + dev-libs/libxslt + dev-perl/Archive-Zip + dev-util/cppunit + >=dev-util/gperf-3 + dev-util/intltool + dev-util/mdds + virtual/pkgconfig + net-misc/npapi-sdk + >=sys-apps/findutils-4.4.2 + sys-devel/bison + sys-apps/coreutils + sys-devel/flex + sys-devel/gettext + >=sys-devel/make-3.82 + sys-libs/zlib + x11-libs/libXt + x11-libs/libXtst + x11-proto/randrproto + x11-proto/xextproto + x11-proto/xineramaproto + x11-proto/xproto + java? ( + >=virtual/jdk-1.6 + >=dev-java/ant-core-1.7 + ) + odk? ( app-doc/doxygen ) + test? ( dev-util/cppunit ) +" + +PATCHES=( + # not upstreamable stuff + "${FILESDIR}/${PN}-3.6-system-pyuno.patch" + "${FILESDIR}/${PN}-3.6-separate-checks.patch" +) + +REQUIRED_USE=" + gnome? ( gtk ) + eds? ( gnome ) + libreoffice_extensions_nlpsolver? ( java ) + libreoffice_extensions_scripting-beanshell? ( java ) + libreoffice_extensions_scripting-javascript? ( java ) + libreoffice_extensions_wiki-publisher? ( java ) +" + +S="${WORKDIR}/${PN}-core-${PV}" + +CHECKREQS_MEMORY="512M" +CHECKREQS_DISK_BUILD="6G" + +pkg_pretend() { + local pgslot + + if [[ ${MERGE_TYPE} != binary ]]; then + check-reqs_pkg_pretend + + if [[ $(gcc-major-version) -lt 4 ]] || \ + ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 5 ]] ) \ + ; then + eerror "Compilation with gcc older than 4.5 is not supported" + die "Too old gcc found." + fi + fi + + # ensure pg version + if use postgres; then + pgslot=$(postgresql-config show) + if [[ ${pgslot//.} < 90 ]] ; then + eerror "PostgreSQL slot must be set to 9.0 or higher." + eerror " postgresql-config set 9.0" + die "PostgreSQL slot is not set to 9.0 or higher." + fi + fi +} + +pkg_setup() { + java-pkg-opt-2_pkg_setup + kde4-base_pkg_setup + python-single-r1_pkg_setup + + [[ ${MERGE_TYPE} != binary ]] && check-reqs_pkg_setup +} + +src_unpack() { + local mod dest tmplfile tmplname mypv + + [[ -n ${PATCHSET} ]] && unpack ${PATCHSET} + if use branding; then + unpack "${BRANDING}" + fi + + if [[ ${PV} != *9999* ]]; then + for mod in ${MODULES}; do + if [[ ${mod} == binfilter ]] && ! use binfilter; then + continue + fi + unpack "${PN}-${mod}-${PV}.tar.xz" + if [[ ${mod} != core ]]; then + mv -n "${WORKDIR}/${PN}-${mod}-${PV}"/* "${S}" + rm -rf "${WORKDIR}/${PN}-${mod}-${PV}" + fi + done + else + for mod in ${MODULES}; do + if [[ ${mod} == binfilter ]] && ! use binfilter; then + continue + fi + mypv=${PV/.9999} + [[ ${mypv} != ${PV} ]] && EGIT_BRANCH="${PN}-${mypv/./-}" + EGIT_PROJECT="${PN}/${mod}" + EGIT_SOURCEDIR="${WORKDIR}/${PN}-${mod}-${PV}" + EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}/${mod}" + EGIT_NOUNPACK="true" + git-2_src_unpack + if [[ ${mod} != core ]]; then + mv -n "${WORKDIR}/${PN}-${mod}-${PV}"/* "${S}" + rm -rf "${WORKDIR}/${PN}-${mod}-${PV}" + fi + done + unset EGIT_PROJECT EGIT_SOURCEDIR EGIT_REPO_URI EGIT_BRANCH + fi +} + +src_prepare() { + # optimization flags + export ARCH_FLAGS="${CXXFLAGS}" + export LINKFLAGSOPTIMIZE="${LDFLAGS}" + export GMAKE_OPTIONS="${MAKEOPTS}" + + # patchset + if [[ -n ${PATCHSET} ]]; then + EPATCH_FORCE="yes" \ + EPATCH_SOURCE="${WORKDIR}/${PATCHSET/.tar.xz/}" \ + EPATCH_SUFFIX="patch" \ + epatch + fi + + base_src_prepare + + # please no debug in binfilter, it blows up things insanely + if use binfilter && ! use binfilterdebug ; then + for name in $(find "${S}/binfilter" -name makefile.mk) ; do + sed -i -e '1i\CFLAGS+= -g0' $name || die + done + fi + + AT_M4DIR="m4" + eautoreconf + # hack in the autogen.sh + touch autogen.lastrun + + # system pyuno mess + sed \ + -e "s:%eprefix%:${EPREFIX}:g" \ + -e "s:%libdir%:$(get_libdir):g" \ + -i pyuno/source/module/uno.py \ + -i scripting/source/pyprov/officehelper.py || die +} + +src_configure() { + local java_opts + local internal_libs + local lo_ext + local ext_opts + local jbs=$(sed -ne 's/.*\(-j[[:space:]]*\|--jobs=\)\([[:digit:]]\+\).*/\2/;T;p' <<< "${MAKEOPTS}") + + # Workaround the boost header include issue for older gccs + if [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 6 ]]; then + append-cppflags -DBOOST_NO_0X_HDR_TYPEINDEX + append-cppflags -DBOOST_NO_CXX11_HDR_TYPEINDEX + fi + + # recheck that there is some value in jobs + [[ -z ${jbs} ]] && jbs="1" + + # sane: just sane.h header that is used for scan in writer, not + # linked or anything else, worthless to depend on + # vigra: just uses templates from there + # it is serious pain in the ass for packaging + # should be replaced by boost::gil if someone interested + internal_libs+=" + --without-system-sane + --without-system-vigra + " + + # libreoffice extensions handling + for lo_xt in ${LO_EXTS}; do + ext_opts+=" $(use_enable libreoffice_extensions_${lo_xt} ext-${lo_xt})" + done + + if use java; then + # hsqldb: system one is too new + # saxon: system one does not work properly + java_opts=" + --without-junit + --without-system-hsqldb + --without-system-saxon + --with-ant-home="${ANT_HOME}" + --with-jdk-home=$(java-config --jdk-home 2>/dev/null) + --with-java-target-version=$(java-pkg_get-target) + --with-jvm-path="${EPREFIX}/usr/$(get_libdir)/" + " + + use libreoffice_extensions_scripting-beanshell && \ + java_opts+=" --with-beanshell-jar=$(java-pkg_getjar bsh bsh.jar)" + + use libreoffice_extensions_scripting-javascript && \ + java_opts+=" --with-rhino-jar=$(java-pkg_getjar rhino-1.6 js.jar)" + + if use libreoffice_extensions_wiki-publisher; then + java_opts+=" + --with-commons-codec-jar=$(java-pkg_getjar commons-codec commons-codec.jar) + --with-commons-httpclient-jar=$(java-pkg_getjar commons-httpclient-3 commons-httpclient.jar) + --with-commons-lang-jar=$(java-pkg_getjar commons-lang-2.1 commons-lang.jar) + --with-commons-logging-jar=$(java-pkg_getjar commons-logging commons-logging.jar) + --with-servlet-api-jar=$(java-pkg_getjar tomcat-servlet-api-3.0 servlet-api.jar) + " + fi + fi + + if use branding; then + # hack... + mv -v "${WORKDIR}/branding-intro.png" "${S}/icon-themes/galaxy/brand/intro.png" || die + fi + + # system headers/libs/...: enforce using system packages + # --enable-unix-qstart-libpng: use libpng splashscreen that is faster + # --enable-cairo: ensure that cairo is always required + # --enable-*-link: link to the library rather than just dlopen on runtime + # --enable-release-build: build the libreoffice as release + # --disable-fetch-external: prevent dowloading during compile phase + # --disable-gnome-vfs: old gnome virtual fs support + # --disable-kdeab: kde3 adressbook + # --disable-kde: kde3 support + # --disable-ldap: ldap requires internal mozilla stuff, same like mozab + # --disable-mozilla: disable mozilla build that is used for adresbook, not + # affecting the nsplugin that is always ON + # --disable-pch: precompiled headers cause build crashes + # --disable-rpath: relative runtime path is not desired + # --disable-systray: quickstarter does not actually work at all so do not + # promote it + # --disable-zenity: disable build icon + # --enable-extension-integration: enable any extension integration support + # --with-{max-jobs,num-cpus}: ensuring parallel building + # --without-{afms,fonts,myspell-dicts,ppsd}: prevent install of sys pkgs + # --without-stlport: disable deprecated extensions framework + # --disable-ext-report-builder: too much java packages pulled in + econf \ + --docdir="${EPREFIX}/usr/share/doc/${PF}/" \ + --with-system-headers \ + --with-system-libs \ + --with-system-jars \ + --with-system-dicts \ + --enable-graphite \ + --enable-cairo-canvas \ + --enable-largefile \ + --enable-mergelibs \ + --enable-python=system \ + --enable-librsvg=system \ + --enable-randr \ + --enable-randr-link \ + --enable-release-build \ + --enable-unix-qstart-libpng \ + --enable-xmlsec \ + --disable-ccache \ + --disable-crashdump \ + --disable-dependency-tracking \ + --disable-epm \ + --disable-fetch-external \ + --disable-gnome-vfs \ + --disable-ext-report-builder \ + --disable-kdeab \ + --disable-kde \ + --disable-ldap \ + --disable-mozilla \ + --disable-nsplugin \ + --disable-online-update \ + --disable-pch \ + --disable-rpath \ + --disable-systray \ + --disable-zenity \ + --with-alloc=$(use jemalloc && echo "jemalloc" || echo "system") \ + --with-build-version="Gentoo official package" \ + --enable-extension-integration \ + --with-external-dict-dir="${EPREFIX}/usr/share/myspell" \ + --with-external-hyph-dir="${EPREFIX}/usr/share/myspell" \ + --with-external-thes-dir="${EPREFIX}/usr/share/myspell" \ + --with-external-tar="${DISTDIR}" \ + --with-lang="" \ + --with-max-jobs=${jbs} \ + --with-num-cpus=${jbs} \ + --with-unix-wrapper=libreoffice \ + --with-vendor="Gentoo Foundation" \ + --with-x \ + --without-afms \ + --without-fonts \ + --without-myspell-dicts \ + --without-stlport \ + --without-system-mozilla \ + --without-help \ + --with-helppack-integration \ + --without-sun-templates \ + --disable-gtk3 \ + $(use_enable binfilter) \ + $(use_enable cups) \ + $(use_enable dbus) \ + $(use_enable eds evolution2) \ + $(use_enable gnome gconf) \ + $(use_enable gnome gio) \ + $(use_enable gnome lockdown) \ + $(use_enable gstreamer) \ + $(use_enable gtk) \ + $(use_enable kde kde4) \ + $(use_enable mysql ext-mysql-connector) \ + $(use_enable odk) \ + $(use_enable opengl) \ + $(use_enable postgres postgresql-sdbc) \ + $(use_enable test linkoo) \ + $(use_enable vba) \ + $(use_enable webdav neon) \ + $(use_with java) \ + $(use_with mysql system-mysql-cppconn) \ + $(use_with odk doxygen) \ + ${internal_libs} \ + ${java_opts} \ + ${ext_opts} +} + +src_compile() { + # hack for offlinehelp, this needs fixing upstream at some point + # it is broken because we send --without-help + # https://bugs.freedesktop.org/show_bug.cgi?id=46506 + ( + source "${S}/config_host.mk" 2&> /dev/null + + local path="${SOLARVER}/${INPATH}/res/img" + mkdir -p "${path}" || die + + echo "perl \"${S}/helpcontent2/helpers/create_ilst.pl\" -dir=icon-themes/galaxy/res/helpimg > \"${path}/helpimg.ilst\"" + perl "${S}/helpcontent2/helpers/create_ilst.pl" \ + -dir=icon-themes/galaxy/res/helpimg \ + > "${path}/helpimg.ilst" + [[ -s "${path}/helpimg.ilst" ]] || ewarn "The help images list is empty, something is fishy, report a bug." + ) + + # this is not a proper make script + make build || die +} + +src_test() { + make unitcheck || die + make slowcheck || die +} + +src_install() { + # This is not Makefile so no buildserver + make DESTDIR="${D}" distro-pack-install -o build -o check || die + + # Fix bash completion placement + newbashcomp "${ED}"/etc/bash_completion.d/libreoffice.sh ${PN} + rm -rf "${ED}"/etc/ + + if use branding; then + insinto /usr/$(get_libdir)/${PN}/program + newins "${WORKDIR}/branding-sofficerc" sofficerc + fi + + # Hack for offlinehelp, this needs fixing upstream at some point. + # It is broken because we send --without-help + # https://bugs.freedesktop.org/show_bug.cgi?id=46506 + insinto /usr/$(get_libdir)/libreoffice/help + doins xmlhelp/util/*.xsl + + # Remove desktop files for support to old installs that can't parse mime + rm -rf "${ED}"/usr/share/mimelnk/ +} + +pkg_preinst() { + # Cache updates - all handled by kde eclass for all environments + kde4-base_pkg_preinst +} + +pkg_postinst() { + kde4-base_pkg_postinst + + pax-mark -m "${EPREFIX}"/usr/$(get_libdir)/libreoffice/program/soffice.bin + pax-mark -m "${EPREFIX}"/usr/$(get_libdir)/libreoffice/program/unopkg.bin + + use java || \ + ewarn 'If you plan to use lbase application you should enable java or you will get various crashes.' +} + +pkg_postrm() { + kde4-base_pkg_postrm +} diff --git a/app-office/qcharselect/qcharselect-0.2.ebuild b/app-office/qcharselect/qcharselect-0.2.ebuild index 003f6fb0f8c0..a840ac1d9ec6 100644 --- a/app-office/qcharselect/qcharselect-0.2.ebuild +++ b/app-office/qcharselect/qcharselect-0.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/app-office/qcharselect/qcharselect-0.2.ebuild,v 1.2 2013/03/02 19:36:34 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/qcharselect/qcharselect-0.2.ebuild,v 1.3 2013/04/10 06:53:47 patrick Exp $ EAPI=2 inherit multilib @@ -14,7 +14,8 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug" -DEPEND="dev-qt/qtgui:4[qt3support]" +DEPEND="dev-qt/qtgui:4[qt3support] + x11-misc/makedepend" src_prepare() { sed -i \ diff --git a/app-pda/gtkpod/Manifest b/app-pda/gtkpod/Manifest index be1e01fa8263..a3b52577f650 100644 --- a/app-pda/gtkpod/Manifest +++ b/app-pda/gtkpod/Manifest @@ -1,2 +1 @@ -DIST gtkpod-2.1.2.tar.gz 3673800 SHA256 c3d054235bae80aa8563a441c902fa32528c2b00ba05a98066671fa3036dc1e6 SHA512 01b5b0c370451c717d7a04b592b2b986a692615d1624a267238268e19dd3baeab2f79604e700573fecce5e3822ee37a1d485965c648e2d7b1cb2ab3602742470 WHIRLPOOL f8b6b4304c07eb3e51b10c15288ba6813b6ea715ffa227fd0909acff5742548a49a2ecc999cabd67c0eca918dc4993339903bce0a8e0767298dd2b5eda48baf7 DIST gtkpod-2.1.3.tar.gz 3712898 SHA256 2b98352fe670a3d757c2b9cc4f8b910ca7fe8b8d9441764055075cfff16e4691 SHA512 6d59d1a2cce76d89ef7a47244de0edd7965916324c3681cba751316727fd6026c98128948a06db5778d889e582e200d29645e1beeb566ade865631a4c36ba5e5 WHIRLPOOL 02228c644292a2170c3bc11c2bbc6f56d63f5e7e074ddbc2a77c86ce225cbd1bafbedbc38c9e9e8df8569275a1da35b897b4d2e69b04eb55327c66d1a455bfe9 diff --git a/app-pda/gtkpod/files/gtkpod-2.1.2-bffr-overflow.patch b/app-pda/gtkpod/files/gtkpod-2.1.2-bffr-overflow.patch deleted file mode 100644 index 2a3854d0ba07..000000000000 --- a/app-pda/gtkpod/files/gtkpod-2.1.2-bffr-overflow.patch +++ /dev/null @@ -1,16 +0,0 @@ - libs/atomic-parsley/AtomicParsley.cpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/libs/atomic-parsley/AtomicParsley.cpp b/libs/atomic-parsley/AtomicParsley.cpp -index 8603885..9190df3 100644 ---- a/libs/atomic-parsley/AtomicParsley.cpp -+++ b/libs/atomic-parsley/AtomicParsley.cpp -@@ -1887,7 +1887,7 @@ char* APar_ExtractDataAtom(int this_atom_number) { - - } - else { //purl & egid would end up here too, but Apple switched it to a text string (0x00), so gets taken care above explicitly -- char* result = (char*) malloc(sizeof(char) * 6); -+ char* result = (char*) malloc(sizeof(char) * 6 + 1); - sprintf(result, "hex 0x"); - - for (int hexx = 1; hexx <= (int) (thisAtom->AtomicLength - atom_header_size); ++hexx) { diff --git a/app-pda/gtkpod/gtkpod-2.1.2-r1.ebuild b/app-pda/gtkpod/gtkpod-2.1.2-r1.ebuild deleted file mode 100644 index b05e6e3c45a7..000000000000 --- a/app-pda/gtkpod/gtkpod-2.1.2-r1.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/gtkpod-2.1.2-r1.ebuild,v 1.3 2012/11/21 11:01:52 ago Exp $ - -EAPI=4 -inherit eutils gnome2-utils - -DESCRIPTION="A graphical user interface to the Apple productline" -HOMEPAGE="http://gtkpod.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="GPL-2 FDL-1.2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="aac clutter curl cdr flac gstreamer mp3 vorbis webkit" - -COMMON_DEPEND="dev-libs/gdl:3 - >=dev-libs/glib-2.28.5 - >=dev-libs/libxml2-2.7.7 - >=dev-util/anjuta-2.91 - >=media-libs/libgpod-0.7.0 - >=media-libs/libid3tag-0.15 - >=x11-libs/gtk+-3.0.8:3 - aac? ( media-libs/faad2 ) - clutter? ( media-libs/clutter-gtk:1.0 ) - curl? ( >=net-misc/curl-7.10 ) - cdr? ( - >=app-cdr/brasero-3 - media-libs/musicbrainz:3 - ) - flac? ( media-libs/flac ) - gstreamer? ( >=media-libs/gst-plugins-base-0.10.25:0.10 ) - mp3? ( media-sound/lame ) - vorbis? ( - media-libs/libvorbis - media-sound/vorbis-tools - ) - webkit? ( >=net-libs/webkit-gtk-1.3:3 )" -RDEPEND="${COMMON_DEPEND} - gstreamer? ( media-plugins/gst-plugins-meta:0.10 )" -DEPEND="${COMMON_DEPEND} - dev-util/intltool - sys-devel/flex - sys-devel/gettext - virtual/os-headers - virtual/pkgconfig" - -src_prepare() { - # Make sure SLOT="4" is not used. Everyone should move from "3" to "5" directly. - sed -i -e '/PKG_CONFIG/s:libmusicbrainz4:&sLoT4iSdEpReCaTeD:' configure || die - - # /path/to/install: '/path/to/app-pda/gtkpod-2.1.2_beta2/image/usr/share/gtkpod/data/rhythmbox.gep’: File exists - sed -i -e '/^dist_profiles_DATA/s:=.*:=:' plugins/sjcd/data/Makefile.in || die - - sed -i -e 's:python:python2:' scripts/sync-palm-jppy.py || die - - epatch "${FILESDIR}"/${P}-bffr-overflow.patch -} - -src_configure() { - export GST_INSPECT=true #420279 - - econf \ - --disable-static \ - $(use_enable webkit plugin-coverweb) \ - $(use_enable clutter plugin-clarity) \ - $(use_enable gstreamer plugin-media-player) \ - $(use_enable cdr plugin-sjcd) \ - $(use_with curl) \ - $(use_with vorbis ogg) \ - $(use_with flac) \ - $(use_with aac mp4) -} - -src_install() { - emake \ - DESTDIR="${D}" \ - docdir=/usr/share/doc/${PF}/html \ - figuresdir=/usr/share/doc/${PF}/html/figures \ - install - - prune_libtool_files --all - - dodoc AUTHORS ChangeLog NEWS README TODO TROUBLESHOOTING - rm -f "${ED}"/usr/share/gtkpod/data/{AUTHORS,COPYING} -} - -pkg_preinst() { - gnome2_icon_savelist - gnome2_schemas_savelist -} - -pkg_postinst() { - gnome2_icon_cache_update - gnome2_schemas_update -} - -pkg_postrm() { - gnome2_icon_cache_update - gnome2_schemas_update -} diff --git a/app-pda/gtkpod/gtkpod-2.1.3-r1.ebuild b/app-pda/gtkpod/gtkpod-2.1.3-r1.ebuild index ca2940f2d5a5..bfc8291c1bc4 100644 --- a/app-pda/gtkpod/gtkpod-2.1.3-r1.ebuild +++ b/app-pda/gtkpod/gtkpod-2.1.3-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/gtkpod-2.1.3-r1.ebuild,v 1.1 2013/01/11 17:34:09 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/gtkpod-2.1.3-r1.ebuild,v 1.3 2013/04/10 15:31:40 ssuominen Exp $ -EAPI=4 +EAPI=5 inherit autotools eutils gnome2-utils @@ -12,11 +12,11 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" LICENSE="GPL-2 FDL-1.2" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="aac clutter curl cdr flac gstreamer mp3 vorbis webkit" COMMON_DEPEND=" - dev-libs/gdl:3 + >=dev-libs/gdl-3.6:3 >=dev-libs/glib-2.28.5 >=dev-libs/libxml2-2.7.7 >=dev-util/anjuta-2.91 @@ -42,10 +42,13 @@ RDEPEND="${COMMON_DEPEND} gstreamer? ( media-plugins/gst-plugins-meta:0.10 )" DEPEND="${COMMON_DEPEND} dev-util/intltool + media-libs/gstreamer sys-devel/flex sys-devel/gettext virtual/os-headers virtual/pkgconfig" +# media-libs/gstreamer is always required for gst-element-check-0.10.m4 and +# eautoreconf src_prepare() { # Make sure SLOT="4" is not used. Everyone should move from "3" to "5" directly. diff --git a/app-text/dvisvgm/Manifest b/app-text/dvisvgm/Manifest index 9bb0691175bc..f34145e35afc 100644 --- a/app-text/dvisvgm/Manifest +++ b/app-text/dvisvgm/Manifest @@ -3,4 +3,5 @@ DIST dvisvgm-1.0.12.tar.gz 581010 SHA256 5b7b2862d9f7db1c5b407a8c71fc6a60120dab9 DIST dvisvgm-1.0.8.tar.gz 569140 SHA256 0ebf70d53d10dddca1efa402e7b52c63e1e4250e0a1e74aa5d04224da40f5700 SHA512 65200d2f414262dadb6702657beda9e1ae2f239488a7a5061ad107a58ee9455ddfe26330c51435dae2b7f87f6ceed3fc6ee703d0ce908b748d35a7b99a850a54 WHIRLPOOL caf5e48c0b9a1e5ac11d1560eac0a64de73b523230b7093bc25e924df62bb607a11beb9bbe8360932c18667221e2b7401c6b9052478b73e3b7f213616da4af16 DIST dvisvgm-1.0.9.tar.gz 568673 SHA256 c236fa8a0f2a6c6e351ad8beebd6309ad01bd19302c6bf59a86680a5dec75b7e SHA512 a7bc63bccca5f6ed46625218c1f8232fcd57bd14c0b1fb976029232abc73daefd7538942eaee44b7cde13bafe18591b0ddc076f490f67faa0297c58995bced19 WHIRLPOOL 6402a53f967f74c5813ebf20de4d7d575a29f6b6ca5722e96a5ee79e621cee38b0228c495a368d3618de07b41de8b7713550be985e7bf5eccc2fefef6648dc93 DIST dvisvgm-1.1.tar.gz 601331 SHA256 c4f720ad85fd9ce59b333faaa59955750635f11ea87c60057ad4226cbfa06fd6 SHA512 3e59dba64af2fa73f3700cc47c1cea82a40ffa8c39ccc56ce31474c7bddfa3631eb80f054b584188de706292e86de7c51eea8cdd3c10e095a713a68cb527ae49 WHIRLPOOL ddfe06c186ca8c4d5a719deb0ad9b511d69ff75bf4ee9c088eda4e0781a6e8f3b61a986318322514a2ff6f8ce6a0a0ab3223130baedcda1728351215880d270d +DIST dvisvgm-1.2.1.tar.gz 611862 SHA256 497233213e86286df9c3db9b23d084d74704d5bf956c17770b4e0d945c2f642c SHA512 8a15515134c5c8a7c6731500535f7a10e0e8d27b44f79111e967cdb66505c4256644809372e28425f77bdf63bba8697e91dd6f13452bd1aa7e2d9d8869643766 WHIRLPOOL 03b3cbbb1e3bbb665f41e5c82c9870db730bcaa318550b0e5b069ff1fc3b0420d1975ea6ee4e02db030fa500b720bb80386886f06bf99b2cf8cddb7a8f4497c6 DIST dvisvgm-1.2.tar.gz 610017 SHA256 5001657a5c48f335e025d7761023d614dd87e5a80e87e335b51b9f323b5da78a SHA512 565704777c428fe86e07e739ee7c93369bb51f958bfbdd1ffa2b76777080fe5d8cfc33eedead5d7fde1d23a162b51266462556bde6805fa5b626883461a24243 WHIRLPOOL 647aa01f695f2b4f421990b95f922d282d40f2b713430100b0af2e924677219f6c5fe9e5de9103921468d3d60c86981ccb0ceff50e9d1561a4f3614ada2f61e4 diff --git a/app-text/dvisvgm/dvisvgm-1.2.1.ebuild b/app-text/dvisvgm/dvisvgm-1.2.1.ebuild new file mode 100644 index 000000000000..0366f05b6a59 --- /dev/null +++ b/app-text/dvisvgm/dvisvgm-1.2.1.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/dvisvgm-1.2.1.ebuild,v 1.1 2013/04/10 09:50:10 aballier Exp $ + +EAPI=4 + +DESCRIPTION="Converts DVI files to SVG" +HOMEPAGE="http://dvisvgm.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos" +IUSE="test" +# Tests don't work from $WORKDIR: kpathsea tries to search in relative +# directories from where the binary is executed. +# We cannot really use absolute paths in the kpathsea configuration since that +# would make it harder for prefix installs. +RESTRICT="test" + +RDEPEND="virtual/tex-base + app-text/ghostscript-gpl + >=media-gfx/potrace-1.10-r1 + media-libs/freetype:2 + sys-libs/zlib" +DEPEND="${RDEPEND} + virtual/pkgconfig + test? ( dev-cpp/gtest )" diff --git a/app-text/fbless/fbless-0.2.2-r1.ebuild b/app-text/fbless/fbless-0.2.2-r1.ebuild new file mode 100644 index 000000000000..26b70efd8233 --- /dev/null +++ b/app-text/fbless/fbless-0.2.2-r1.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/fbless/fbless-0.2.2-r1.ebuild,v 1.1 2013/04/09 12:30:11 pinkbyte Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="ncurses,xml" +inherit distutils-r1 + +DESCRIPTION="Python-based console fb2 reader with less-like interface" +HOMEPAGE="https://github.com/matimatik/fbless" +SRC_URI="mirror://github/matimatik/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" diff --git a/app-text/fbless/fbless-0.2.2.ebuild b/app-text/fbless/fbless-0.2.2.ebuild deleted file mode 100644 index aaf34218e581..000000000000 --- a/app-text/fbless/fbless-0.2.2.ebuild +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/fbless/fbless-0.2.2.ebuild,v 1.1 2012/07/18 06:11:42 yngwin Exp $ - -EAPI=4 -PYTHON_COMPAT="python2_7" -inherit python-distutils-ng - -DESCRIPTION="Python-based console fb2 reader with less-like interface" -HOMEPAGE="https://github.com/matimatik/fbless" -SRC_URI="mirror://github/matimatik/${PN}/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -DEPEND="dev-lang/python:2.7[ncurses,xml]" -RDEPEND="${DEPEND}" diff --git a/app-text/fbless/fbless-9999.ebuild b/app-text/fbless/fbless-9999.ebuild index ae341b1919df..85c90326be0c 100644 --- a/app-text/fbless/fbless-9999.ebuild +++ b/app-text/fbless/fbless-9999.ebuild @@ -1,19 +1,17 @@ -# 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-text/fbless/fbless-9999.ebuild,v 1.1 2012/07/18 06:11:42 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/fbless/fbless-9999.ebuild,v 1.2 2013/04/09 12:30:11 pinkbyte Exp $ -EAPI=4 -PYTHON_COMPAT="python2_7" -inherit python-distutils-ng git-2 +EAPI=5 + +EGIT_REPO_URI="git://github.com/matimatik/fbless.git" +PYTHON_COMPAT=( python2_7 ) +PYTHON_REQ_USE="ncurses,xml" +inherit distutils-r1 git-2 DESCRIPTION="Python-based console fb2 reader with less-like interface" HOMEPAGE="https://github.com/matimatik/fbless" -EGIT_REPO_URI="git://github.com/matimatik/fbless.git" LICENSE="GPL-2" SLOT="0" KEYWORDS="" -IUSE="" - -DEPEND="dev-lang/python:2.7[ncurses,xml]" -RDEPEND="${DEPEND}" diff --git a/app-text/iso-codes/iso-codes-3.40.ebuild b/app-text/iso-codes/iso-codes-3.40.ebuild index e7a1a7b46e6a..640b67d838f3 100644 --- a/app-text/iso-codes/iso-codes-3.40.ebuild +++ b/app-text/iso-codes/iso-codes-3.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/app-text/iso-codes/iso-codes-3.40.ebuild,v 1.10 2013/04/01 18:23:31 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/iso-codes/iso-codes-3.40.ebuild,v 1.11 2013/04/09 16:40:59 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="http://pkg-isocodes.alioth.debian.org/downloads/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="" RDEPEND="" diff --git a/app-text/pastebinit/Manifest b/app-text/pastebinit/Manifest new file mode 100644 index 000000000000..35eca0c3bfc3 --- /dev/null +++ b/app-text/pastebinit/Manifest @@ -0,0 +1 @@ +DIST pastebinit-1.3.1.tar.bz2 35582 SHA256 0dcb6c4820f49cc7f97a7804254df1ae848cfc4fc63e08ca89a525b909709e29 SHA512 f9c4eafbe194dc7fe85ae37005846c38fe9863ed18406953fa6974d979592d74a01eba4dfde3e91da121d36355d87fd2464b565d0eb6aa0091b2b338989567bf WHIRLPOOL 42c58f5cad96361c7f254a17db5a14304ec523b1a50548f27c0a77336e9384f971267a753c1fbc538301dee6cd1d228333976d96618dec8d33539a3e85771525 diff --git a/app-text/pastebinit/metadata.xml b/app-text/pastebinit/metadata.xml new file mode 100644 index 000000000000..d3a4c41a436d --- /dev/null +++ b/app-text/pastebinit/metadata.xml @@ -0,0 +1,11 @@ + + + + + angelos@gentoo.org + Christoph Mende + + + Install pbputs for gpg-encrypted pastes + + diff --git a/app-text/pastebinit/pastebinit-1.3.1.ebuild b/app-text/pastebinit/pastebinit-1.3.1.ebuild new file mode 100644 index 000000000000..390673dad750 --- /dev/null +++ b/app-text/pastebinit/pastebinit-1.3.1.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/app-text/pastebinit/pastebinit-1.3.1.ebuild,v 1.1 2013/04/09 08:46:34 angelos Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7} ) +PYTHON_REQ_USE="xml" + +inherit python-r1 + +DESCRIPTION="A software that lets you send anything you want directly to a +pastebin from the command line." +HOMEPAGE="https://launchpad.net/pastebinit" +SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="crypt" + +RDEPEND="${PYTHON_DEPS} + dev-python/configobj[${PYTHON_USEDEP}] + crypt? ( app-crypt/gnupg )" +DEPEND="app-text/docbook-xsl-stylesheets" + +src_compile() { + emake -C po + xsltproc --nonet \ + ${EROOT}usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl \ + pastebinit.xml || die +} + +src_install() { + dobin pastebinit utils/pbput + dosym pbput /usr/bin/pbget + use crypt && dosym pbput /usr/bin/pbputs + dodoc README + doman pastebinit.1 utils/*.1 + insinto /usr/share/locale + doins -r po/mo/* + insinto /usr/share + doins -r pastebin.d +} diff --git a/app-text/pinfo/pinfo-0.6.10-r4.ebuild b/app-text/pinfo/pinfo-0.6.10-r4.ebuild index 178287082766..444cc6fa63e3 100644 --- a/app-text/pinfo/pinfo-0.6.10-r4.ebuild +++ b/app-text/pinfo/pinfo-0.6.10-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/app-text/pinfo/pinfo-0.6.10-r4.ebuild,v 1.6 2013/04/05 21:51:09 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/pinfo/pinfo-0.6.10-r4.ebuild,v 1.7 2013/04/10 14:46:31 jer Exp $ EAPI=5 inherit eutils flag-o-matic @@ -11,7 +11,7 @@ SRC_URI="https://alioth.debian.org/frs/download.php/3351/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd" +KEYWORDS="~alpha amd64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd" IUSE="nls readline" RDEPEND=" diff --git a/app-text/podofo/podofo-0.9.2.ebuild b/app-text/podofo/podofo-0.9.2.ebuild index 8f28b2de6869..dead3119e2bf 100644 --- a/app-text/podofo/podofo-0.9.2.ebuild +++ b/app-text/podofo/podofo-0.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/app-text/podofo/podofo-0.9.2.ebuild,v 1.7 2013/04/06 20:43:12 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/podofo/podofo-0.9.2.ebuild,v 1.8 2013/04/10 17:08:47 jer Exp $ EAPI=2 inherit cmake-utils flag-o-matic multilib toolchain-funcs @@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/podofo/${P}.tar.gz" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="amd64 ~hppa ppc ppc64 ~sparc x86" +KEYWORDS="amd64 hppa ppc ppc64 ~sparc x86" IUSE="+boost idn debug test" RDEPEND="dev-lang/lua diff --git a/app-text/rarian/rarian-0.8.1-r2.ebuild b/app-text/rarian/rarian-0.8.1-r2.ebuild index 9459ca202ecc..6a5db2f5ef65 100644 --- a/app-text/rarian/rarian-0.8.1-r2.ebuild +++ b/app-text/rarian/rarian-0.8.1-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/app-text/rarian/rarian-0.8.1-r2.ebuild,v 1.10 2013/04/01 18:23:36 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/rarian/rarian-0.8.1-r2.ebuild,v 1.11 2013/04/09 16:41:06 ago Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="http://${PN}.freedesktop.org/Releases/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="static-libs" RDEPEND="dev-libs/libxslt diff --git a/app-vim/taglist/taglist-4.6.ebuild b/app-vim/taglist/taglist-4.6.ebuild index a7da5c03d335..c67b412a68e4 100644 --- a/app-vim/taglist/taglist-4.6.ebuild +++ b/app-vim/taglist/taglist-4.6.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-vim/taglist/taglist-4.6.ebuild,v 1.2 2013/04/08 08:21:02 nimiux Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-vim/taglist/taglist-4.6.ebuild,v 1.3 2013/04/10 17:04:31 jer Exp $ EAPI=5 @@ -9,7 +9,7 @@ inherit vim-plugin eutils DESCRIPTION="vim plugin: ctags-based source code browser" HOMEPAGE="http://vim-taglist.sourceforge.net/" LICENSE="vim" -KEYWORDS="~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" +KEYWORDS="~alpha amd64 hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris" RDEPEND="dev-util/ctags" diff --git a/dev-cpp/gtkmm/gtkmm-3.4.2.ebuild b/dev-cpp/gtkmm/gtkmm-3.4.2.ebuild index 71627ebc4dbe..d4deb983a1a5 100644 --- a/dev-cpp/gtkmm/gtkmm-3.4.2.ebuild +++ b/dev-cpp/gtkmm/gtkmm-3.4.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-cpp/gtkmm/gtkmm-3.4.2.ebuild,v 1.11 2013/04/01 18:23:42 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtkmm/gtkmm-3.4.2.ebuild,v 1.12 2013/04/09 16:41:13 ago Exp $ EAPI="4" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://www.gtkmm.org" LICENSE="LGPL-2.1+" SLOT="3.0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris" IUSE="aqua doc examples test wayland +X" REQUIRED_USE="|| ( aqua wayland X )" diff --git a/dev-cpp/libassa/libassa-3.5.1.ebuild b/dev-cpp/libassa/libassa-3.5.1.ebuild deleted file mode 100644 index ef3af8f015ad..000000000000 --- a/dev-cpp/libassa/libassa-3.5.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libassa/libassa-3.5.1.ebuild,v 1.4 2012/05/27 07:29:17 angelos Exp $ - -EAPI=4 -inherit eutils - -DESCRIPTION="A networking library based on Adaptive Communication Patterns" -HOMEPAGE="http://libassa.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="LGPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="doc static-libs" - -RDEPEND="net-libs/libtirpc" -DEPEND="${RDEPEND} - doc? ( app-doc/doxygen )" - -DOCS=( AUTHORS ChangeLog NEWS README TODO ) - -src_prepare() { - epatch "${FILESDIR}"/${PN}-3.5.0-fix-tests.patch -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_enable doc doxygen) -} - -src_install() { - default - find "${ED}" -name "*.la" -exec rm -rf {} + || die "failed to delete .la files" -} diff --git a/dev-cpp/libgnomemm/libgnomemm-2.30.0.ebuild b/dev-cpp/libgnomemm/libgnomemm-2.30.0.ebuild index 3afa82426b07..21c820519231 100644 --- a/dev-cpp/libgnomemm/libgnomemm-2.30.0.ebuild +++ b/dev-cpp/libgnomemm/libgnomemm-2.30.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-cpp/libgnomemm/libgnomemm-2.30.0.ebuild,v 1.9 2013/04/01 18:23:44 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomemm/libgnomemm-2.30.0.ebuild,v 1.10 2013/04/09 16:41:19 ago Exp $ EAPI=4 GNOME2_LA_PUNT="yes" @@ -13,7 +13,7 @@ HOMEPAGE="http://www.gtkmm.org" LICENSE="LGPL-2.1" SLOT="2.6" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd" IUSE="" RDEPEND=">=dev-cpp/gtkmm-2.8:2.4 diff --git a/dev-cpp/mm-common/mm-common-0.9.6.ebuild b/dev-cpp/mm-common/mm-common-0.9.6.ebuild index 73dec64ee0cb..025b0a6aa012 100644 --- a/dev-cpp/mm-common/mm-common-0.9.6.ebuild +++ b/dev-cpp/mm-common/mm-common-0.9.6.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-cpp/mm-common/mm-common-0.9.6.ebuild,v 1.10 2013/04/01 18:23:48 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/mm-common/mm-common-0.9.6.ebuild,v 1.11 2013/04/09 16:41:25 ago Exp $ EAPI="4" GCONF_DEBUG="no" @@ -12,7 +12,7 @@ HOMEPAGE="http://www.gtkmm.org/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86" IUSE="" RDEPEND="" diff --git a/dev-db/libiodbc/files/fix-runpaths.patch b/dev-db/libiodbc/files/fix-runpaths.patch new file mode 100644 index 000000000000..e913b4c7c4cc --- /dev/null +++ b/dev-db/libiodbc/files/fix-runpaths.patch @@ -0,0 +1,15 @@ +--- samples/Makefile.am 2012-03-27 05:15:02.000000000 +0200 ++++ samples/Makefile.am.new 2013-04-09 14:07:48.303789999 +0200 +@@ -78,12 +78,10 @@ + # + iodbctest_SOURCES = iodbctest.c + iodbctest_LDADD = ../iodbc/libiodbc.la +-iodbctest_LDFLAGS = -static + + iodbctestw_CFLAGS = -DUNICODE + iodbctestw_SOURCES = iodbctest.c + iodbctestw_LDADD = ../iodbc/libiodbc.la +-iodbctestw_LDFLAGS = -static + + EXTRA_DIST = $(srcdir)/Makefile.sample + diff --git a/dev-db/libiodbc/libiodbc-3.52.8-r1.ebuild b/dev-db/libiodbc/libiodbc-3.52.8-r1.ebuild new file mode 100644 index 000000000000..652500436e99 --- /dev/null +++ b/dev-db/libiodbc/libiodbc-3.52.8-r1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-db/libiodbc/libiodbc-3.52.8-r1.ebuild,v 1.1 2013/04/09 12:17:41 olemarkus Exp $ + +EAPI="5" + +inherit autotools eutils + +MY_PN="iODBC" + +DESCRIPTION="ODBC Interface for Linux." +HOMEPAGE="http://www.iodbc.org/" +SRC_URI="https://github.com/openlink/${MY_PN}/archive/v${PV}.zip -> ${P}.zip" + +KEYWORDS="~amd64 ~x86" +LICENSE="|| ( LGPL-2 BSD )" +SLOT="0" +IUSE="gtk" + +RDEPEND=">=sys-libs/readline-4.1 + >=sys-libs/ncurses-5.2 + gtk? ( x11-libs/gtk+:2 )" + +DEPEND="${RDEPEND}" + +DOCS="AUTHORS ChangeLog NEWS README" + +S="${WORKDIR}/${MY_PN}-${PV}" + +src_prepare() { + sed -i.orig \ + -e '/^cd "$PREFIX"/,/^esac/d' \ + iodbc/install_libodbc.sh || die "sed failed" + epatch \ + "${FILESDIR}"/libiodbc-3.52.7-debian_bug501100.patch \ + "${FILESDIR}"/libiodbc-3.52.7-debian_bug508480.patch \ + "${FILESDIR}"/libiodbc-3.52.7-gtk.patch \ + "${FILESDIR}"/libiodbc-3.52.7-multilib.patch \ + "${FILESDIR}"/libiodbc-3.52.7-unicode_includes.patch \ + "${FILESDIR}"/libiodbc-3.52.8-gtk-parallel-make.patch \ + "${FILESDIR}"/libiodbc-3.52.8-runtime-failures.patch \ + "${FILESDIR}"/fix-runpaths.patch + chmod -x include/*.h || die + eautoreconf +} + +src_configure() { + econf \ + --disable-static \ + --enable-odbc3 \ + --enable-pthreads \ + --with-layout=gentoo \ + --with-iodbc-inidir=yes \ + $(use_enable gtk gui) +} + +src_install() { + default + prune_libtool_files + + # Install lintian overrides + insinto /usr/share/lintian/overrides + newins debian/iodbc.lintian-overrides iodbc + newins debian/libiodbc2.lintian-overrides libiodbc2 + +} diff --git a/dev-db/libiodbc/libiodbc-3.52.8.ebuild b/dev-db/libiodbc/libiodbc-3.52.8.ebuild index 23f9ec34db33..60d5d5ba92ee 100644 --- a/dev-db/libiodbc/libiodbc-3.52.8.ebuild +++ b/dev-db/libiodbc/libiodbc-3.52.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/dev-db/libiodbc/libiodbc-3.52.8.ebuild,v 1.1 2013/01/08 22:17:03 mabi Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/libiodbc/libiodbc-3.52.8.ebuild,v 1.2 2013/04/09 12:17:41 olemarkus Exp $ EAPI="5" @@ -63,7 +63,4 @@ src_install() { newins debian/iodbc.lintian-overrides iodbc newins debian/libiodbc2.lintian-overrides libiodbc2 - # Remove rpaths to fix insecure RUNPATHS - bug 421603 - chrpath --delete "${D}"/usr/bin/iodbctest - chrpath --delete "${D}"/usr/bin/iodbctestw } diff --git a/dev-dotnet/dbus-sharp/dbus-sharp-0.7.0.ebuild b/dev-dotnet/dbus-sharp/dbus-sharp-0.7.0.ebuild deleted file mode 100644 index 3c039021b40b..000000000000 --- a/dev-dotnet/dbus-sharp/dbus-sharp-0.7.0.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/dbus-sharp/dbus-sharp-0.7.0.ebuild,v 1.7 2012/05/04 03:56:56 jdhore Exp $ - -EAPI=4 -inherit mono - -DESCRIPTION="D-Bus for .NET" -HOMEPAGE="https://github.com/mono/dbus-sharp" -SRC_URI="mirror://github/mono/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -RDEPEND="dev-lang/mono - sys-apps/dbus" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_setup() { - DOCS="AUTHORS README" -} diff --git a/dev-java/commons-codec/Manifest b/dev-java/commons-codec/Manifest index 6e5b195f91ae..36e95bfffd14 100644 --- a/dev-java/commons-codec/Manifest +++ b/dev-java/commons-codec/Manifest @@ -1 +1,2 @@ DIST commons-codec-1.4-src.tar.gz 176523 SHA256 6deb892bdca68c79ed1a9fe7fb0ac95d1e89ee1e1eb4f40a07144983f1d867e6 SHA512 74a6164fd549980409b148e79cd18479eac1e63bc37d987610d38bb1282a53b6131077a9552e0c40cd6e2692249b5fc0ff8d363b9bd603884215a111e4a80065 WHIRLPOOL 5c81f432bcbff125354d2239a479514477f80a2037da8119d42d57d58289ea8b8fd5b1d4103b299ad11fca9db24c22391b3bc6ead6e73ce9b0aa1c0b22125b56 +DIST commons-codec-1.7-src.tar.gz 291251 SHA256 816b5a9ae9ee67b918cb1864d0a24fbbc24ab1875992b6fc46ada6d62435e38a SHA512 31358283ac2827cb05486b8ff1512242153f61deb086f7fe145ee3ca38d96e43fba080a1e89a3b8cd44d09761015ff4dbe5226d29b7f9fcd59e68ca7701b28d6 WHIRLPOOL edc4caaf6ef56fd9c1a7437dacf873be53802eccbcb1f6035163946c07e3f4373e0698f069f00a8ad2bb5562a2c6a1ab909eccfccd6a527ce51dcedd2bd2bbfc diff --git a/dev-java/commons-codec/commons-codec-1.7.ebuild b/dev-java/commons-codec/commons-codec-1.7.ebuild new file mode 100644 index 000000000000..05cd790cb0c4 --- /dev/null +++ b/dev-java/commons-codec/commons-codec-1.7.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/commons-codec/commons-codec-1.7.ebuild,v 1.1 2013/04/09 01:02:16 radhermit Exp $ + +EAPI=5 +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Implementations of common encoders and decoders in Java." +HOMEPAGE="http://commons.apache.org/codec" +SRC_URI="mirror://apache/commons/codec/source/${P}-src.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos" +IUSE="test" + +RDEPEND=">=virtual/jre-1.6" +DEPEND=">=virtual/jdk-1.6 + test? ( + dev-java/ant-junit:0 + dev-java/junit:4 + )" + +S=${WORKDIR}/${P}-src + +JAVA_ANT_ENCODING="ISO-8859-1" +EANT_TEST_GENTOO_CLASSPATH="junit-4" +JAVA_ANT_REWRITE_CLASSPATH="yes" + +src_test() { + java-pkg-2_src_test +} + +src_install() { + java-pkg_newjar dist/${P}*.jar + + dodoc RELEASE-NOTES.txt + use doc && java-pkg_dojavadoc dist/docs/api + use source && java-pkg_dosrc src/main/java/* +} diff --git a/dev-java/commons-io/Manifest b/dev-java/commons-io/Manifest index e3870caf979c..ac101c18cde2 100644 --- a/dev-java/commons-io/Manifest +++ b/dev-java/commons-io/Manifest @@ -1,2 +1,3 @@ DIST commons-io-1.4-src.tar.gz 236187 SHA256 eca986497f7b4d1b1ec41821b1b5df827bb31fc14833e4449cfa8bcd5d7f29bb SHA512 75395b5aeec6c04e6063b00161c3743dad6362f6a4095e26ba099aae8d187228d597fe91901afd395d06da390c4c19ceb60c73c49f83cbe45321b401a340f7c3 WHIRLPOOL 77d10b87b3be3006ead4fcb7ea9a72094ad35ea54951a5b0091b64f4e0bf82c75be36ae630cb90be82c444bb145e2f671268c187c6cb66cd82bfa8f9b8292e74 DIST commons-io-2.0.1-src.tar.gz 280920 SHA256 32be3e626618b49c2e2fb268bd2101d7ae38438131df4560fc800bd2f26fdff8 SHA512 0e01d12c46707ff254b8aa3b31fe8d027e7bafd34a2c2c96b8867084bbe43c763d03f773189ec17ffc6525ad8d022009cb64cdf288a401194e8c0ebbe5d99ee2 WHIRLPOOL 4e34102bdf9b025165f25d09287ce446f838a92c990db099f5a9356cad994b88b9916c089f2ffcb7ceeeb5250b22daace637b7df5a3526711923824d0dc3f8f1 +DIST commons-io-2.4-src.tar.gz 330961 SHA256 961c8b41a891933c2d662d8e490667243ac82422668d1ccdd7bfedfdb944bb58 SHA512 69ac5f7b8de952d8b519ad89d4e9a33a9d269af0e68b735c0180ee8853a30e2a09147ceac362626a2fb3a041bd46eca094be2661ff280c1bab54a0548cae0aee WHIRLPOOL 4db6be6dbba4e3c9f67c471eff709ade22594ef1cea759da5651fa5788b1bcfeca689621eb3ff7ca52dca0229b096d597e9f5cb969ebcc7a06ff18f28ccc3551 diff --git a/dev-java/commons-io/commons-io-2.4.ebuild b/dev-java/commons-io/commons-io-2.4.ebuild new file mode 100644 index 000000000000..39ad1a789fd7 --- /dev/null +++ b/dev-java/commons-io/commons-io-2.4.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/commons-io/commons-io-2.4.ebuild,v 1.1 2013/04/09 00:22:08 radhermit Exp $ + +EAPI=5 +JAVA_PKG_IUSE="doc source" + +inherit java-pkg-2 java-ant-2 eutils + +MY_P=${P}-src +DESCRIPTION="Commons-IO contains utility classes, stream implementations, file filters, and endian classes." +HOMEPAGE="http://commons.apache.org/io/" +SRC_URI="mirror://apache/commons/io/source/${MY_P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="1" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="test" + +RDEPEND=">=virtual/jre-1.6" +DEPEND=">=virtual/jdk-1.6 + test? ( + dev-java/ant-junit:0 + dev-java/junit:4 + )" + +S=${WORKDIR}/${MY_P} + +EANT_EXTRA_ARGS="-Dcomponent.version=${PV}" +JAVA_ANT_REWRITE_CLASSPATH="yes" + +java_prepare() { + # Setting java.io.tmpdir doesn't have effect unless we do this because the vm is forked + java-ant_xml-rewrite -f build.xml --change -e junit -a clonevm -v "true" +} + +src_test() { + if [[ ${EUID} -ne 0 ]] ; then + ANT_OPTS="-Dskip.download=1 -Djava.io.tmpdir=${T} -Duser.home=${T}" \ + ANT_TASKS="ant-junit" \ + eant test \ + -Dgentoo.classpath="$(java-pkg_getjars junit-4):${S}/src/test/resources" \ + -Dlibdir="libdir" \ + -Djava.io.tmpdir="${T}" + else + elog "Tests fail unless userpriv is enabled because they test for" + elog "file permissions which doesn't work when run as root." + fi +} + +src_install() { + java-pkg_newjar target/${P}.jar + + dodoc RELEASE-NOTES.txt + use doc && java-pkg_dojavadoc target/apidocs + use source && java-pkg_dosrc src/main/java/* +} diff --git a/dev-java/commons-io/files/commons-io-1.3-build.xml.patch b/dev-java/commons-io/files/commons-io-1.3-build.xml.patch deleted file mode 100644 index cf509dcd51df..000000000000 --- a/dev-java/commons-io/files/commons-io-1.3-build.xml.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- build.xml.original 2007-02-09 21:36:40.000000000 +0100 -+++ build.xml 2007-02-09 21:38:25.000000000 +0100 -@@ -92,7 +92,7 @@ - - - -- -+ - - - -@@ -196,7 +196,7 @@ - - - -- -+ - - - diff --git a/dev-java/commons-io/files/commons-io-1.3.1-build.xml.patch b/dev-java/commons-io/files/commons-io-1.3.1-build.xml.patch deleted file mode 100644 index cf509dcd51df..000000000000 --- a/dev-java/commons-io/files/commons-io-1.3.1-build.xml.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- build.xml.original 2007-02-09 21:36:40.000000000 +0100 -+++ build.xml 2007-02-09 21:38:25.000000000 +0100 -@@ -92,7 +92,7 @@ - - - -- -+ - - - -@@ -196,7 +196,7 @@ - - - -- -+ - - - diff --git a/dev-java/icedtea-bin/icedtea-bin-6.1.12.2.ebuild b/dev-java/icedtea-bin/icedtea-bin-6.1.12.2.ebuild index 077d4ac68f3b..401d0f07ff93 100644 --- a/dev-java/icedtea-bin/icedtea-bin-6.1.12.2.ebuild +++ b/dev-java/icedtea-bin/icedtea-bin-6.1.12.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-java/icedtea-bin/icedtea-bin-6.1.12.2.ebuild,v 1.3 2013/02/14 13:10:09 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/icedtea-bin/icedtea-bin-6.1.12.2.ebuild,v 1.4 2013/04/09 20:26:41 ssuominen Exp $ EAPI="4" @@ -52,7 +52,7 @@ X_COMMON_DEP=" COMMON_DEP=" >=media-libs/giflib-4.1.6-r1 - >=media-libs/libpng-1.5 + =media-libs/libpng-1.5* >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 diff --git a/dev-java/icedtea-bin/icedtea-bin-6.1.12.4.ebuild b/dev-java/icedtea-bin/icedtea-bin-6.1.12.4.ebuild index cd88fd513e6c..3ebd02cca620 100644 --- a/dev-java/icedtea-bin/icedtea-bin-6.1.12.4.ebuild +++ b/dev-java/icedtea-bin/icedtea-bin-6.1.12.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/icedtea-bin/icedtea-bin-6.1.12.4.ebuild,v 1.3 2013/03/25 21:15:47 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/icedtea-bin/icedtea-bin-6.1.12.4.ebuild,v 1.4 2013/04/09 20:26:41 ssuominen Exp $ EAPI="4" @@ -52,7 +52,7 @@ X_COMMON_DEP=" COMMON_DEP=" >=media-libs/giflib-4.1.6-r1 - >=media-libs/libpng-1.5 + =media-libs/libpng-1.5* >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 diff --git a/dev-java/icedtea-bin/icedtea-bin-7.2.3.6.ebuild b/dev-java/icedtea-bin/icedtea-bin-7.2.3.6.ebuild index 6982f961a030..2fd89ccb1edf 100644 --- a/dev-java/icedtea-bin/icedtea-bin-7.2.3.6.ebuild +++ b/dev-java/icedtea-bin/icedtea-bin-7.2.3.6.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/icedtea-bin/icedtea-bin-7.2.3.6.ebuild,v 1.1 2013/02/14 06:15:06 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/icedtea-bin/icedtea-bin-7.2.3.6.ebuild,v 1.2 2013/04/09 20:26:41 ssuominen Exp $ EAPI="4" @@ -59,7 +59,7 @@ X_COMMON_DEP=" COMMON_DEP=" >=media-libs/giflib-4.1.6-r1 media-libs/lcms:2 - >=media-libs/libpng-1.5 + =media-libs/libpng-1.5* >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 diff --git a/dev-java/icedtea-bin/icedtea-bin-7.2.3.8.ebuild b/dev-java/icedtea-bin/icedtea-bin-7.2.3.8.ebuild index 63650c648662..ed8ca9c3fe5b 100644 --- a/dev-java/icedtea-bin/icedtea-bin-7.2.3.8.ebuild +++ b/dev-java/icedtea-bin/icedtea-bin-7.2.3.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/dev-java/icedtea-bin/icedtea-bin-7.2.3.8.ebuild,v 1.1 2013/03/24 13:27:12 caster Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-java/icedtea-bin/icedtea-bin-7.2.3.8.ebuild,v 1.2 2013/04/09 20:26:41 ssuominen Exp $ EAPI="4" @@ -59,7 +59,7 @@ X_COMMON_DEP=" COMMON_DEP=" >=media-libs/giflib-4.1.6-r1 media-libs/lcms:2 - >=media-libs/libpng-1.5 + =media-libs/libpng-1.5* >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 diff --git a/dev-java/java-config/Manifest b/dev-java/java-config/Manifest index 2e325aac2a03..9b95711b60e7 100644 --- a/dev-java/java-config/Manifest +++ b/dev-java/java-config/Manifest @@ -1,2 +1,3 @@ DIST java-config-2.1.11.tar.bz2 60763 SHA256 ffc90aac716f6edc2f99f70e4947eab606e3a70dadb90328dedda16345796bbe SHA512 7a68e515f6cf15deac26c19589f9a7556084c5c29a8a65783a804f222da917f047118d2e80da93d045339549b21541a88ba9e4e97e7c9afb2238ade1c1c2d496 WHIRLPOOL 9be6a6fe87a95e4310a86d45f4798f89823fad9dd5ea35fe02c892f5400c4ba69bc6a3204dc1711f01f16166065855721c26f7eb71ebeef8243eb6f001a17305 DIST java-config-2.1.12.tar.bz2 48925 SHA256 2bace29c276a9507260df505d27bdb9eeaac79e46a8ba615496ae91072b35460 SHA512 f694002baa5d4db3712b8ed9e8b15ba5f867159ea9d605ddaed93e7beb91fc98211c1431f6fcd4c3f10da88a396d73f2d85db0a5e4dca76f465b3a35a18f2a9d WHIRLPOOL fe117e36d5c1afb510f1ab696690ffcf4a5c601de8309c3b96e3e13ea72f9309bde371bd4a7c5b2d30464675557b5da33d7f73c5a391baaae41d342be24dcdc7 +DIST java-config-2.2.0.tar.bz2 51851 SHA256 2cc47541714975099886156838f1f2c584b65e0cbc75ba2348cb18d9dec85fb7 SHA512 a491cfe86bde8afadfc5b875740d79f9077526d8650ffb034fdad67a7ffa1b02646f67b1ef0eab7b0fe3ae57b5d767fa6a0d5593fe07416993d60588a8ed595a WHIRLPOOL 1ded227dcdd7f248f9a8335b07bf006ebfefc8368dd400558d3ed7ca14e22da83ee052fc33d65bb784c61d573fa7fae6295be4d023ad7652ed4704997260316e diff --git a/dev-java/java-config/java-config-2.2.0.ebuild b/dev-java/java-config/java-config-2.2.0.ebuild new file mode 100644 index 000000000000..26e773eae176 --- /dev/null +++ b/dev-java/java-config/java-config-2.2.0.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-java/java-config/java-config-2.2.0.ebuild,v 1.1 2013/04/08 16:45:48 sera Exp $ + +EAPI="5" + +# jython depends on java-config, so don't add it or things will break +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2,3_3} pypy{1_8,1_9} ) + +inherit distutils-r1 + +DESCRIPTION="Java environment configuration query tool" +HOMEPAGE="http://www.gentoo.org/proj/en/java/" +SRC_URI="http://dev.gentoo.org/~sera/distfiles/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~amd64" +IUSE="" + +# baselayout-java is added as a dep till it can be added to eclass. +RDEPEND=" + >=dev-java/java-config-wrapper-0.15 + sys-apps/baselayout-java + sys-apps/portage" + +python_test() { + esetup.py test || die +} diff --git a/dev-lang/R/R-3.0.0.ebuild b/dev-lang/R/R-3.0.0.ebuild index d47eeffe0a90..cc0dc6cad8c8 100644 --- a/dev-lang/R/R-3.0.0.ebuild +++ b/dev-lang/R/R-3.0.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-lang/R/R-3.0.0.ebuild,v 1.1 2013/04/04 22:10:01 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/R-3.0.0.ebuild,v 1.2 2013/04/10 07:09:19 patrick Exp $ EAPI=5 @@ -167,7 +167,7 @@ src_compile() { src_install() { default - emake -C src/nmath/standalone DESTDIR="${D}" install + emake -j1 -C src/nmath/standalone DESTDIR="${D}" install if use doc; then emake DESTDIR="${D}" install-info install-pdf diff --git a/dev-lang/swi-prolog/Manifest b/dev-lang/swi-prolog/Manifest index 2223faec2de8..0724957bda2c 100644 --- a/dev-lang/swi-prolog/Manifest +++ b/dev-lang/swi-prolog/Manifest @@ -3,10 +3,12 @@ DIST pl-6.2.6.tar.gz 14407455 SHA256 9412f0753a61c30dbcf1afac01fe7c9168002854709 DIST pl-6.3.10.tar.gz 14544771 SHA256 cd22db0acd78a4bd60265e946bd7593f499dfa7e533af29c5fae987fa7cf0ce7 SHA512 7931e28f931c5b392019a964bcbcfc3c536aff6b82d94b7f110f66f3ad8d9a65ff422937278fc148d52d830bcdfad7e2fa54a57227eb8310dba6d4c100d3ac61 WHIRLPOOL dfb5daf494965f7e75f9a8772b8fa2e76a85a35e0fd7bb31354dd21a5391adb13e758edd0933ddbaf031effa1d13902c0d21ecada789b43849cdfc552ee55f9f DIST pl-6.3.11.tar.gz 14537455 SHA256 851720e4bd432bd4a0355c2082749d4b5b59d038a34cfbaadccfb447a91e017e SHA512 6bdded3fef3c091316397aa06eacf56a555872ff7d3bc730b2e2cb3f4722fd9067714278e1aced131f14d0d392370a4580e80caacb11168bc46c42520e60bb94 WHIRLPOOL b318dc22a88209e2bb71598f91334ec66dc6192bd2723ba1589cdabfb11c769144a02d878b663f7794a0afbf08e1d3b5c913361acfca6d7a89a8d088f188d570 DIST pl-6.3.12.tar.gz 14547401 SHA256 5fa531af2c5f8f96bd6f7840c416d2e5d9292fc5572e1a3055f10ee032b7a533 SHA512 0c391f998aae1b3b21f239676b2459e3329abb2659e91edf2d42b98808f0bd94568ca93fa8094b361cfbf2e7ff51c55a74653d2f2e6ff30457e54d25abb1fe85 WHIRLPOOL 78d26664bfe5843c688ff289e6e46e49bf44041728e53398c09447eedfcbeead1c77507406964eec66659621196bac61de670b8716872d29bf6990e05a8fd59b +DIST pl-6.3.13.tar.gz 14554442 SHA256 ff8bd23a32a45481e571f1869ea503bfaae431d4b25b9a0b7c9c0d7277132a67 SHA512 bf14a4dd5731f547fc10c800df9fe56d78e2632bc7bf413fbdb22df989cfaaa087b02107eb5df88195e779627435fa83e86928aa8f7d9f7314a0770fc3153446 WHIRLPOOL 92b9df6d67a1bf508fa655c8cb02d2ad6d04fa44f241c9d04e120bf7502363f61103aeb646cd0ebbc08ff8284cbc9a2ccf08d14c1cc08d1732824f145562d73e DIST pl-6.3.9.tar.gz 14544131 SHA256 d0cbcb7fea6795d46f5447243800ed5a7509522442bf88e77ff802b9594f79ea SHA512 40fc854806fa4b6de90925c5e4878a1f2cc2f3de47fd7a355d65264a6e86bb21a619eaa0263d9bde05d4fd8676dcac8928acb975251f78699bd8941744547762 WHIRLPOOL 05268e6dc837e59f2757579ad113aae8e18f8798604b8c2e0fa0a2a5510aa0117ea04d6f732f3bee53c493805318a3e8b07c7df9dec46cbf70ebe84f2effaedb DIST swi-prolog-6.2.5-gentoo-patchset-1.tar.gz 2692 SHA256 c4e59e4240effb3383465997020e4056e5967aa4f9bcf0b010a564d1f49bbd71 SHA512 2f31fae8df581931bee3b38bee1687f9fb12567a9f267a01eba5dd011377cea05b3249df942c4b719bb0c2f7cfb86c5665794948083c3090a6854b04fb25ac4e WHIRLPOOL 49685d66ee2ec6ad4a654356bb6d290d8bd81e79c42241786c235d610493b78583cfb2c44be4b20ba49f49891d9da69b90bf5b5c0f9fc59f272c20ff6475c204 DIST swi-prolog-6.2.6-gentoo-patchset-0.tar.gz 2701 SHA256 9ab62cb8b19816af66adb4b52344ca59449210a6413c08c9edaf4e3fa5cdf3ad SHA512 a0c5961fd3ceb1e8ee59be6a03bd801fa95ecede3eba41d9b66682e39095e532207e87029c13aaa0e8cb90c03e96e6e41889e433b3627df9b864adad9f45851b WHIRLPOOL eafe59ebc256ccef608b635cf8559866e38f0c52667dac96f984ce1fe195de636176fa8f9653d882a87b6619dd56e0019c01efbd413bfbcb48d457dcfb46fac6 DIST swi-prolog-6.3.10-gentoo-patchset-0.tar.gz 1908 SHA256 1345c9154afe1aba367d58daf9ebc83b21fe97d0022070be0c30f28c5533eb2d SHA512 27ebf0c96adf15fee764686897b6e346f3da823c59a8a2ef85ecc249b92cf431be2a17b1e83329bf100e419d46741fa47a6324d39ac3f5067536f206ab424d71 WHIRLPOOL 3d9318a5c65be61ed4f0a9d09cab0c17cce13c8ac7b48e791c5c6a87b214f0d4ea4edcd517a7bbb2334be90c6f58d56565ff9dd40e8571103ae9efe7a210922d DIST swi-prolog-6.3.11-gentoo-patchset-0.tar.gz 1917 SHA256 ce63fb05ee0c4e05dd65ac44f2cb04e9a6d1090a328d9ef370717abc7cac9c12 SHA512 e3cf42c66531ed175d39f9b2fdfad8cdcaab4077a3463440dc82fb37c1e88e798a55847ac2ca257b17a59195445bd0b2a0cfedc164da929b26c44fd81e079007 WHIRLPOOL 25643467f8edaa46b6f7029f09e16ba8049d02b3c140efea69e09af98915f3be2ee3513aea2c531f30762cdc58c6bb079791d872b35f7399621ba96e9a26aee5 DIST swi-prolog-6.3.12-gentoo-patchset-0.tar.gz 1913 SHA256 5134e0d4a791d732350322547c650b6317dbee8032c6f30c4f8bc042a6b26643 SHA512 8f7f579284ae261bdc3e6151b728d787d5da9d51bd144bf4f6563ef31382cada62a640224da3e892f64e65379c4ff6970cc71bb066e55ec8542bd6b582a95b96 WHIRLPOOL da400bb0d8f3ad0f335d22efb55f44cd3ad3d3df4d48746a4f42e9645bbb06304d64de3e394b1cd6e73e1d32c1c3606679120e8b4cdda05458c4501c7e9179df +DIST swi-prolog-6.3.13-gentoo-patchset-0.tar.gz 1913 SHA256 b4e12b77ed3d70e01a1118885be4000723ad1f27f731b1259238273da26ca765 SHA512 3e1272314e901fcc7095494cd2e4c6504f750738221153d765d39025280e8df2b9ce4257939dfd1ec18d20c88bf58d45c8941a51174aa781bf27f362a4fef7da WHIRLPOOL a48e6cd4a8c54e5dfcb453800a384b6607ad7a9772e67f2aa45e3e4fa0351ff17befb429b8a4ee159e9dcabda54429e9b200fb4e0a9d78e2200bca420c306040 DIST swi-prolog-6.3.9-gentoo-patchset-0.tar.gz 1909 SHA256 4681421bc449c55fc75229de94dd63bb3f2a9f5ad3f17904d818b6b675441180 SHA512 a9bdc3d53ba42077ba827461da37260945ae43719aa38951bc5d6d8e45068e0e20cd05b07cbe9acc3b2faa74f00d8c50dc3ae010d33e9320c5c456b9188d5b9b WHIRLPOOL 35f261950f4e55a2a18981152be970682c530979a7791cbe5943eba02c61318d66b77529768c1313c325fc4f6a6eddee0b577d782c18f2e65b0132b1046615c8 diff --git a/dev-lang/swi-prolog/swi-prolog-6.3.13.ebuild b/dev-lang/swi-prolog/swi-prolog-6.3.13.ebuild new file mode 100644 index 000000000000..eb33ed643183 --- /dev/null +++ b/dev-lang/swi-prolog/swi-prolog-6.3.13.ebuild @@ -0,0 +1,125 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lang/swi-prolog/swi-prolog-6.3.13.ebuild,v 1.1 2013/04/09 08:26:23 keri Exp $ + +EAPI=4 + +inherit eutils flag-o-matic java-pkg-opt-2 multilib + +PATCHSET_VER="0" + +DESCRIPTION="free, small, and standard compliant Prolog compiler" +HOMEPAGE="http://www.swi-prolog.org/" +SRC_URI="http://www.swi-prolog.org/download/devel/src/pl-${PV}.tar.gz + mirror://gentoo/${P}-gentoo-patchset-${PATCHSET_VER}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="archive debug doc gmp hardened java minimal odbc readline ssl static-libs test zlib X" + +RDEPEND="sys-libs/ncurses + archive? ( app-arch/libarchive ) + zlib? ( sys-libs/zlib ) + odbc? ( dev-db/unixODBC ) + readline? ( sys-libs/readline ) + gmp? ( dev-libs/gmp ) + ssl? ( dev-libs/openssl ) + java? ( >=virtual/jdk-1.4 ) + X? ( + virtual/jpeg + x11-libs/libX11 + x11-libs/libXft + x11-libs/libXpm + x11-libs/libXt + x11-libs/libICE + x11-libs/libSM )" + +DEPEND="${RDEPEND} + X? ( x11-proto/xproto ) + java? ( test? ( =dev-java/junit-3.8* ) )" + +S="${WORKDIR}/pl-${PV}" + +src_prepare() { + EPATCH_FORCE=yes + EPATCH_SUFFIX=patch + epatch "${WORKDIR}"/${PV} + + # OSX/Intel ld doesn't like an archive without table of contents + sed -i -e 's/-cru/-scru/' packages/nlp/libstemmer_c/Makefile.pl || die +} + +src_configure() { + append-flags -fno-strict-aliasing + use ppc && append-flags -mno-altivec + use hardened && append-flags -fno-unit-at-a-time + use debug && append-flags -DO_DEBUG + + # ARCH is used in the configure script to figure out host and target + # specific stuff + export ARCH=${CHOST} + + export CC_FOR_BUILD=$(tc-getBUILD_CC) + + cd "${S}"/src + econf \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + $(use_enable gmp) \ + $(use_enable readline) \ + $(use_enable static-libs static) \ + --enable-shared \ + --enable-custom-flags COFLAGS="${CFLAGS}" + + if ! use minimal ; then + local jpltestconf + if use java && use test ; then + jpltestconf="--with-junit=$(java-config --classpath junit)" + fi + + cd "${S}/packages" + econf \ + --libdir="${EPREFIX}"/usr/$(get_libdir) \ + $(use_with archive) \ + $(use_with java jpl) \ + ${jpltestconf} \ + $(use_with odbc) \ + $(use_with ssl) \ + $(use_with X xpce) \ + $(use_with zlib) \ + COFLAGS='"${CFLAGS}"' + fi +} + +src_compile() { + cd "${S}"/src + emake + + if ! use minimal ; then + cd "${S}/packages" + emake + fi +} + +src_test() { + cd "${S}/src" + emake check + + if ! use minimal ; then + cd "${S}/packages" + emake check + fi +} + +src_install() { + emake -C src DESTDIR="${D}" install + + if ! use minimal ; then + emake -C packages DESTDIR="${D}" install + if use doc ; then + emake -C packages DESTDIR="${D}" html-install + fi + fi + + dodoc ReleaseNotes/relnotes-5.10 INSTALL README VERSION +} diff --git a/dev-lang/v8/v8-3.16.14.9-r1.ebuild b/dev-lang/v8/v8-3.16.14.9-r1.ebuild index 7ebd62d7a1e9..bc665efa800a 100644 --- a/dev-lang/v8/v8-3.16.14.9-r1.ebuild +++ b/dev-lang/v8/v8-3.16.14.9-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-lang/v8/v8-3.16.14.9-r1.ebuild,v 1.5 2013/04/05 14:36:24 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.16.14.9-r1.ebuild,v 1.6 2013/04/09 17:31:52 floppym Exp $ EAPI="5" PYTHON_COMPAT=( python2_{6,7} ) @@ -110,6 +110,7 @@ src_install() { fi dobin out/${mytarget}/d8 || die + pax-mark m "${ED}usr/bin/d8" dolib out/${mytarget}/lib.target/libv8$(get_libname ${soname_version}) || die dosym libv8$(get_libname ${soname_version}) /usr/$(get_libdir)/libv8$(get_libname) || die diff --git a/dev-lang/v8/v8-3.17.15.3.ebuild b/dev-lang/v8/v8-3.17.15.3.ebuild index 0f7d8cd6a864..78cd14a663f9 100644 --- a/dev-lang/v8/v8-3.17.15.3.ebuild +++ b/dev-lang/v8/v8-3.17.15.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-lang/v8/v8-3.17.15.3.ebuild,v 1.2 2013/04/05 23:04:30 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.17.15.3.ebuild,v 1.3 2013/04/09 17:31:52 floppym Exp $ EAPI="5" PYTHON_COMPAT=( python2_{6,7} ) @@ -108,6 +108,7 @@ src_install() { fi dobin out/${mytarget}/d8 + pax-mark m "${ED}usr/bin/d8" dolib out/${mytarget}/lib.target/libv8$(get_libname ${soname_version}) dosym libv8$(get_libname ${soname_version}) /usr/$(get_libdir)/libv8$(get_libname) diff --git a/dev-lang/v8/v8-9999.ebuild b/dev-lang/v8/v8-9999.ebuild index 2bf44c195ecc..dd2aa7932eaf 100644 --- a/dev-lang/v8/v8-9999.ebuild +++ b/dev-lang/v8/v8-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/dev-lang/v8/v8-9999.ebuild,v 1.40 2013/04/05 23:05:12 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.41 2013/04/09 17:31:52 floppym Exp $ EAPI="5" PYTHON_COMPAT=( python2_{6,7} ) @@ -116,6 +116,7 @@ src_install() { fi dobin out/${mytarget}/d8 + pax-mark m "${ED}usr/bin/d8" dolib out/${mytarget}/lib.target/libv8$(get_libname ${soname_version}) dosym libv8$(get_libname ${soname_version}) /usr/$(get_libdir)/libv8$(get_libname) diff --git a/dev-lang/vala/vala-0.18.1.ebuild b/dev-lang/vala/vala-0.18.1.ebuild index e2fd214e647b..493084016dfe 100644 --- a/dev-lang/vala/vala-0.18.1.ebuild +++ b/dev-lang/vala/vala-0.18.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-lang/vala/vala-0.18.1.ebuild,v 1.12 2013/04/01 18:23:50 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/vala/vala-0.18.1.ebuild,v 1.13 2013/04/09 16:41:31 ago Exp $ EAPI="4" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://live.gnome.org/Vala" LICENSE="LGPL-2.1" SLOT="0.18" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux" IUSE="test +vapigen" RDEPEND=">=dev-libs/glib-2.18:2 diff --git a/dev-libs/atk/atk-2.6.0.ebuild b/dev-libs/atk/atk-2.6.0.ebuild index 076437570424..4f6179a00b38 100644 --- a/dev-libs/atk/atk-2.6.0.ebuild +++ b/dev-libs/atk/atk-2.6.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/atk/atk-2.6.0.ebuild,v 1.12 2013/04/01 18:23:52 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/atk-2.6.0.ebuild,v 1.13 2013/04/09 16:41:38 ago Exp $ EAPI="4" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://projects.gnome.org/accessibility/" LICENSE="LGPL-2+" 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 ~x86-winnt" +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 ~x86-winnt" IUSE="+introspection nls" RDEPEND=">=dev-libs/glib-2.31.2:2 diff --git a/dev-libs/dee/dee-1.0.14-r2.ebuild b/dev-libs/dee/dee-1.0.14-r2.ebuild index e00aad8c27f0..be88d7290638 100644 --- a/dev-libs/dee/dee-1.0.14-r2.ebuild +++ b/dev-libs/dee/dee-1.0.14-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/dev-libs/dee/dee-1.0.14-r2.ebuild,v 1.2 2013/04/03 17:06:29 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/dee/dee-1.0.14-r2.ebuild,v 1.3 2013/04/10 06:04:33 jlec Exp $ EAPI=5 @@ -34,7 +34,7 @@ DEPEND="${RDEPEND} src_prepare() { sed \ -e '/GCC_FLAGS/s:-g::' \ - -e 's:vapigen:vapigen-0.14:g' \ + -e 's:vapigen:${VAPIGEN}:g' \ -i configure.ac || die sed \ diff --git a/dev-libs/ecore/Manifest b/dev-libs/ecore/Manifest index 0a70fa2f7724..f0b12d7102ae 100644 --- a/dev-libs/ecore/Manifest +++ b/dev-libs/ecore/Manifest @@ -1,2 +1,2 @@ -DIST ecore-1.7.4.tar.bz2 3421866 SHA256 4fa52dece3cfeeb61c89038391c5c25ff31911a6dd187229f8ddb0a1bd61a03d SHA512 a84943e5b74308b4a10393d48e0daa5cb043643fea2e47af6e9a6301911fb1019e7455ddbaf0dc9f8c111ac2ecab0a30fc30a946c05b53c246209571d412635b WHIRLPOOL c9d21a2cd98a159de15a734bff007e82731d1e1767fa570b3efb7ba9e5ff7a44273a69cbebc3813ae7a53b90dde90e5325844d0192855f1d1582ec9f1be766d2 DIST ecore-1.7.5.tar.bz2 3458107 SHA256 4bbaba2153db0c356d13c45adfbcc90c7118abd112d0817581417e708d6a9222 SHA512 84e8af7709d33669b2be66afdc4b76a720e1f3972bd25f959092ac703e351909a41b42ad7b7393a328fd0a692e63eafd871c19fdb991335629b233e14c735363 WHIRLPOOL 99f4b85f4a24257bb8401fec3b5c26f82ffa56f4c5c7c662386e8a6f61311f2beece45a39a3341665d028378796f72e964da1d8a58e8bb71df4ae810e941773b +DIST ecore-1.7.6.tar.bz2 3460987 SHA256 f60800de7b2f264f1b0122a07f6c6f098fd1c3a61987bb890a3ca7d6e24d32a9 SHA512 1b795dea26b7ca810fca557bfae093deaa214453311da9622d08aa28956097f2b3424722f70f0656ae02553f8da42e951b71e442b637dc0910eb6672ad769830 WHIRLPOOL 4b4cf0576d7fba04874edf1f618a9998fd71abd4a081ab06d060b449c1bc1993b34da0f38f9e0addca34e23fac2cfee5ab8bea559d978edd0b8c12f3e5483734 diff --git a/dev-libs/ecore/ecore-1.7.4.ebuild b/dev-libs/ecore/ecore-1.7.4.ebuild deleted file mode 100644 index e8b05b27b05b..000000000000 --- a/dev-libs/ecore/ecore-1.7.4.ebuild +++ /dev/null @@ -1,201 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ecore/ecore-1.7.4.ebuild,v 1.2 2012/12/29 11:33:59 tommy Exp $ - -EAPI=2 - -#virtualx is required for tests, which are currently broken -#inherit virtualx -inherit enlightenment eutils - -DESCRIPTION="Enlightenment's core event abstraction layer and OS abstraction layer" -SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" - -LICENSE="BSD-2" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="ares curl directfb +evas examples fbcon glib gnutls +inotify ipv6 opengl sdl ssl static-libs +threads tslib +X xcb xinerama xprint xscreensaver" - -RDEPEND=">=dev-libs/eina-1.7.0 - ares? ( net-dns/c-ares ) - glib? ( dev-libs/glib ) - curl? ( net-misc/curl ) - gnutls? ( net-libs/gnutls ) - !gnutls? ( ssl? ( dev-libs/openssl ) ) - evas? ( - >=media-libs/evas-1.7.0[directfb?,fbcon?,opengl?,X?,xcb?] - opengl? ( virtual/opengl ) - ) - directfb? ( >=dev-libs/DirectFB-0.9.16 ) - tslib? ( x11-libs/tslib ) - sdl? ( media-libs/libsdl ) - X? ( - x11-libs/libX11 - x11-libs/libXcomposite - x11-libs/libXcursor - x11-libs/libXdamage - x11-libs/libXext - x11-libs/libXfixes - x11-libs/libXi - x11-libs/libXrender - x11-libs/libXtst - xinerama? ( x11-libs/libXinerama x11-libs/libXrandr ) - xprint? ( x11-libs/libXp ) - xscreensaver? ( x11-libs/libXScrnSaver ) - ) - !X? ( xcb? ( x11-libs/xcb-util ) )" -DEPEND="${RDEPEND}" - -#tests depend on temp data from eina WORKDIR -RESTRICT=test - -src_configure() { - local SSL_FLAGS="" EVAS_FLAGS="" X_FLAGS="" - - if use gnutls; then - if use ssl; then - einfo "You have enabled both 'ssl' and 'gnutls', so we will use" - einfo "gnutls and not openssl for ecore-con support" - fi - SSL_FLAGS=" - --disable-openssl - --enable-gnutls - " - elif use ssl; then - SSL_FLAGS=" - --enable-openssl - --disable-gnutls - " - else - SSL_FLAGS=" - --disable-openssl - --disable-gnutls - " - fi - - local x_or_xcb="" - if use X; then - x_or_xcb="X" - elif use xcb; then - x_or_xcb="xcb" - fi - - if use evas; then - - if use opengl && [[ -z "$x_or_xcb" ]]; then - ewarn "Ecore/Evas usage of OpenGL requires X11." - ewarn "Compile dev-libs/ecore with USE=X or xcb." - ewarn "Compiling without opengl support." - EVAS_FLAGS+=" - --disable-ecore-evas-software-x11 - --disable-ecore-evas-software-16-x11 - " - else - EVAS_FLAGS+=" - --enable-ecore-evas-software-x11 - --enable-ecore-evas-software-16-x11 - " - fi - EVAS_FLAGS+=" - $(use_enable directfb ecore-evas-directfb) - $(use_enable fbcon ecore-evas-fb) - $(use_enable opengl ecore-evas-opengl-x11) - " - else - EVAS_FLAGS+=" - --disable-ecore-evas-directfb - --disable-ecore-evas-fb - --disable-ecore-evas-software-x11 - --disable-ecore-evas-software-16-x11 - --disable-ecore-evas-opengl-x11 - " - if use opengl; then - ewarn "Ecore usage of OpenGL is dependent on media-libs/evas." - ewarn "Compile dev-libs/ecore with USE=evas." - fi - fi - - if use X; then - if use xcb; then - ewarn "You have enabled both 'X' and 'xcb', so we will use" - ewarn "X as it's considered the most stable for ecore-x" - fi - X_FLAGS=" - --enable-ecore-x - --disable-ecore-x-xcb - " - - elif use xcb; then - X_FLAGS=" - --enable-ecore-x - --enable-ecore-x-xcb - " - else - X_FLAGS=" - --disable-ecore-x - --disable-ecore-x-xcb - " - fi - - if [[ ! -z "$x_or_xcb" ]]; then - X_FLAGS+=" - $(use_enable xinerama ecore-x-xinerama) - $(use_enable xprint ecore-x-xprint) - $(use_enable xscreensaver ecore-x-screensaver) - " - else - X_FLAGS+=" - --disable-ecore-x-xinerama - --disable-ecore-x-xprint - --disable-ecore-x-screensaver - " - fi - - if use tslib && ! use fbcon; then - ewarn "Ecore just uses tslib for framebuffer input." - ewarn "Compile dev-libs/ecore with USE=fbcon." - fi - - MY_ECONF=" - --enable-ecore-con - --enable-ecore-ipc - --enable-ecore-file - --enable-ecore-imf - --enable-ecore-input - --disable-ecore-win32 - --disable-ecore-wince - --disable-ecore-evas-software-gdi - --disable-ecore-evas-software-ddraw - --disable-ecore-evas-direct3d - --disable-ecore-evas-opengl-glew - --disable-ecore-evas-software-16-ddraw - --disable-ecore-evas-software-16-wince - --disable-ecore_imf_scim - $(use_enable ares cares) - $(use_enable curl) - $(use_enable directfb ecore-directfb) - $(use_enable doc) - $(use_enable examples build-examples) - $(use_enable examples install-examples) - $(use_enable evas ecore-evas) - $(use_enable evas ecore-input-evas) - $(use_enable evas ecore-imf-evas) - $(use_enable evas ecore-evas-software-buffer) - $(use_enable fbcon ecore-fb) - $(use_enable glib) - $(use_enable inotify) - $(use_enable ipv6) - $(use_enable sdl ecore-sdl) - $(use_enable test tests) - $(use_enable threads posix-threads) - $(use_enable tslib) - $(use_enable X xim) - ${SSL_FLAGS} - ${EVAS_FLAGS} - ${X_FLAGS} - " - enlightenment_src_configure -} - -src_test() { - Xemake check -} diff --git a/dev-libs/ecore/ecore-1.7.5.ebuild b/dev-libs/ecore/ecore-1.7.6.ebuild similarity index 81% rename from dev-libs/ecore/ecore-1.7.5.ebuild rename to dev-libs/ecore/ecore-1.7.6.ebuild index 660afaf42537..4a7331d3a77c 100644 --- a/dev-libs/ecore/ecore-1.7.5.ebuild +++ b/dev-libs/ecore/ecore-1.7.6.ebuild @@ -1,33 +1,37 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ecore/ecore-1.7.5.ebuild,v 1.1 2013/01/04 18:09:30 tommy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ecore/ecore-1.7.6.ebuild,v 1.1 2013/04/08 22:14:54 tommy Exp $ EAPI=2 #virtualx is required for tests, which are currently broken #inherit virtualx -inherit autotools enlightenment eutils +inherit enlightenment eutils DESCRIPTION="Enlightenment's core event abstraction layer and OS abstraction layer" SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" LICENSE="BSD-2" KEYWORDS="~amd64 ~arm ~x86" -IUSE="ares curl directfb +evas examples fbcon glib gnutls +inotify ipv6 opengl sdl ssl static-libs +threads tslib +X xcb xinerama xprint xscreensaver" +IUSE="ares curl directfb +evas examples fbcon gles glib gnutls +inotify ipv6 opengl sdl ssl static-libs +threads tslib wayland +X xcb xinerama xprint xscreensaver" -RDEPEND=">=dev-libs/eina-1.7.0 +RDEPEND=">=dev-libs/eina-1.7.6 ares? ( net-dns/c-ares ) glib? ( dev-libs/glib ) curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls ) !gnutls? ( ssl? ( dev-libs/openssl ) ) evas? ( - >=media-libs/evas-1.7.5[directfb?,fbcon?,opengl?,X?,xcb?] + >=media-libs/evas-1.7.6[directfb?,fbcon?,opengl?,X?,xcb?] opengl? ( virtual/opengl ) + wayland? ( + >=media-libs/evas-1.7.6[directfb?,fbcon?,gles?,opengl?,wayland?,X?,xcb?] + ) ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tslib? ( x11-libs/tslib ) sdl? ( media-libs/libsdl ) + wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXcomposite @@ -48,11 +52,10 @@ DEPEND="${RDEPEND}" #tests depend on temp data from eina WORKDIR RESTRICT=test -src_prepare() { - - sed -i "s:1.7.5:1.7.4:g" configure.ac - eautoreconf -} +#src_prepare() { +# sed -i "s:1.7.5:1.7.4:g" configure.ac +# eautoreconf +#} src_configure() { local SSL_FLAGS="" EVAS_FLAGS="" X_FLAGS="" @@ -106,6 +109,25 @@ src_configure() { $(use_enable fbcon ecore-evas-fb) $(use_enable opengl ecore-evas-opengl-x11) " + if use wayland ; then + EVAS_FLAGS+=" + --enable-ecore-evas-wayland-shm + " + if use gles ; then + EVAS_FLAGS+=" + --enable-ecore-evas-wayland-egl + " + else + EVAS_FLAGS+=" + --enable-ecore-evas-wayland-egl + " + fi + else + EVAS_FLAGS+=" + --disable-ecore-evas-wayland-egl + --disable-ecore-evas-wayland-shm + " + fi else EVAS_FLAGS+=" --disable-ecore-evas-directfb @@ -113,6 +135,8 @@ src_configure() { --disable-ecore-evas-software-x11 --disable-ecore-evas-software-16-x11 --disable-ecore-evas-opengl-x11 + --disable-ecore-evas-wayland-egl + --disable-ecore-evas-wayland-shm " if use opengl; then ewarn "Ecore usage of OpenGL is dependent on media-libs/evas." @@ -194,6 +218,7 @@ src_configure() { $(use_enable test tests) $(use_enable threads posix-threads) $(use_enable tslib) + $(use_enable wayland ecore-wayland) $(use_enable X xim) ${SSL_FLAGS} ${EVAS_FLAGS} diff --git a/dev-libs/gdome2/gdome2-0.8.1-r4.ebuild b/dev-libs/gdome2/gdome2-0.8.1-r4.ebuild index 729201eec849..8a28cda1c84d 100644 --- a/dev-libs/gdome2/gdome2-0.8.1-r4.ebuild +++ b/dev-libs/gdome2/gdome2-0.8.1-r4.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gdome2/gdome2-0.8.1-r4.ebuild,v 1.9 2013/03/03 16:14:37 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gdome2/gdome2-0.8.1-r4.ebuild,v 1.10 2013/04/10 08:52:45 pinkbyte Exp $ EAPI="4" GCONF_DEBUG="no" GNOME2_LA_PUNT="yes" -inherit autotools eutils gnome2 +inherit autotools eutils gnome2 toolchain-funcs DESCRIPTION="The DOM C library for the GNOME project" HOMEPAGE="http://gdome2.cs.unibo.it/" @@ -43,6 +43,9 @@ src_prepare() { # prevent gtk-fixxref from running (will cause sandbox violation) sed -i -e 's:gtkdoc-fixxref:#gtkdoc-fixxref:' gtk-doc/Makefile* || die + # respect AR, bug #459844 + tc-export AR + eautoconf gnome2_src_prepare diff --git a/dev-libs/libcroco/libcroco-0.6.8.ebuild b/dev-libs/libcroco/libcroco-0.6.8.ebuild index 6d4616ed96b5..3c51039121b4 100644 --- a/dev-libs/libcroco/libcroco-0.6.8.ebuild +++ b/dev-libs/libcroco/libcroco-0.6.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/dev-libs/libcroco/libcroco-0.6.8.ebuild,v 1.12 2013/04/01 18:24:00 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libcroco/libcroco-0.6.8.ebuild,v 1.13 2013/04/09 16:41:45 ago Exp $ EAPI="4" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://git.gnome.org/browse/libcroco/" LICENSE="LGPL-2" SLOT="0.6" -KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="test" RDEPEND="dev-libs/glib:2 diff --git a/dev-libs/libgee/libgee-0.6.7.ebuild b/dev-libs/libgee/libgee-0.6.7.ebuild index 81b76a74d722..0e5570dd612e 100644 --- a/dev-libs/libgee/libgee-0.6.7.ebuild +++ b/dev-libs/libgee/libgee-0.6.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/dev-libs/libgee/libgee-0.6.7.ebuild,v 1.9 2013/04/01 18:24:02 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgee/libgee-0.6.7.ebuild,v 1.10 2013/04/09 16:41:51 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -12,7 +12,7 @@ HOMEPAGE="https://live.gnome.org/Libgee" LICENSE="LGPL-2.1+" SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-linux" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-linux" IUSE="+introspection" RDEPEND=">=dev-libs/glib-2.12:2 diff --git a/dev-libs/libgee/libgee-0.8.4.ebuild b/dev-libs/libgee/libgee-0.8.4.ebuild index 7143d5bfd4aa..0bfcdf3c2b1f 100644 --- a/dev-libs/libgee/libgee-0.8.4.ebuild +++ b/dev-libs/libgee/libgee-0.8.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-libs/libgee/libgee-0.8.4.ebuild,v 1.9 2013/04/01 18:24:02 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libgee/libgee-0.8.4.ebuild,v 1.10 2013/04/09 16:41:51 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="https://live.gnome.org/Libgee" LICENSE="LGPL-2.1+" SLOT="0.8" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-linux" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-linux" IUSE="+introspection" # FIXME: add doc support, requires valadoc diff --git a/dev-libs/libpipeline/libpipeline-1.2.2.ebuild b/dev-libs/libpipeline/libpipeline-1.2.2.ebuild index 35fc1f307638..7897dfb50334 100644 --- a/dev-libs/libpipeline/libpipeline-1.2.2.ebuild +++ b/dev-libs/libpipeline/libpipeline-1.2.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/libpipeline/libpipeline-1.2.2.ebuild,v 1.13 2013/02/24 18:10:28 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpipeline/libpipeline-1.2.2.ebuild,v 1.14 2013/04/09 12:10:51 pinkbyte Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" IUSE="static-libs test" DEPEND="virtual/pkgconfig diff --git a/dev-libs/librep/librep-0.92.2.1.ebuild b/dev-libs/librep/librep-0.92.2.1.ebuild index 6c0688fc0071..8a7eae0a7443 100644 --- a/dev-libs/librep/librep-0.92.2.1.ebuild +++ b/dev-libs/librep/librep-0.92.2.1.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/dev-libs/librep/librep-0.92.2.1.ebuild,v 1.7 2012/10/28 15:42:35 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/librep/librep-0.92.2.1.ebuild,v 1.8 2013/04/09 13:26:53 naota Exp $ EAPI="4" @@ -12,7 +12,7 @@ SRC_URI="http://download.tuxfamily.org/librep/${P}.tar.xz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86" +KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd" IUSE="emacs readline" RDEPEND=">=sys-libs/gdbm-1.8.0 diff --git a/dev-libs/libsigc++/libsigc++-2.3.1.ebuild b/dev-libs/libsigc++/libsigc++-2.3.1.ebuild index cae8675892d9..77e035bf2f81 100644 --- a/dev-libs/libsigc++/libsigc++-2.3.1.ebuild +++ b/dev-libs/libsigc++/libsigc++-2.3.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-libs/libsigc++/libsigc++-2.3.1.ebuild,v 1.12 2013/04/01 18:24:04 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libsigc++/libsigc++-2.3.1.ebuild,v 1.13 2013/04/09 16:41:59 ago Exp $ EAPI="4" @@ -11,7 +11,7 @@ HOMEPAGE="http://libsigc.sourceforge.net/" LICENSE="LGPL-2.1" SLOT="2" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc static-libs test" RDEPEND="" diff --git a/dev-libs/libtasn1/Manifest b/dev-libs/libtasn1/Manifest index d08b88a2744b..5dd59df628ef 100644 --- a/dev-libs/libtasn1/Manifest +++ b/dev-libs/libtasn1/Manifest @@ -3,3 +3,4 @@ DIST libtasn1-2.13.tar.gz 1964659 SHA256 a56e46483d1d42fe44ba58c9758620844042468 DIST libtasn1-2.14.tar.gz 1977010 SHA256 bc2936cd20267859278145e563427c274d27aaae30ecdf50a04cdd4ec0153d54 SHA512 572b21f8b2e1dec2b2a8819c69dcc6a3985079cfbc64ccfd0b248b8c1c0eac367f4d8c6d97d8ef127f2054cb74fd6652fb1818b6b94dc9a09597202fefa85873 WHIRLPOOL 59e9b3df23e3e54fd56230a4c8541935fda4cc00098b459d7de2204277c0f286642f4b696efe1eba56413163c9243e0274972aa7f32ada50fbc544f7fc7a133c DIST libtasn1-3.0.tar.gz 1782052 SHA256 f1cb499b9b2fff119c150a485f1e1c8fdfe549bd7cb3886db661750a85769f01 SHA512 3d1d9d17f1afefd9835f0e3878d898cd31dcb809dfef27d0b2a14a16ada004dc613f43445a206d6fb70e7c0fdc2702246fbad4ec7a71a1740ed8e726647d97a2 WHIRLPOOL 67db7cb2afc09dbb11750cb95cc5d74dcabbbe3c72291652dd78d6a428b5d7b7f552d7e5aeed6c4225f9e2969e11d31b1c885ca8bedc9a0b840f13a4f50b8d06 DIST libtasn1-3.2.tar.gz 1810350 SHA256 672ee08108a0f98b006377ab9e5e926ed6d7e4811f18538f838c457e7db36f3f SHA512 708259b55943a86bb270764961ad047d36352adc4c6591cda30e774bab37f8b79c1f74cf1c68d152c4f5afeb64ecbe5badea5586fd29451fe0fbe1a037618b74 WHIRLPOOL 354b61ed3a6f281f2601dcfaa27f0597e95125e32f66350564897ae127a913586eb042900fabe71ef670cedb710674d13e26472271126c0e048ac20a91d1cd84 +DIST libtasn1-3.3.tar.gz 2039225 SHA256 92652a2cd10f63c56984b5e5cee46ecadf2292e2262fff99278f7ee46ff93ac0 SHA512 f2d73fcaf2c2a546e775fff3d9f60db89da9dd192185559077317069ec9f162fcc954a6fb89a7cf996dc1c475b499914da6ffff5b66415befc667c3915f6f578 WHIRLPOOL 43cb153c477e7d6afe8c250160f6e27393bd8a36494b7fa73f29e40b1c72d86d69d00de09de13c19aec7aa0a8f64eb41190b838f9d7f320700565e2160823d29 diff --git a/dev-libs/libtasn1/libtasn1-3.3.ebuild b/dev-libs/libtasn1/libtasn1-3.3.ebuild new file mode 100644 index 000000000000..66459ff9a398 --- /dev/null +++ b/dev-libs/libtasn1/libtasn1-3.3.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-libs/libtasn1/libtasn1-3.3.ebuild,v 1.1 2013/04/09 08:13:20 alonbl Exp $ + +EAPI=5 + +inherit autotools-utils + +DESCRIPTION="ASN.1 library" +HOMEPAGE="http://www.gnu.org/software/libtasn1/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-macos ~arm-linux ~x86-linux" +IUSE="doc static-libs" + +DEPEND=">=dev-lang/perl-5.6 + virtual/yacc" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS ) + +src_configure(){ + local myeconfargs + [[ "${VALGRIND_TESTS}" == "0" ]] && myeconfargs+=( --disable-valgrind-tests ) + autotools-utils_src_configure +} + +src_install() { + autotools-utils_src_install + + if use doc ; then + dodoc doc/libtasn1.pdf + dohtml doc/reference/html/* + fi +} diff --git a/dev-libs/libxslt/libxslt-1.1.28-r1.ebuild b/dev-libs/libxslt/libxslt-1.1.28-r1.ebuild index d05863dbd5e5..7e6a4032c356 100644 --- a/dev-libs/libxslt/libxslt-1.1.28-r1.ebuild +++ b/dev-libs/libxslt/libxslt-1.1.28-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/libxslt/libxslt-1.1.28-r1.ebuild,v 1.12 2013/04/01 18:24:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxslt/libxslt-1.1.28-r1.ebuild,v 1.13 2013/04/09 16:42:07 ago Exp $ EAPI=5 @@ -15,7 +15,7 @@ SRC_URI="ftp://xmlsoft.org/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux" IUSE="crypt debug python static-libs" RDEPEND=">=dev-libs/libxml2-2.8.0:2 diff --git a/dev-libs/oniguruma/Manifest b/dev-libs/oniguruma/Manifest index f89246216171..bd9593485eef 100644 --- a/dev-libs/oniguruma/Manifest +++ b/dev-libs/oniguruma/Manifest @@ -1,2 +1,3 @@ DIST onig-5.9.2.tar.gz 539739 SHA256 10e7b04ca0baaef2c26f32b37bb70d898b3642d38aefd5ad5062a20f86b751f6 SHA512 fedc9ed663e9970c1f44647431085093f792af1273d5fd25713545e6770652f959a78fb059e44ec348f201f40b2aaa9ef8d081721842f4fa7c486def2a73a8e7 WHIRLPOOL 4fcdd5fcde4ab670b2e7e672b2187a488d698fd6172f9b0c1b237d680dc5cfecac4e9262d7b78e32eb782596cdf92a13f554b45ee5566eabf39349c1c7d8884b DIST onig-5.9.3.tar.gz 566875 SHA256 c3bba66b2a84760e6582c40881db97c839d94f327870009724bb8b4d0c051f2a SHA512 d673fbd12af78bbe36984eff2aab5e0c043a663f2fca248f7accc0e9d2c86144b5e9635c542ea6311574d680d628893128615dedc32adcbe62ac427f1ead2870 WHIRLPOOL 5b6bd7c5ff0e2b586af776d94351abe8c5203d40a37138386df19eb3877e3940708c0b272f0c3d88361ce26579bd1e253333ee7c30f0af92f69a185503f2f06a +DIST onig-5.9.4.tar.gz 567985 SHA256 988221911ff865941a859096c39a532df77418cb6df513857428a41605130697 SHA512 d1a8492925c5f873a8bd8cd5b1a3da2c78392ca7160eeadb9c53cf08e0e6dcedf75f95c748595888d727395cd9226a784cdf38ef5d64665a3c4b27e45da84cb6 WHIRLPOOL 9dd36b4bc4408360baeac39ad9c7ee3f4e231dd9ca57ffc5d07598a7ad5d2f9b03ca37d63399aa78ef55c0264453f83cb82155c2d2e09d3c8804f4e6954f763f diff --git a/dev-libs/oniguruma/oniguruma-5.9.4.ebuild b/dev-libs/oniguruma/oniguruma-5.9.4.ebuild new file mode 100644 index 000000000000..b5951d64919a --- /dev/null +++ b/dev-libs/oniguruma/oniguruma-5.9.4.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-libs/oniguruma/oniguruma-5.9.4.ebuild,v 1.1 2013/04/08 23:53:22 naota Exp $ + +EAPI=4 + +inherit eutils autotools-utils + +MY_P=onig-${PV} + +DESCRIPTION="a regular expression library for different character encodings" +HOMEPAGE="http://www.geocities.jp/kosako3/oniguruma" +SRC_URI="http://www.geocities.jp/kosako3/oniguruma/archive/${MY_P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" +IUSE="combination-explosion-check crnl-as-line-terminator static-libs" + +PATCHES=( "${FILESDIR}"/${PN}-5.9.3-makefile.patch ) +DOCS=( AUTHORS HISTORY README{,.ja} doc/{API,FAQ,RE}{,.ja} ) +# Needed for a sane .so versionning on fbsd, please dont drop +AUTOTOOLS_AUTORECONF=1 + +S=${WORKDIR}/${MY_P} + +src_configure() { + local myeconfargs=( + $(use_enable combination-explosion-check) + $(use_enable crnl-as-line-terminator) + ) + autotools-utils_src_configure +} + +src_install() { + autotools-utils_src_install + use static-libs || prune_libtool_files +} diff --git a/dev-libs/rasqal/rasqal-0.9.29.ebuild b/dev-libs/rasqal/rasqal-0.9.29.ebuild index 457f59ec330e..6522ad8c2907 100644 --- a/dev-libs/rasqal/rasqal-0.9.29.ebuild +++ b/dev-libs/rasqal/rasqal-0.9.29.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/rasqal/rasqal-0.9.29.ebuild,v 1.7 2013/04/05 20:28:50 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/rasqal/rasqal-0.9.29.ebuild,v 1.8 2013/04/09 13:46:03 jer Exp $ EAPI=4 inherit libtool @@ -11,7 +11,7 @@ SRC_URI="http://download.librdf.org/source/${P}.tar.gz" LICENSE="Apache-2.0 GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos" IUSE="+crypt doc gmp kernel_linux +mhash pcre static-libs test xml" RDEPEND=">=media-libs/raptor-2.0.7:2 diff --git a/dev-libs/redland/redland-1.0.16.ebuild b/dev-libs/redland/redland-1.0.16.ebuild index 40b5679901ea..6f820fc0355b 100644 --- a/dev-libs/redland/redland-1.0.16.ebuild +++ b/dev-libs/redland/redland-1.0.16.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/redland/redland-1.0.16.ebuild,v 1.5 2013/04/05 20:31:51 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/redland/redland-1.0.16.ebuild,v 1.6 2013/04/09 13:45:33 jer Exp $ EAPI=4 inherit libtool @@ -11,7 +11,7 @@ SRC_URI="http://download.librdf.org/source/${P}.tar.gz" LICENSE="Apache-2.0 GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos" IUSE="berkdb iodbc mysql odbc postgres sqlite ssl static-libs +xml" # NOTE: libtool is required for libltdl at runtime diff --git a/dev-libs/vala-common/vala-common-0.18.1.ebuild b/dev-libs/vala-common/vala-common-0.18.1.ebuild index 21fb7c9dfb78..8326af07373a 100644 --- a/dev-libs/vala-common/vala-common-0.18.1.ebuild +++ b/dev-libs/vala-common/vala-common-0.18.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-libs/vala-common/vala-common-0.18.1.ebuild,v 1.12 2013/04/01 18:24:14 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/vala-common/vala-common-0.18.1.ebuild,v 1.13 2013/04/09 16:42:13 ago Exp $ EAPI="4" GNOME_ORG_MODULE="vala" @@ -12,7 +12,7 @@ HOMEPAGE="http://live.gnome.org/Vala" LICENSE="LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux ~x64-macos" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux ~x64-macos" IUSE="" # Previously ${PN} was part of dev-lang/vala diff --git a/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild b/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild index 2c6b61b48314..1cad2ffe6b5d 100644 --- a/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild +++ b/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-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/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild,v 1.3 2013/03/25 10:00:50 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/ffmpeg-php/ffmpeg-php-0.6.0-r2.ebuild,v 1.5 2013/04/09 18:27:07 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ USE_PHP="php5-3 php5-4" inherit php-ext-source-r2 eutils -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" DESCRIPTION="PHP extension that provides access to movie info." HOMEPAGE="http://sourceforge.net/projects/ffmpeg-php/" diff --git a/dev-php/pecl-apc/pecl-apc-3.1.13.ebuild b/dev-php/pecl-apc/pecl-apc-3.1.13.ebuild index a09bc0ebede4..d475da4cb515 100644 --- a/dev-php/pecl-apc/pecl-apc-3.1.13.ebuild +++ b/dev-php/pecl-apc/pecl-apc-3.1.13.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/dev-php/pecl-apc/pecl-apc-3.1.13.ebuild,v 1.1 2012/09/04 12:29:31 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-apc/pecl-apc-3.1.13.ebuild,v 1.2 2013/04/09 08:49:14 olemarkus Exp $ EAPI=4 @@ -12,7 +12,7 @@ DOCS="CHANGELOG INSTALL NOTICE TECHNOTES.txt TODO" PHP_EXT_INIFILE="${PN}.ini" -USE_PHP="php5-3 php5-4" +USE_PHP="php5-5 php5-3 php5-4" inherit php-ext-pecl-r2 confutils eutils @@ -23,7 +23,12 @@ LICENSE="PHP-3.01" SLOT="0" IUSE="mmap" -DEPEND="!dev-php/eaccelerator !dev-php/xcache" +DEPEND=" + !dev-php/eaccelerator + !dev-php/xcache + !dev-php/pecl-apcu + !dev-php/pecl-zendopcache + dev-lang/php[-opcache(-)]" RDEPEND="${DEPEND}" LOCKS="pthreadmutex pthreadrw spinlock semaphore" diff --git a/dev-php/pecl-apc/pecl-apc-3.1.9-r2.ebuild b/dev-php/pecl-apc/pecl-apc-3.1.9-r2.ebuild index 12175bd54911..5d79ea758fd1 100644 --- a/dev-php/pecl-apc/pecl-apc-3.1.9-r2.ebuild +++ b/dev-php/pecl-apc/pecl-apc-3.1.9-r2.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/dev-php/pecl-apc/pecl-apc-3.1.9-r2.ebuild,v 1.7 2012/09/04 12:29:31 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/pecl-apc/pecl-apc-3.1.9-r2.ebuild,v 1.8 2013/04/09 08:49:14 olemarkus Exp $ EAPI=4 @@ -21,7 +21,12 @@ LICENSE="PHP-3.01" SLOT="0" IUSE="mmap" -DEPEND="!dev-php/eaccelerator !dev-php/xcache" +DEPEND=" + !dev-php/eaccelerator + !dev-php/xcache + !dev-php/pecl-apcu + !dev-php/pecl-zendopcache + dev-lang/php[-opcache(-)]" RDEPEND="${DEPEND}" LOCKS="pthreadmutex pthreadrw spinlock semaphore" diff --git a/dev-python/addons/Manifest b/dev-python/addons/Manifest new file mode 100644 index 000000000000..63b1452bc2d3 --- /dev/null +++ b/dev-python/addons/Manifest @@ -0,0 +1 @@ +DIST addons-0.7.zip 34220 SHA256 4d5f248c31db312081a3d562d1de433971e6cd2e94aeb00c4ebc08e22ea8f15c SHA512 4847508aebfac56586878e987eafc852bf41abb5734efbd4c0f12480a871e9820449f0c56a2da82060234a36b3b5b359d908283e6d830df56b759dd39661adb4 WHIRLPOOL 3a4cd4d4bafed479e8abb52ba904af8935a6592d9e479f03af11869f2046d50257e0f29a0e47d2fcc95720764b75fc17f793605ee047c97f4c618a5d0c602fa7 diff --git a/dev-python/addons/addons-0.7.ebuild b/dev-python/addons/addons-0.7.ebuild new file mode 100644 index 000000000000..1a32a1792b25 --- /dev/null +++ b/dev-python/addons/addons-0.7.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/addons/addons-0.7.ebuild,v 1.1 2013/04/10 05:00:25 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_PN="AddOns" + +DESCRIPTION="Dynamically extend other objects (formerly ObjectRoles)" +HOMEPAGE="http://pypi.python.org/pypi/AddOns/" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.zip -> ${P}.zip" + +KEYWORDS="~amd64 ~x86" +IUSE="" +LICENSE="ZPL" +SLOT="0" + +RDEPEND="" +DEPEND="app-arch/unzip + dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}"/${MY_PN}-${PV} + +python_test() { + "${PYTHON}" peak/util/addons.py && einfo "Tests passed under ${EPYTHON}" \ + || die "Tests failed under ${EPYTHON}" +} diff --git a/dev-python/addons/metadata.xml b/dev-python/addons/metadata.xml new file mode 100644 index 000000000000..0645cd9ff8f3 --- /dev/null +++ b/dev-python/addons/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/bpython/bpython-0.12.ebuild b/dev-python/bpython/bpython-0.12.ebuild index 3fbac48f303b..84b7437332a8 100644 --- a/dev-python/bpython/bpython-0.12.ebuild +++ b/dev-python/bpython/bpython-0.12.ebuild @@ -1,11 +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/bpython/bpython-0.12.ebuild,v 1.1 2012/12/14 06:58:42 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/bpython/bpython-0.12.ebuild,v 1.2 2013/04/10 17:18:00 floppym Exp $ EAPI="3" -PYTHON_DEPEND="*:2.5" +PYTHON_DEPEND="*:2.6" SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.4 *-jython" +RESTRICT_PYTHON_ABIS="2.[45] *-jython" PYTHON_USE_WITH="ncurses" inherit distutils eutils diff --git a/dev-python/bytecodeassembler/Manifest b/dev-python/bytecodeassembler/Manifest new file mode 100644 index 000000000000..66bdc9d8c89f --- /dev/null +++ b/dev-python/bytecodeassembler/Manifest @@ -0,0 +1 @@ +DIST bytecodeassembler-0.6.zip 52734 SHA256 05d56f7ed3eb7c85912380c31bfe3622063176418d63d5bbd74ce99e5456ae0f SHA512 95f90a1b6e1a307d8754eea301ae187783460fa8df3163f26253b8ebec16b31a8899a1d27c13158c5cb97763c7057f83b1dc1f642b5e2e9e5b844837a5208363 WHIRLPOOL 8d41029dc6a8aecfbe2faec72a3e0e70a279a96d5994a658e9d1a8514f8edf8987cad2a32b80d414d5b09c090e74b2ab1e36ce4e03f0f66cb664466b83a71b0e diff --git a/dev-python/bytecodeassembler/bytecodeassembler-0.6.ebuild b/dev-python/bytecodeassembler/bytecodeassembler-0.6.ebuild new file mode 100644 index 000000000000..5374256703fb --- /dev/null +++ b/dev-python/bytecodeassembler/bytecodeassembler-0.6.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/bytecodeassembler/bytecodeassembler-0.6.ebuild,v 1.1 2013/04/10 04:11:59 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_PN="BytecodeAssembler" + +DESCRIPTION="Generate Python code objects by "assembling" bytecode" +HOMEPAGE="http://pypi.python.org/pypi//BytecodeAssembler" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.zip -> ${P}.zip" + +KEYWORDS="~amd64 ~x86" +IUSE="" +LICENSE="Apache-2.0" +SLOT="0" + +RDEPEND="" +DEPEND="app-arch/unzip + >=dev-python/symboltype-1.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}"/${MY_PN}-${PV} + +python_test() { + "${PYTHON}" test_assembler.py && einfo "Tests passed under ${EPYTHON}" \ + || die "Tests failed under ${EPYTHON}" +} diff --git a/dev-python/bytecodeassembler/metadata.xml b/dev-python/bytecodeassembler/metadata.xml new file mode 100644 index 000000000000..0645cd9ff8f3 --- /dev/null +++ b/dev-python/bytecodeassembler/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/decoratortools/decoratortools-1.8-r1.ebuild b/dev-python/decoratortools/decoratortools-1.8-r1.ebuild new file mode 100644 index 000000000000..355e36ba7cc8 --- /dev/null +++ b/dev-python/decoratortools/decoratortools-1.8-r1.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/decoratortools/decoratortools-1.8-r1.ebuild,v 1.1 2013/04/09 15:25:34 idella4 Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_PN="DecoratorTools" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="Class, function, and metaclass decorators" +HOMEPAGE="http://pypi.python.org/pypi/DecoratorTools" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip" + +LICENSE="|| ( PSF-2 ZPL )" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="" + +DEPEND="app-arch/unzip + dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" + +S="${WORKDIR}/${MY_P}" + +python_prepare_all() { + # Disable tests broken with named tuples. + sed -e "s/additional_tests/_&/" -i test_decorators.py || die "sed failed" +} + +python_test() { + esetup.py test && einfo "Tests passed under ${EPYTHON}" || die "Tests failed under ${EPYTHON}" +} diff --git a/dev-python/extremes/Manifest b/dev-python/extremes/Manifest new file mode 100644 index 000000000000..6b26d634b3f2 --- /dev/null +++ b/dev-python/extremes/Manifest @@ -0,0 +1 @@ +DIST extremes-1.1.1.zip 10360 SHA256 e92564d2535929a18c51b75c8904e13ab5e78a6d75fee8c70d04e09812fc8545 SHA512 a0b951306e9d5ef84c6498268a3476e7ed889f0be950a529774e2d8c4f155d4c10cbacd20864ed37aea5512ba65a267e414eb2b4f7cc6d67b21a020d82da8ec2 WHIRLPOOL 67a3a7aa5b4f32497f262097d34ac750f34a89471290f7eb7b9a3a3491f36bc08e6db0341f852ca3f575767dc21a9b8d4f97a9f0d7ce68559eb2cb6564d51a55 diff --git a/dev-python/extremes/extremes-1.1.1.ebuild b/dev-python/extremes/extremes-1.1.1.ebuild new file mode 100644 index 000000000000..cabe792147bb --- /dev/null +++ b/dev-python/extremes/extremes-1.1.1.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-python/extremes/extremes-1.1.1.ebuild,v 1.1 2013/04/10 04:28:06 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_PN="Extremes" +DESCRIPTION="Production-quality 'Min' and 'Max' objects" +HOMEPAGE="http://pypi.python.org/pypi/Extremes" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.zip -> ${P}.zip" + +KEYWORDS="~amd64 ~x86" +IUSE="" +LICENSE="ZPL" +SLOT="0" + +RDEPEND="" +DEPEND="app-arch/unzip + dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}"/${MY_PN}-${PV} + +python_test() { + "${PYTHON}" peak/util/extremes.py && einfo "Tests passed under ${EPYTHON}" \ + || die "Tests failed under ${EPYTHON}" +} diff --git a/dev-python/extremes/metadata.xml b/dev-python/extremes/metadata.xml new file mode 100644 index 000000000000..0645cd9ff8f3 --- /dev/null +++ b/dev-python/extremes/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/importing/Manifest b/dev-python/importing/Manifest new file mode 100644 index 000000000000..312b15998586 --- /dev/null +++ b/dev-python/importing/Manifest @@ -0,0 +1 @@ +DIST importing-1.10.zip 17138 SHA256 e61348d8d37b20b69c887ded5378ca99f2588e177133a06607130e6a5515062f SHA512 628f4c119c8d0cf558580887fe30683223dcc439ca7ad5f7fa442d87452f3aa7b2f8ad200634c70a969dfdef7ef5938fd51fd36044d311296a8df73b5f2851cc WHIRLPOOL afcd84da66bc9292c8b8657dc72ba2693928b515607ea1ec3843c9411aaed3c7f50ad484f532ceff64eca38136d71b28b04ab991df63277f4e9edbd12bfc9156 diff --git a/dev-python/importing/importing-1.10.ebuild b/dev-python/importing/importing-1.10.ebuild new file mode 100644 index 000000000000..ea01ab614793 --- /dev/null +++ b/dev-python/importing/importing-1.10.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/importing/importing-1.10.ebuild,v 1.1 2013/04/10 05:43:29 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_PN="Importing" + +DESCRIPTION="Import objects dynamically, lazily, "weakly", and more" +HOMEPAGE=" http://peak.telecommunity.com/DevCenter/Importing" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.zip -> ${P}.zip" + +KEYWORDS="~amd64 ~x86" +IUSE="" +LICENSE="ZPL" +SLOT="0" + +RDEPEND="" +DEPEND="app-arch/unzip + dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}"/${MY_PN}-${PV} diff --git a/dev-python/importing/metadata.xml b/dev-python/importing/metadata.xml new file mode 100644 index 000000000000..0645cd9ff8f3 --- /dev/null +++ b/dev-python/importing/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/oslo-config/Manifest b/dev-python/oslo-config/Manifest new file mode 100644 index 000000000000..18faa4682c46 --- /dev/null +++ b/dev-python/oslo-config/Manifest @@ -0,0 +1 @@ +DIST oslo.config-1.1.0.tar.gz 74650 SHA256 fe5dedb9b47c508eb886a7b9b96eb7667597af407ff42853db82b4b9e949ea82 SHA512 22eb8eb1f1e84cb7227ca4d269af52b54859eeb442a3c74466c907759c9b6cc9ddd90ec2103295fd0403e99231531c296ee5e09fe24b613b93c5bdb22abe012a WHIRLPOOL 58893e926f99b814b0f8ff4279c9f37323f9985cc3741d693006b00e123279c16a01003e772f6f9b1d6e48d2c7a900d7aadf9c0d29f27b34c46ca9890e5db532 diff --git a/dev-python/oslo-config/metadata.xml b/dev-python/oslo-config/metadata.xml new file mode 100644 index 000000000000..42215d49cfe5 --- /dev/null +++ b/dev-python/oslo-config/metadata.xml @@ -0,0 +1,14 @@ + + + + python + + prometheanfire@gentoo.org + Matthew Thode + + + The Oslo configuration API supports parsing command line arguments. + Oslo also supports .ini style configuration files. + + + diff --git a/dev-python/oslo-config/oslo-config-1.1.0.ebuild b/dev-python/oslo-config/oslo-config-1.1.0.ebuild new file mode 100644 index 000000000000..0f649fd7c9a4 --- /dev/null +++ b/dev-python/oslo-config/oslo-config-1.1.0.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/oslo-config/oslo-config-1.1.0.ebuild,v 1.1 2013/04/10 16:04:44 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_6 python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="The Oslo configuration API supports parsing command line arguments +and ini style configuration files" +HOMEPAGE="https://pypi.python.org/pypi/oslo.config" +SRC_URI="mirror://pypi/${PN:0:1}/oslo.config/oslo.config-${PV}.tar.gz" +S="${WORKDIR}/oslo.config-${PV}" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +#need to package a bunch of stuff, they changed their test suite, again... +RESTRICT="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="virtual/python-argparse[${PYTHON_USEDEP}]" diff --git a/dev-python/peak-rules/Manifest b/dev-python/peak-rules/Manifest new file mode 100644 index 000000000000..6146f5de165c --- /dev/null +++ b/dev-python/peak-rules/Manifest @@ -0,0 +1 @@ +DIST peak-rules-0.5.tar.gz 113173 SHA256 f6883f455f231d8eb72d1fd276eaae2dd91f415ad6abd6e2ec05ba8a2b4a3d55 SHA512 7ab915641829f6366b681b4c576e7213097cbd2be76bd526fdbb4f128762c04c08ee20e3fe3ef36e1df0e544719f71c28079745c9c88f98911074da51ecfa169 WHIRLPOOL 19d7c78c6689b4af1d6386f8146cb915cfe05871d7d596ceeb4c5e35876d855644ea4783ecd7c2906e3f85191cfb9d20f47e282ccef5fabe14232d41380817fc diff --git a/dev-python/peak-rules/metadata.xml b/dev-python/peak-rules/metadata.xml new file mode 100644 index 000000000000..301d2207cc29 --- /dev/null +++ b/dev-python/peak-rules/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/peak-rules/peak-rules-0.5.ebuild b/dev-python/peak-rules/peak-rules-0.5.ebuild new file mode 100644 index 000000000000..c5e20620a6c1 --- /dev/null +++ b/dev-python/peak-rules/peak-rules-0.5.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/dev-python/peak-rules/peak-rules-0.5.ebuild,v 1.1 2013/04/10 08:27:51 idella4 Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_PN="PEAK-Rules" +MY_P="${MY_PN}-${PV}a1.dev-r2713" + +DESCRIPTION="Generic functions and business rules support systems" +HOMEPAGE="http://peak.telecommunity.com/ https://pypi.python.org/pypi/PEAK-Rules/" +SRC_URI="http://peak.telecommunity.com/snapshots/${MY_P}.tar.gz -> ${P}.tar.gz" + +LICENSE="ZPL" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DOCS=( Code-Generation.txt Criteria.txt Indexing.txt README.txt Syntax-Matching.txt ) + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/bytecodeassembler-0.6[${PYTHON_USEDEP}] + >=dev-python/addons-0.6[${PYTHON_USEDEP}] + >=dev-python/extremes-1.1[${PYTHON_USEDEP}] + test? ( >=dev-python/importing-1.10[${PYTHON_USEDEP}] )" + +S="${WORKDIR}"/${MY_P} + +python_test() { + PYTHONPATH=$PYTHONPATH:"${S}"/peak/rules/ "${PYTHON}" test_rules.py \ + && einfo "Tests passed under ${EPYTHON}" \ + || die "Tests failed under ${EPYTHON}" +} + +src_test() { + # Relative import misfires for core.py during emerge + sed -e "s:from peak.rules.core:from core:" -i test_rules.py + distutils-r1_src_test + # Return to original statefor final install + sed -e "s:from core:from peak.rules.core:" -i test_rules.py +} diff --git a/dev-python/pybloomfiltermmap/pybloomfiltermmap-0.3.11-r1.ebuild b/dev-python/pybloomfiltermmap/pybloomfiltermmap-0.3.11-r1.ebuild index b2eb30408eca..dfa065daa920 100644 --- a/dev-python/pybloomfiltermmap/pybloomfiltermmap-0.3.11-r1.ebuild +++ b/dev-python/pybloomfiltermmap/pybloomfiltermmap-0.3.11-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/pybloomfiltermmap/pybloomfiltermmap-0.3.11-r1.ebuild,v 1.1 2013/02/12 12:40:18 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pybloomfiltermmap/pybloomfiltermmap-0.3.11-r1.ebuild,v 1.3 2013/04/09 18:25:34 ago Exp $ EAPI=5 @@ -14,5 +14,5 @@ HOMEPAGE="http://pypi.python.org/pypi/pybloomfiltermmap" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" diff --git a/dev-python/pygobject/pygobject-2.28.6-r53.ebuild b/dev-python/pygobject/pygobject-2.28.6-r53.ebuild index ed9e766db0ab..a4f87ec9768c 100644 --- a/dev-python/pygobject/pygobject-2.28.6-r53.ebuild +++ b/dev-python/pygobject/pygobject-2.28.6-r53.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/pygobject/pygobject-2.28.6-r53.ebuild,v 1.11 2013/04/01 18:24:17 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygobject/pygobject-2.28.6-r53.ebuild,v 1.12 2013/04/09 16:42:21 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -14,7 +14,7 @@ HOMEPAGE="http://www.pygtk.org/" LICENSE="LGPL-2.1+" SLOT="2" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="examples libffi test" COMMON_DEPEND=">=dev-libs/glib-2.24.0:2 diff --git a/dev-python/pygtk/pygtk-2.24.0-r3.ebuild b/dev-python/pygtk/pygtk-2.24.0-r3.ebuild index 77846a8f43b0..451a0fb55b87 100644 --- a/dev-python/pygtk/pygtk-2.24.0-r3.ebuild +++ b/dev-python/pygtk/pygtk-2.24.0-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-python/pygtk/pygtk-2.24.0-r3.ebuild,v 1.9 2013/04/01 18:24:19 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pygtk/pygtk-2.24.0-r3.ebuild,v 1.10 2013/04/09 16:42:29 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -14,7 +14,7 @@ HOMEPAGE="http://www.pygtk.org/" LICENSE="LGPL-2.1" SLOT="2" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="doc examples test" RDEPEND=" diff --git a/dev-python/pypax/pypax-0.8.1-r1.ebuild b/dev-python/pypax/pypax-0.8.1-r1.ebuild index 40241a9c84eb..496885a6cf6a 100644 --- a/dev-python/pypax/pypax-0.8.1-r1.ebuild +++ b/dev-python/pypax/pypax-0.8.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/dev-python/pypax/pypax-0.8.1-r1.ebuild,v 1.6 2013/04/05 20:30:09 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/pypax/pypax-0.8.1-r1.ebuild,v 1.7 2013/04/10 17:12:54 jer Exp $ EAPI="5" @@ -17,7 +17,7 @@ S="${WORKDIR}/elfix-${PV}/scripts" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86" IUSE="+ptpax +xtpax" REQUIRED_USE="|| ( ptpax xtpax )" diff --git a/dev-python/pyprotocols/files/SkipTests.patch b/dev-python/pyprotocols/files/SkipTests.patch new file mode 100644 index 000000000000..7e362678fe4f --- /dev/null +++ b/dev-python/pyprotocols/files/SkipTests.patch @@ -0,0 +1,26 @@ +diff -ur PyProtocols.orig/src/protocols/tests/__init__.py PyProtocols/src/protocols/tests/__init__.py +--- src/protocols/tests/__init__.py 2007-04-25 12:15:46.000000000 +0800 ++++ src/protocols/tests/__init__.py 2013-04-10 19:22:28.720647271 +0800 +@@ -256,22 +256,6 @@ + makeSuite(GenerationTests,'check'), + ] + +- try: +- import zope.interface +- except ImportError: +- pass +- else: +- from protocols.tests import test_zope +- tests.append( test_zope.test_suite() ) +- +- try: +- from twisted.python.components import Interface +- except (ImportError, SystemError): +- pass +- else: +- from protocols.tests import test_twisted +- tests.append( test_twisted.test_suite() ) +- + return TestSuite( + tests + ) diff --git a/dev-python/pyprotocols/pyprotocols-1.0_pre2306-r1.ebuild b/dev-python/pyprotocols/pyprotocols-1.0_pre2306-r1.ebuild new file mode 100644 index 000000000000..a18ed10d2736 --- /dev/null +++ b/dev-python/pyprotocols/pyprotocols-1.0_pre2306-r1.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-python/pyprotocols/pyprotocols-1.0_pre2306-r1.ebuild,v 1.1 2013/04/10 11:50:57 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) + +inherit distutils-r1 flag-o-matic + +MY_PN="PyProtocols" +MY_P="${MY_PN}-${PV/_pre/a0dev_r}" + +DESCRIPTION="Extends the PEP 246 adapt function with a new 'declaration API'" +HOMEPAGE="http://peak.telecommunity.com/PyProtocols.html http://pypi.python.org/pypi/PyProtocols \ + http://svn.eby-sarna.com/PyProtocols/" +SRC_URI="mirror://gentoo/${MY_P}.tar.gz" + +LICENSE="|| ( PSF-2 ZPL )" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos" +IUSE="" + +RDEPEND=">=dev-python/decoratortools-1.4[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + >=dev-python/pyrex-0.9.9[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${MY_PN}" + +DOCS=( CHANGES.txt README.txt UPGRADING.txt ) + +python_prepare_all() { + # Rm peripheral & rogue failing tests + rm -f src//protocols/tests/{test_twisted.py,test_zope.py} || die + epatch "${FILESDIR}"/SkipTests.patch +} + +python_configure_all() { + append-flags -fno-strict-aliasing +} + +python_test() { + esetup.py test && einfo "Tests passed under ${EPYTHON}" \ + || die "Tests failed under ${EPYTHON}" +} diff --git a/dev-python/python-exec/python-exec-0.3.1.ebuild b/dev-python/python-exec/python-exec-0.3.1.ebuild index a31c779954cd..6f5604aee73a 100644 --- a/dev-python/python-exec/python-exec-0.3.1.ebuild +++ b/dev-python/python-exec/python-exec-0.3.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/python-exec/python-exec-0.3.1.ebuild,v 1.6 2013/04/05 20:30:36 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/python-exec/python-exec-0.3.1.ebuild,v 1.7 2013/04/10 17:05:53 jer Exp $ EAPI=5 @@ -16,7 +16,7 @@ SRC_URI="mirror://bitbucket/mgorny/${PN}/downloads/${P}.tar.bz2" LICENSE="BSD" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-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 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="" src_configure() { diff --git a/dev-python/ruledispatch/ruledispatch-0.5_pre2306-r2.ebuild b/dev-python/ruledispatch/ruledispatch-0.5_pre2306-r2.ebuild new file mode 100644 index 000000000000..70d076240b2f --- /dev/null +++ b/dev-python/ruledispatch/ruledispatch-0.5_pre2306-r2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ruledispatch/ruledispatch-0.5_pre2306-r2.ebuild,v 1.2 2013/04/10 14:15:40 idella4 Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) + +inherit distutils-r1 eutils versionator flag-o-matic + +MY_PN="RuleDispatch" +MY_P="${MY_PN}-$(get_version_component_range 1-2)a0.dev-$(get_version_component_range 3-)" +MY_P="${MY_P/pre/r}" + +DESCRIPTION="Rule-based Dispatching and Generic Functions" +HOMEPAGE="http://peak.telecommunity.com/" +# http://svn.eby-sarna.com/RuleDispatch/ +SRC_URI="mirror://gentoo/${MY_P}.tar.gz" + +LICENSE="|| ( PSF-2.4 ZPL )" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="" + +RDEPEND=">=dev-python/pyprotocols-1.0_pre2306[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}/${MY_PN}" + +PATCHES=( "${FILESDIR}/${PN}_as_syntax_fix.patch" ) + +python_configure_all() { + append-flags -fno-strict-aliasing +} + +python_test() { + cd "${BUILD_DIR}/lib" || die + # parallel build makes a salad; einfo msg lets us see what's occuring + for test in dispatch/tests/test_*.py; do + "${PYTHON}" $test && einfo "Tests $test passed under ${EPYTHON}" \ + || die "Tests failed under ${EPYTHON}" + done + # doctest appears old and unmaintained, left for just in case + # "${PYTHON}" dispatch/tests/doctest.py + einfo "Tests passed under ${EPYTHON}" +} diff --git a/dev-python/symboltype/Manifest b/dev-python/symboltype/Manifest new file mode 100644 index 000000000000..a03b78e32dee --- /dev/null +++ b/dev-python/symboltype/Manifest @@ -0,0 +1 @@ +DIST symboltype-1.0.zip 9507 SHA256 bcc311398c7dbcc9cbde9fe68bba89b0efe45103410b5949f3acf484fcb14f39 SHA512 1484adf4bd2df4f6def5cb6dab50e17d21a2baacb12af8a03aa981478deb97d1cfd3620c0e7d0e6e8c631b0c6bfc3912196c20a0feb39a3ddd4cf9e9dc42b6b2 WHIRLPOOL b92f3369f928f0021e6fe44877b2842cba18416cf0c3a0cb95c82a87604c227a927fa59fab28d98acad806eb864d80f9f319f53c965fa7bbfa7b37d4e1aa77a9 diff --git a/dev-python/symboltype/metadata.xml b/dev-python/symboltype/metadata.xml new file mode 100644 index 000000000000..0645cd9ff8f3 --- /dev/null +++ b/dev-python/symboltype/metadata.xml @@ -0,0 +1,5 @@ + + + + python + diff --git a/dev-python/symboltype/symboltype-1.0.ebuild b/dev-python/symboltype/symboltype-1.0.ebuild new file mode 100644 index 000000000000..4210c1d7afc7 --- /dev/null +++ b/dev-python/symboltype/symboltype-1.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/symboltype/symboltype-1.0.ebuild,v 1.1 2013/04/10 03:36:07 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_PN="SymbolType" + +DESCRIPTION="Gives access to the peak.util.symbols module" +HOMEPAGE=" http://peak.telecommunity.com/DevCenter/SymbolType http://pypi.python.org/pypi/SymbolType" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.zip -> ${P}.zip" + +KEYWORDS="~amd64 ~x86" +IUSE="doc" +LICENSE="ZPL" +SLOT="0" + +RDEPEND="" +DEPEND="app-arch/unzip + dev-python/setuptools[${PYTHON_USEDEP}]" + +S="${WORKDIR}"/${MY_PN}-${PV} + +python_test() { + "${PYTHON}" test_symbols.py && einfo "Tests passed under ${EPYTHON}" \ + || die "Tests failed under ${EPYTHON}" +} diff --git a/dev-python/turbojson/turbojson-1.3-r1.ebuild b/dev-python/turbojson/turbojson-1.3-r1.ebuild new file mode 100644 index 000000000000..d6f4dd95debf --- /dev/null +++ b/dev-python/turbojson/turbojson-1.3-r1.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-python/turbojson/turbojson-1.3-r1.ebuild,v 1.1 2013/04/10 15:39:34 idella4 Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_5,2_6,2_7} pypy{1_9,2_0} ) + +inherit distutils-r1 + +MY_PN="TurboJson" +MY_P="${MY_PN}-${PV}" + +DESCRIPTION="TurboGears JSON file format support plugin" +HOMEPAGE="http://pypi.python.org/pypi/TurboJson" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" +IUSE="test" + +RDEPEND=">=dev-python/decoratortools-1.4[${PYTHON_USEDEP}] + >=dev-python/ruledispatch-0.5_pre2306[$(python_gen_usedep 'python2*')] + >=dev-python/simplejson-2.6.2[${PYTHON_USEDEP}] + >=dev-python/peak-rules-0.5[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/nose[${PYTHON_USEDEP}] + dev-python/sqlalchemy[$(python_gen_usedep python{2_6,2_7})] + dev-python/sqlobject + >=dev-python/peak-rules-0.5[${PYTHON_USEDEP}] + )" + +S="${WORKDIR}/${MY_P}" + +python_test() { + cd $BUILD_DIR/lib/${PN}/tests/ || die + for test in test_*.py; do + "${PYTHON}" $test && einfo "Test $test passed under ${EPYTHON}" \ + || die "tests failed under ${EPYTHON}" + done +} diff --git a/dev-python/twitter/twitter-1.9.2-r1.ebuild b/dev-python/twitter/twitter-1.9.2-r1.ebuild new file mode 100644 index 000000000000..efa33c57edf1 --- /dev/null +++ b/dev-python/twitter/twitter-1.9.2-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/twitter/twitter-1.9.2-r1.ebuild,v 1.1 2013/04/09 08:12:14 idella4 Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2} pypy{1_9,2_0} ) + +inherit distutils-r1 + +DESCRIPTION="An API and command-line toolset for Twitter (twitter.com)" +HOMEPAGE="http://mike.verdone.ca/twitter/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="" diff --git a/dev-python/ujson/ujson-1.30-r1.ebuild b/dev-python/ujson/ujson-1.30-r1.ebuild new file mode 100644 index 000000000000..8f8c2199e561 --- /dev/null +++ b/dev-python/ujson/ujson-1.30-r1.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/ujson/ujson-1.30-r1.ebuild,v 1.1 2013/04/08 14:33:13 idella4 Exp $ + +EAPI="5" + +# One test; FAIL: test_encodeToUTF8 (__main__.UltraJSONTests) under py2.5. +# Fix and repair and re-insert if it's REALLY needed +PYTHON_COMPAT=( python{2_6,2_7,3_2} ) + +inherit distutils-r1 + +DESCRIPTION="Ultra fast JSON encoder and decoder for Python" +HOMEPAGE="http://pypi.python.org/pypi/ujson/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + app-arch/unzip" +RDEPEND="${DEPEND}" + +python_test() { + # See setup.py; line 72. Again "${S}" is used for reading tests + # Since py3_2 is first in the queue it needs its own copy + # or else all py2s to follow will be reading read py3 tests + if [[ "${EPYTHON}" == 'python3.2' ]]; then + cd "${BUILD_DIR}"/lib || die + cp -a "${S}"/tests/ . || die + 2to3 -w tests/tests.py + "${PYTHON}" tests/tests.py || die + rm -rf tests/ || die + else + "${PYTHON}" tests/tests.py || die + fi +} diff --git a/dev-python/unidecode/unidecode-0.04.9-r1.ebuild b/dev-python/unidecode/unidecode-0.04.9-r1.ebuild new file mode 100644 index 000000000000..e18be25a66e6 --- /dev/null +++ b/dev-python/unidecode/unidecode-0.04.9-r1.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-python/unidecode/unidecode-0.04.9-r1.ebuild,v 1.1 2013/04/08 13:41:18 idella4 Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_6,2_7,3_1,3_2} pypy2_0 ) + +MY_PN=Unidecode +MY_P=${MY_PN}-${PV} + +inherit distutils-r1 + +DESCRIPTION="Module providing ASCII transliterations of Unicode text" +HOMEPAGE="http://pypi.python.org/pypi/Unidecode" +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +S=${WORKDIR}/${MY_P} + +RDEPEND="" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test || die "Tests failed under ${EPYTHON}" +} diff --git a/dev-python/websockify/Manifest b/dev-python/websockify/Manifest new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/dev-python/websockify/metadata.xml b/dev-python/websockify/metadata.xml new file mode 100644 index 000000000000..4f0b75d6af96 --- /dev/null +++ b/dev-python/websockify/metadata.xml @@ -0,0 +1,13 @@ + + + + python + + prometheanfire@gentoo.org + Matthew Thode + + + WebSockets support for any application/server + + + diff --git a/dev-python/websockify/websockify-0.4.1.ebuild b/dev-python/websockify/websockify-0.4.1.ebuild new file mode 100644 index 000000000000..7d9b65200b32 --- /dev/null +++ b/dev-python/websockify/websockify-0.4.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/websockify/websockify-0.4.1.ebuild,v 1.1 2013/04/10 17:34:04 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_5 python2_6 python2_7 ) + +inherit distutils-r1 git-2 + +EGIT_REPO_URI="git://github.com/kanaka/${PN}.git +https://github.com/kanaka/${PN}.git" +EGIT_BRANCH="v0.4.1" + +DESCRIPTION="WebSockets support for any application/server" +HOMEPAGE="https://github.com/kanaka/websockify" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]" diff --git a/dev-python/wxpython/wxpython-2.8.12.1-r1.ebuild b/dev-python/wxpython/wxpython-2.8.12.1-r1.ebuild index 4480cffef6ac..d1e74a6dd1ed 100644 --- a/dev-python/wxpython/wxpython-2.8.12.1-r1.ebuild +++ b/dev-python/wxpython/wxpython-2.8.12.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/dev-python/wxpython/wxpython-2.8.12.1-r1.ebuild,v 1.4 2013/03/26 03:23:52 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.8.12.1-r1.ebuild,v 1.5 2013/04/10 03:44:28 dirtyepic Exp $ EAPI=5 @@ -27,7 +27,7 @@ RDEPEND=" >=x11-libs/wxGTK-${PV}:${WX_GTK_VER}[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools[${PYTHON_USEDEP}] - media-libs/libpng:0 + media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg x11-libs/gtk+:2 diff --git a/dev-python/wxpython/wxpython-2.9.4.1-r1.ebuild b/dev-python/wxpython/wxpython-2.9.4.1-r1.ebuild index bdcd9c8e7d8b..2eeae6c1e541 100644 --- a/dev-python/wxpython/wxpython-2.9.4.1-r1.ebuild +++ b/dev-python/wxpython/wxpython-2.9.4.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/dev-python/wxpython/wxpython-2.9.4.1-r1.ebuild,v 1.3 2013/03/26 03:23:52 dirtyepic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.9.4.1-r1.ebuild,v 1.4 2013/04/10 03:44:28 dirtyepic Exp $ EAPI=5 @@ -26,7 +26,7 @@ RDEPEND=" >=x11-libs/wxGTK-${PV}:${WX_GTK_VER}[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools[${PYTHON_USEDEP}] - media-libs/libpng:0 + media-libs/libpng:0= media-libs/tiff:0 virtual/jpeg x11-libs/gtk+:2 diff --git a/dev-python/wxpython/wxpython-2.9.4.1.ebuild b/dev-python/wxpython/wxpython-2.9.4.1.ebuild deleted file mode 100644 index 445687416cb6..000000000000 --- a/dev-python/wxpython/wxpython-2.9.4.1.ebuild +++ /dev/null @@ -1,152 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wxpython/wxpython-2.9.4.1.ebuild,v 1.3 2012/09/05 09:36:33 jlec Exp $ - -EAPI="4" -PYTHON_DEPEND="2:2.6" -WX_GTK_VER="2.9" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.[45] 3.* *-jython 2.7-pypy-*" - -inherit alternatives distutils eutils fdo-mime wxwidgets - -MY_PN="wxPython-src" - -DESCRIPTION="A blending of the wxWindows C++ class library with Python" -HOMEPAGE="http://www.wxpython.org/" -SRC_URI="mirror://sourceforge/wxpython/${MY_PN}-2.9.4.0.tar.bz2 - examples? ( mirror://sourceforge/wxpython/wxPython-demo-2.9.4.0.tar.bz2 ) - mirror://sourceforge/wxpython/${MY_PN}-2.9.4.1.patch" - -LICENSE="wxWinLL-3" -SLOT="2.9" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" -IUSE="cairo examples opengl" - -RDEPEND=" - >=x11-libs/wxGTK-${PV}:${WX_GTK_VER}[opengl?,tiff,X] - dev-libs/glib:2 - dev-python/setuptools - 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 ) - opengl? ( dev-python/pyopengl )" - -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/${MY_PN}-2.9.4.0/wxPython" -DOC_S="${WORKDIR}/wxPython-2.9.4.0" - -PYTHON_CFLAGS=("2.* + -fno-strict-aliasing") -PYTHON_CXXFLAGS=("2.* + -fno-strict-aliasing") - -PYTHON_MODNAME="wx-${PV%.*}-gtk2 wxversion.py" - -src_prepare() { - sed -i "s:cflags.append('-O3'):pass:" config.py || die "sed failed" - - cd .. - epatch "${DISTDIR}"/${MY_PN}-${PV}.patch - cd "${S}" - epatch "${FILESDIR}"/${P}-wxversion-scripts.patch - # drop editra - we have it as a separate package now - epatch "${FILESDIR}"/${PN}-2.8.11-drop-editra.patch - - if use examples; then - cd "${DOC_S}" - epatch "${FILESDIR}"/${PN}-${SLOT}-wxversion-demo.patch - fi - - python_copy_sources -} - -src_configure() { - need-wxwidgets unicode - - DISTUTILS_GLOBAL_OPTIONS=( - "* WX_CONFIG=${WX_CONFIG}" - "* WXPORT=gtk2" - "* UNICODE=1" - "* BUILD_GLCANVAS=$(use opengl && echo 1 || echo 0)" - ) -} - -distutils_src_install_post_hook() { - # Collision protection. - local file - for file in "$(distutils_get_intermediate_installation_image)${EPREFIX}"/usr/bin/*; do - mv "${file}" "${file}-${SLOT}" - done -} - -src_install() { - distutils_src_install - - local file x - # Collision protection. - rename_files() { - for file in "${D}$(python_get_sitedir)/"wx{version.*,.pth}; do - mv "${file}" "${file}-${SLOT}" || return 1 - done - } - python_execute_function -q rename_files - - dodoc "${S}"/docs/{CHANGES,PyManual,README,wxPackage,wxPythonManual}.txt - - for x in {Py{AlaMode,Crust,Shell},XRCed}; do - newmenu "${S}"/distrib/${x}.desktop ${x}-${SLOT}.desktop - done - newicon "${S}"/wx/py/PyCrust_32.png PyCrust-${SLOT}.png - newicon "${S}"/wx/py/PySlices_32.png PySlices-${SLOT}.png - newicon "${S}"/wx/tools/XRCed/XRCed_32.png XRCed-${SLOT}.png - - if use examples; then - dodir /usr/share/doc/${PF}/demo - dodir /usr/share/doc/${PF}/samples - cp -R "${DOC_S}"/demo/* "${D}"/usr/share/doc/${PF}/demo/ || die - cp -R "${DOC_S}"/samples/* "${D}"/usr/share/doc/${PF}/samples/ || die - fi -} - -pkg_postinst() { - fdo-mime_desktop_database_update - - create_symlinks() { - alternatives_auto_makesym "$(python_get_sitedir)/wx.pth" "$(python_get_sitedir)/wx.pth-[0-9].[0-9]" - alternatives_auto_makesym "$(python_get_sitedir)/wxversion.py" "$(python_get_sitedir)/wxversion.py-[0-9].[0-9]" - } - python_execute_function -q create_symlinks - - distutils_pkg_postinst - - echo - elog "Gentoo uses the Multi-version method for SLOT'ing." - elog "Developers, see this site for instructions on using" - elog "2.8 or 2.9 with your apps:" - elog "http://wiki.wxpython.org/index.cgi/MultiVersionInstalls" - elog - if use examples; then - elog "The demo.py app which contains demo modules with" - elog "documentation and source code has been installed at" - elog "/usr/share/doc/${PF}/demo/demo.py" - elog - elog "More example apps and modules can be found in" - elog "/usr/share/doc/${PF}/samples/" - fi - echo -} - -pkg_postrm() { - distutils_pkg_postrm - fdo-mime_desktop_database_update - - create_symlinks() { - alternatives_auto_makesym "$(python_get_sitedir)/wx.pth" "$(python_get_sitedir)/wx.pth-[0-9].[0-9]" - alternatives_auto_makesym "$(python_get_sitedir)/wxversion.py" "$(python_get_sitedir)/wxversion.py-[0-9].[0-9]" - } - python_execute_function -q create_symlinks -} diff --git a/dev-qt/qt-creator/qt-creator-2.7.0.ebuild b/dev-qt/qt-creator/qt-creator-2.7.0.ebuild index 7b4e1f8b01ae..7d01d56ae89e 100644 --- a/dev-qt/qt-creator/qt-creator-2.7.0.ebuild +++ b/dev-qt/qt-creator/qt-creator-2.7.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-qt/qt-creator/qt-creator-2.7.0.ebuild,v 1.1 2013/03/23 07:44:22 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qt-creator/qt-creator-2.7.0.ebuild,v 1.2 2013/04/08 17:00:57 pinkbyte Exp $ EAPI=5 @@ -24,7 +24,7 @@ else fi SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="~amd64 ~arm ~x86" QTC_PLUGINS=(android autotools:autotoolsprojectmanager bazaar clearcase cmake:cmakeprojectmanager cvs fakevim git diff --git a/dev-qt/qt-meta/qt-meta-4.8.ebuild b/dev-qt/qt-meta/qt-meta-4.8.ebuild index 5d8a6f6f97a7..c478b912a71e 100644 --- a/dev-qt/qt-meta/qt-meta-4.8.ebuild +++ b/dev-qt/qt-meta/qt-meta-4.8.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/dev-qt/qt-meta/qt-meta-4.8.ebuild,v 1.1 2013/03/02 15:24:49 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qt-meta/qt-meta-4.8.ebuild,v 1.2 2013/04/08 15:07:15 pesa Exp $ EAPI=2 -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework" +DESCRIPTION="Cross-platform application development framework" HOMEPAGE="http://qt-project.org/ http://qt.nokia.com/" LICENSE="|| ( LGPL-2.1 GPL-3 )" diff --git a/dev-qt/qt3support/qt3support-4.8.4.ebuild b/dev-qt/qt3support/qt3support-4.8.4.ebuild index 4500db76ec77..89cdff2a9603 100644 --- a/dev-qt/qt3support/qt3support-4.8.4.ebuild +++ b/dev-qt/qt3support/qt3support-4.8.4.ebuild @@ -1,12 +1,12 @@ -# 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-qt/qt3support/qt3support-4.8.4.ebuild,v 1.1 2013/03/02 15:25:21 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qt3support/qt3support-4.8.4.ebuild,v 1.2 2013/04/08 15:17:16 pesa Exp $ EAPI=4 inherit qt4-build -DESCRIPTION="The Qt3 support module for the Qt toolkit" +DESCRIPTION="The Qt3Support module for the Qt toolkit" SLOT="4" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" diff --git a/dev-qt/qtcore/qtcore-4.8.4-r2.ebuild b/dev-qt/qtcore/qtcore-4.8.4-r2.ebuild index b932a0e14db9..afc35a7b3113 100644 --- a/dev-qt/qtcore/qtcore-4.8.4-r2.ebuild +++ b/dev-qt/qtcore/qtcore-4.8.4-r2.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtcore/qtcore-4.8.4-r2.ebuild,v 1.3 2013/03/11 17:49:34 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtcore/qtcore-4.8.4-r2.ebuild,v 1.4 2013/04/08 15:04:10 pesa Exp $ EAPI=5 inherit qt4-build -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework" +DESCRIPTION="Cross-platform application development framework" SLOT="4" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" diff --git a/dev-qt/qtcore/qtcore-4.8.4-r4.ebuild b/dev-qt/qtcore/qtcore-4.8.4-r4.ebuild index b3b1e4e4a4e8..7f9db1e9e6db 100644 --- a/dev-qt/qtcore/qtcore-4.8.4-r4.ebuild +++ b/dev-qt/qtcore/qtcore-4.8.4-r4.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtcore/qtcore-4.8.4-r4.ebuild,v 1.9 2013/04/02 23:08:13 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtcore/qtcore-4.8.4-r4.ebuild,v 1.10 2013/04/08 15:04:10 pesa Exp $ EAPI=5 inherit qt4-build -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework" +DESCRIPTION="Cross-platform application development framework" SLOT="4" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" diff --git a/dev-qt/qtcore/qtcore-4.8.4-r5.ebuild b/dev-qt/qtcore/qtcore-4.8.4-r5.ebuild index 6bc77efdfdfc..980565081a76 100644 --- a/dev-qt/qtcore/qtcore-4.8.4-r5.ebuild +++ b/dev-qt/qtcore/qtcore-4.8.4-r5.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtcore/qtcore-4.8.4-r5.ebuild,v 1.1 2013/03/25 08:32:58 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtcore/qtcore-4.8.4-r5.ebuild,v 1.2 2013/04/08 15:04:10 pesa Exp $ EAPI=5 inherit qt4-build -DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework" +DESCRIPTION="Cross-platform application development framework" SRC_URI+=" http://dev.gentoo.org/~pesa/patches/${P}-update-defaultNumberingSystem.patch.gz" diff --git a/dev-qt/qtdemo/qtdemo-4.8.4.ebuild b/dev-qt/qtdemo/qtdemo-4.8.4.ebuild index 48998093b93a..2342fadb6c38 100644 --- a/dev-qt/qtdemo/qtdemo-4.8.4.ebuild +++ b/dev-qt/qtdemo/qtdemo-4.8.4.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/dev-qt/qtdemo/qtdemo-4.8.4.ebuild,v 1.1 2013/03/02 15:27:09 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtdemo/qtdemo-4.8.4.ebuild,v 1.2 2013/04/08 16:56:00 pinkbyte Exp $ EAPI=4 @@ -11,7 +11,7 @@ SLOT="4" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" else - KEYWORDS="amd64 ppc ppc64 x86 ~x64-macos" + KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x64-macos" fi IUSE="dbus declarative kde multimedia opengl openvg qt3support webkit xmlpatterns" diff --git a/dev-qt/qtscript/qtscript-4.8.4.ebuild b/dev-qt/qtscript/qtscript-4.8.4.ebuild index ad543939365c..27568664d47b 100644 --- a/dev-qt/qtscript/qtscript-4.8.4.ebuild +++ b/dev-qt/qtscript/qtscript-4.8.4.ebuild @@ -1,12 +1,12 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtscript/qtscript-4.8.4.ebuild,v 1.2 2013/03/02 20:14:11 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qtscript/qtscript-4.8.4.ebuild,v 1.3 2013/04/08 15:18:21 pesa Exp $ EAPI=4 inherit qt4-build -DESCRIPTION="The ECMAScript module for the Qt toolkit" +DESCRIPTION="The QtScript module for the Qt toolkit" SLOT="4" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" diff --git a/dev-qt/qttest/qttest-4.8.4.ebuild b/dev-qt/qttest/qttest-4.8.4.ebuild index 6fca67f43314..f7a7b43c39b1 100644 --- a/dev-qt/qttest/qttest-4.8.4.ebuild +++ b/dev-qt/qttest/qttest-4.8.4.ebuild @@ -1,12 +1,12 @@ -# 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-qt/qttest/qttest-4.8.4.ebuild,v 1.1 2013/03/02 15:34:43 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-qt/qttest/qttest-4.8.4.ebuild,v 1.2 2013/04/08 15:24:42 pesa Exp $ EAPI=4 inherit qt4-build -DESCRIPTION="The testing framework module for the Qt toolkit" +DESCRIPTION="The QtTest module for unit testing Qt applications and libraries" SLOT="4" if [[ ${QT4_BUILD_TYPE} == live ]]; then KEYWORDS="" diff --git a/dev-ruby/json/json-1.7.7-r1.ebuild b/dev-ruby/json/json-1.7.7-r1.ebuild new file mode 100644 index 000000000000..102b7a50fe88 --- /dev/null +++ b/dev-ruby/json/json-1.7.7-r1.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/json/json-1.7.7-r1.ebuild,v 1.1 2013/04/09 17:35:04 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby18 ruby19 jruby" + +RUBY_FAKEGEM_TASK_DOC="doc" +RUBY_FAKEGEM_EXTRADOC="CHANGES TODO README.rdoc README-json-jruby.markdown" +RUBY_FAKEGEM_DOCDIR="doc" + +RUBY_FAKEGEM_GEMSPEC="json.gemspec" + +inherit multilib ruby-fakegem + +DESCRIPTION="A JSON implementation as a Ruby extension." +HOMEPAGE="http://json.rubyforge.org/" +LICENSE="|| ( Ruby GPL-2 )" + +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" +SLOT="0" +IUSE="" + +RDEPEND="${RDEPEND}" +DEPEND="${DEPEND} + dev-util/ragel" + +ruby_add_bdepend "dev-ruby/rake" + +all_ruby_prepare() { + # Avoid building the extension twice! + # And use rdoc instead of sdoc which we don't have packaged + # And don't call git to list files. We're using the pregenerated spec anyway. + sed -i \ + -e 's| => :compile||' \ + -e 's| => :clean||' \ + -e 's|sdoc|rdoc|' \ + -e 's|`git ls-files`|""|' \ + Rakefile || die "rakefile fix failed" + + # Remove hardcoded and broken -O setting. + sed -i -e '/^unless/,/^end/ d' -e '/^ (if|unless)/,/^ end/ d' ext/json/ext/*/extconf.rb || die +} + +each_ruby_compile() { + # Since 1.5.0 a Java extension is provided but it does not compile. + if [[ $(basename ${RUBY}) != "jruby" ]]; then + ${RUBY} -S rake compile || die "extension compile failed" + fi +} + +each_ruby_test() { + JSON=pure \ + ${RUBY} -Iext:lib -S testrb tests/test_*.rb || die "pure ruby tests failed" + + if [[ $(basename ${RUBY}) != "jruby" ]]; then + JSON=ext \ + ${RUBY} -Iext:lib -S testrb tests/test_*.rb || die "ext ruby tests failed" + fi +} + +each_ruby_install() { + each_fakegem_install + if [[ $(basename ${RUBY}) != "jruby" ]]; then + ruby_fakegem_newins ext/json/ext/generator$(get_modname) lib/json/ext/generator$(get_modname) + ruby_fakegem_newins ext/json/ext/parser$(get_modname) lib/json/ext/parser$(get_modname) + fi +} diff --git a/dev-ruby/metasploit_data_models/Manifest b/dev-ruby/metasploit_data_models/Manifest index 02ab0658fb77..0603116322dd 100644 --- a/dev-ruby/metasploit_data_models/Manifest +++ b/dev-ruby/metasploit_data_models/Manifest @@ -4,3 +4,4 @@ DIST metasploit_data_models-0.5.0.tar.gz 50894 SHA256 52402a255def9fe08e4048ce24 DIST metasploit_data_models-0.5.1.tar.gz 50933 SHA256 be9cf2647e0758ffed8f78a36584f86046015cf9ab7ff32582b28e8ab6160399 SHA512 436e5686dd3349a30c6dc4634d13895cb17bc6d5331599afa7b333cabdb1b07abfb653882f08f6b662adbb06764d1886f41614a91039fc460031062f27b12389 WHIRLPOOL 13c94a34c123a544af2f43333a96fd7ec8e74edc65b35e36d5c17b1feddb07418d3368760e9a703967ba022c3144b09b1bf0e80f85efeddda6e65dbecdd3bb7e DIST metasploit_data_models-0.6.0.tar.gz 53998 SHA256 78149cd1d4ec7bc8c6db4bf49a70c20343962403a5ea4415bb00c6846e868817 SHA512 e8a8ed278695e516a60629169f7190d9628c7869d2d45f9a40b081a6bb4e4d7d783fdd0845a5688e13896de4319b79c2f4c390a0b368b5657ff4344004f5e6c0 WHIRLPOOL b66b8fbdaec60c9ac3e4830570ca78c7eed599f899ed7afe47eea246cef6d358b637d0203cc8c2de2653de4baa19acd7599004d737c3fc81ab832f59fbe3ad66 DIST metasploit_data_models-0.6.1.tar.gz 54418 SHA256 5dc8e93d42fee49af3748807c5cead957217eb53e4d0b878dfff9b80673dedd7 SHA512 5e78252bec868a783414534afbce93b258c5f2c45b225fb21d256ee945cca2653e7fea7a89605a874382c689dd10773e8d7b47dfbcd41960b071fa1347eb1aa2 WHIRLPOOL 8ce444abe4047c149610f26e480559f86e9d18b7009c731de6638e6e0782425d5939a443f8ea5a8befbb977eae5641525c9e5d5ab8e3ad5832746b39d1b3e4ac +DIST metasploit_data_models-0.6.4.tar.gz 54336 SHA256 a4e245bff6d02de7e7f7da8d0cea02ebd152728bf65ccde2c94d8da82bf6144a SHA512 f57b17c523fc6db1c46f61b307c7d2ba6a9310e218c7e09cc364d9e6ede522355111408ab1e717517bb9b7eeee626537cb8c62432a20f9b5c9e3c65a396a38bb WHIRLPOOL 35623d5b75c433085b43f457444877d94d9f929c445f525db51b71250aac24d093c71301f5fa52030cbca5dc87f0d86e26a45e1246228916cdfd19776c191dda diff --git a/dev-ruby/metasploit_data_models/metasploit_data_models-0.6.4.ebuild b/dev-ruby/metasploit_data_models/metasploit_data_models-0.6.4.ebuild new file mode 100644 index 000000000000..f552b7c956e3 --- /dev/null +++ b/dev-ruby/metasploit_data_models/metasploit_data_models-0.6.4.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/metasploit_data_models/metasploit_data_models-0.6.4.ebuild,v 1.1 2013/04/08 23:28:56 zerochaos Exp $ + +EAPI=5 + +USE_RUBY="ruby18 ruby19" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_RECIPE_TEST="" + +inherit ruby-fakegem + +DESCRIPTION="The database layer for Metasploit" +HOMEPAGE="https://github.com/rapid7/metasploit_data_models" +SRC_URI="https://github.com/rapid7/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +#pry isn't available for 1.9 +#ruby_add_bdepend "test? ( dev-ruby/rails dev-ruby/pry )" + +ruby_add_rdepend ">=dev-ruby/activerecord-3.2.10[postgres]" + +each_ruby_install() { + ruby_fakegem_install_gemspec + + local _gemlibdirs="${RUBY_FAKEGEM_EXTRAINSTALL}" + for directory in app bin db lib script spec; do + [[ -d ${directory} ]] && _gemlibdirs="${_gemlibdirs} ${directory}" + done + + [[ -n ${_gemlibdirs} ]] && \ + ruby_fakegem_doins -r ${_gemlibdirs} +} diff --git a/dev-ruby/minitest/minitest-4.5.0.ebuild b/dev-ruby/minitest/minitest-4.5.0.ebuild index 7b46943c4624..ff4199458030 100644 --- a/dev-ruby/minitest/minitest-4.5.0.ebuild +++ b/dev-ruby/minitest/minitest-4.5.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-ruby/minitest/minitest-4.5.0.ebuild,v 1.6 2013/04/05 20:29:45 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/minitest/minitest-4.5.0.ebuild,v 1.7 2013/04/10 17:25:07 jer Exp $ EAPI=5 # jruby → tests fail, reported upstream @@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/seattlerb/minitest" LICENSE="MIT" 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" +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 " diff --git a/dev-ruby/mixlib-cli/Manifest b/dev-ruby/mixlib-cli/Manifest index 251bbc520bbd..9dfff4c6150b 100644 --- a/dev-ruby/mixlib-cli/Manifest +++ b/dev-ruby/mixlib-cli/Manifest @@ -1 +1,2 @@ DIST mixlib-cli-1.2.2.tgz 9878 SHA256 aca7da55e369e47163724aeb788b2729c66b5ef345a2f78eb6e72e7e11749485 SHA512 34677bf62b9afb48aa83ef716c7981b3042dd76a31d8996939299c9243e30f4a069b9c771380e084c1863232549f6448ff38be7c11d63827f0cc86dae0e67b36 WHIRLPOOL b6449f9ed2c9103f4e9439b2dc65dcb730e680c01dc4468d0d1bb7551af87ef4ae21d5bad1977c4f815c21e62d52a2598c60c74fb8f62840d4e80af9f6038996 +DIST mixlib-cli-1.3.0.tgz 10879 SHA256 f510810893d80b4b1a5d7ae44a04ea122ef1fb3ae4e4d7c3830b80b671cf35a1 SHA512 b21ea432a3ad8e20149ebc941c914ebaa6e8dd496b045b04a30df89597d0d6d359da8bc3be58d5de711891d0a2b05acc327c2ac0246fdf4601b1b0c4edf668ba WHIRLPOOL 3c76db2aced7ce6658ddf251455c123f5e22ea3965f865ec5e89a65a2de453e20f7cc3fc4a81b54ad78b5ccbab88042b6a54cd0aa625ad1e4d7e43950c48898f diff --git a/dev-ruby/mixlib-cli/mixlib-cli-1.3.0.ebuild b/dev-ruby/mixlib-cli/mixlib-cli-1.3.0.ebuild new file mode 100644 index 000000000000..7e4cc377fbbb --- /dev/null +++ b/dev-ruby/mixlib-cli/mixlib-cli-1.3.0.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mixlib-cli/mixlib-cli-1.3.0.ebuild,v 1.1 2013/04/08 17:45:17 graaff Exp $ + +EAPI=4 +USE_RUBY="ruby18 ruby19 jruby" + +RUBY_FAKEGEM_TASK_DOC="" +RUBY_FAKEGEM_RECIPE_TEST="rspec" + +RUBY_FAKEGEM_EXTRADOC="README.rdoc" + +inherit ruby-fakegem + +DESCRIPTION="Mixin for creating command line applications" +HOMEPAGE="http://github.com/opscode/mixlib-cli" +SRC_URI="https://github.com/opscode/${PN}/archive/${PV}.tar.gz -> ${P}.tgz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~x86-fbsd" +IUSE="" diff --git a/dev-ruby/mocha/Manifest b/dev-ruby/mocha/Manifest index 5ad4296c1494..600579eba572 100644 --- a/dev-ruby/mocha/Manifest +++ b/dev-ruby/mocha/Manifest @@ -3,3 +3,4 @@ DIST mocha-0.11.4.gem 75776 SHA256 12e901203211af113231d539c92390d456d2f0be37339 DIST mocha-0.12.7.gem 76800 SHA256 a987ee463b4cbc42e08cac552c2094cd25614b9444e132082572343acdcd4cec SHA512 61f06a9ff0ccad4cfb63e15d5ae437296cb12e8606e4f7f759b05414226782109102ab5f32dc1ace6c6d72abf7029f7be628b4a0053bc3cea7e19a85e649a7af WHIRLPOOL 575b11282098580fbaac4b74de6e162d3784ba906841795604a959b9b2c39085627e91a93a2e95ef4e1fbb77085aecdc36a2faa4fcd3d867bee6aee089907830 DIST mocha-0.13.0.gem 79360 SHA256 017df9bbdbe863bb3f6bfbfc586e2493744b07fae8040b610a4b9458509133b9 SHA512 149a3dfc24139795b5cffc3f9c158798691a9d9aee7f0a3c07d3c6e113afcea89d24e1d1705586974bc4b0a2cad208b71bfa0e436ee530380d52651f2dc4b8bc WHIRLPOOL e6e272fa5030b57ca13ea248b304381aa609a2e8e44148a752fc859a9495f632d4a9c1845116f12c6d99a64e5a1786e0e4934974ac3b457fa24908abdbbc9ba6 DIST mocha-0.13.1.gem 79872 SHA256 3cc2f4f7d3ded7f105fa08645b8ae5fc48f1bfe0340e01936341ef37a5624ed1 SHA512 37ca7fe9076ab503b0bac4826b9ba3b982b50a1d980f6992143d3ab6ff29b35b0b149e8534ce3c2a1e70c7a78c93dc2f52bac37b1594642745972965c32d88a6 WHIRLPOOL 3a919fb5b79d3af1672369bffdfd07ac02c439a5a91ef1dcad557b514eef2ae409f29f7c513a176d967e4bb6bd64292657fe88043703da11df35497e47ee5d26 +DIST mocha-0.13.3.gem 82432 SHA256 4f979512dd32f2e0881c143132160dea433a392287df40d12576bbbb0af6646a SHA512 4c013565644d4b3af9bdc515c7b9b5be39c606c53d0b5da4569bd7c3fd98db3f2a7e6b88e566b32277c8e8d0ea6c83340e6afd1e80cdec0dfabd41e4fe5dbf27 WHIRLPOOL 150b9c0d573670b3592ef1f435778c2c5e47fe71f45dc59f99314b9042bfc146b46a5e42aedf899f8ea2e531ae7e5478d043a34f3d994c38d579ec0f1840e763 diff --git a/dev-ruby/mocha/mocha-0.13.3.ebuild b/dev-ruby/mocha/mocha-0.13.3.ebuild new file mode 100644 index 000000000000..709a937acbc1 --- /dev/null +++ b/dev-ruby/mocha/mocha-0.13.3.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.ebuild,v 1.1 2013/04/08 17:46:40 graaff Exp $ + +EAPI=5 +USE_RUBY="ruby18 ruby19 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" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +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/multi_xml/Manifest b/dev-ruby/multi_xml/Manifest index 3b77c63d79f7..44dc3d94d7d9 100644 --- a/dev-ruby/multi_xml/Manifest +++ b/dev-ruby/multi_xml/Manifest @@ -1 +1,2 @@ DIST multi_xml-0.5.2.gem 15872 SHA256 541023f911647130172ae81f83a222e0b6c54ed37eaf8d8f885b505d049cab3e SHA512 4a7bc1c93fa6dcf48c67c78e7f5daefbaf10fb97865e7049e375bb96087f70764f50fee16d740a4890a5eedc81a10a467ab285651d71aeafa6eb64f40838c681 WHIRLPOOL ebc26884768a99fe616aee89ecdd90e164af8fd763588301d678b8d439a94f35d88d503526363ba685544c8641d492ce11a80281f8bf78f0c3d9a9a2b0ded9e3 +DIST multi_xml-0.5.3.gem 18944 SHA256 5d8c4583c3f7135ba64a8d8f16ed6dea7e8b522b209dffd78fa40eef14f4a5d3 SHA512 b25b5541de0546dec272de307c33500eb0f8758711f6b94fe2055175b7b15c71ab4c380142180b7da0b6e4517d3f436efc00c33d464856866b0e828a7ca233c4 WHIRLPOOL ca86511fbdc3e0a73e9d9985bda7d815f936bcdd77e5a08a17f336ad782aa13c6e6c2f89c18dfd7dd6a2635e22355c4d871626d62c56a26e16819986723fe491 diff --git a/dev-ruby/multi_xml/multi_xml-0.5.3.ebuild b/dev-ruby/multi_xml/multi_xml-0.5.3.ebuild new file mode 100644 index 000000000000..f04276d792a7 --- /dev/null +++ b/dev-ruby/multi_xml/multi_xml-0.5.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-ruby/multi_xml/multi_xml-0.5.3.ebuild,v 1.2 2013/04/10 05:35:26 graaff Exp $ + +EAPI=4 + +USE_RUBY="ruby18 ruby19 jruby" + +RUBY_FAKEGEM_RECIPE_TEST="rspec" +RUBY_FAKEGEM_TASK_DOC="doc:yard" + +RUBY_FAKEGEM_DOCDIR="doc" +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="A generic swappable back-end for XML parsing" +HOMEPAGE="http://rdoc.info/gems/multi_xml" +LICENSE="MIT" + +KEYWORDS="~amd64 ~ppc ~x86" +SLOT="0" +IUSE="" + +ruby_add_bdepend "doc? ( dev-ruby/yard )" + +each_ruby_test() { + CI=true each_fakegem_test +} diff --git a/dev-ruby/multipart-post/Manifest b/dev-ruby/multipart-post/Manifest index 575c051ea8e6..6bd8efccbb37 100644 --- a/dev-ruby/multipart-post/Manifest +++ b/dev-ruby/multipart-post/Manifest @@ -1 +1,2 @@ DIST multipart-post-1.1.5.gem 9728 SHA256 cdb66ff777aa36b378225ae649930ab4c74174db0238cb750c8586c28b40bf64 SHA512 f3866caf431f6714f33a5b167d9f7da1fd71800d1c37f569bb1bf636d89a7c3b687b572fd2f7c128e466d15bed426d162feb16cf0e960c105cb66f6ffd6b0b1c WHIRLPOOL 84d7dafb88f23b3a28b62cb8de28225d42f046952f497a956d45f5810d1617ea8198662bba2376faa9babe52a4b3c0a71c5d9df020b53d81fadb86451965c351 +DIST multipart-post-1.2.0.gem 10240 SHA256 ccf26a61706f128a2a3f3745aba0f79fde7b6fee068e03490eb189c2aaa5e78a SHA512 ebb431f24bc9d325d30061ea82e6242c6e7bf4aa2ed3ee30c1bec126383a31f104efedc95c97359bc0dc0505ef64386b2c7218a89a2cd0b2e60fb9e8067aebd3 WHIRLPOOL dcdcaf94c738dd170542402d4d6988a59cf1da82c459d4bbe3c474adc99adc273fc81ca152f28344c662659b71c5f176619c34b0b3698f9ac0b3d37c7dcd28b2 diff --git a/dev-ruby/multipart-post/multipart-post-1.2.0.ebuild b/dev-ruby/multipart-post/multipart-post-1.2.0.ebuild new file mode 100644 index 000000000000..ae3dfc433b02 --- /dev/null +++ b/dev-ruby/multipart-post/multipart-post-1.2.0.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-ruby/multipart-post/multipart-post-1.2.0.ebuild,v 1.1 2013/04/10 05:37:03 graaff Exp $ + +EAPI=5 + +USE_RUBY="ruby18 ruby19 jruby" + +RUBY_FAKEGEM_TASK_TEST="" +RUBY_FAKEGEM_TASK_DOC="" + +RUBY_FAKEGEM_EXTRADOC="README.txt" + +inherit ruby-fakegem eutils + +DESCRIPTION="Adds a streamy multipart form post capability to Net::HTTP." +HOMEPAGE="http://github.com/nicksieger/multipart-post" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +each_ruby_test() { + ${RUBY} -S testrb -Ilib test || die "Tests failed." +} diff --git a/dev-scheme/chicken/Manifest b/dev-scheme/chicken/Manifest index 59622f00259b..884e96ffbe2e 100644 --- a/dev-scheme/chicken/Manifest +++ b/dev-scheme/chicken/Manifest @@ -1,4 +1,4 @@ DIST chicken-3.3.0.tar.gz 4228441 SHA256 5ce2519bac9956de5700a5777b2bbc2cd89202ef2d2252a40a0d1e8c9854bec6 DIST chicken-4.6.0.tar.gz 3019126 SHA256 c55d1dadf9941b3efbc7be9181d5c7cbc304a20c614625fbf710c0acaa1cd245 DIST chicken-4.7.3.tar.gz 3316152 SHA256 00c82bc2208d74463a69356d2a30a3771f87048ea87fb9c024d464b3c9d4e230 -DIST chicken-4.8.0.2.tar.gz 3968784 SHA256 bf933f8cc4586b8b468c9abb8ec079a9f109ea20b5f12a1af2776f694e14791d SHA512 5eee3b6fbb7d2d8658f24a84566bed8860a4853992a923b63b1ed1ccb8d64112d458ada02a536239c05f20ba8497e0a0953b36516d9af66c0499448d64496b87 WHIRLPOOL f1944fb6239df989f68f0a38106fc345ff81fa33058d1c8d5932ddf352f51461eb7d4e44f4c5c97999584492dee7eecd5b1495fa2336fb6a1e3a2e7999a224fc +DIST chicken-4.8.0.3.tar.gz 3959422 SHA256 6a1414e6f35586e47d7f4470eaf1779a4f73dec664b14bebf8763dd804b399c3 SHA512 8a716953fe7eeaea9039e90c5a2abad7fbe341a580176abe870c7b78bfdd11f1291d90bb9df43334b7f7ea484695ba59eba3558b9e360e5e9bd21fa106679197 WHIRLPOOL f55ca79a7df54dce9612b444a5a6a767b9b18cb9ba48a91bb5abab799d260e6c8aef83dade54d38013f41cc4d4b8bbdcda77513d75c91ab038289c6eabcca2fb diff --git a/dev-scheme/chicken/chicken-4.8.0.2.ebuild b/dev-scheme/chicken/chicken-4.8.0.3.ebuild similarity index 97% rename from dev-scheme/chicken/chicken-4.8.0.2.ebuild rename to dev-scheme/chicken/chicken-4.8.0.3.ebuild index 2f07d783562a..4c05d3245103 100644 --- a/dev-scheme/chicken/chicken-4.8.0.2.ebuild +++ b/dev-scheme/chicken/chicken-4.8.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-scheme/chicken/chicken-4.8.0.2.ebuild,v 1.1 2013/04/07 22:49:31 pchrist Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-scheme/chicken/chicken-4.8.0.3.ebuild,v 1.1 2013/04/08 21:09:02 pchrist Exp $ EAPI="3" diff --git a/dev-scheme/chicken/files/chicken-4.8.0.2-parallel-build.patch b/dev-scheme/chicken/files/chicken-4.8.0.3-parallel-build.patch similarity index 100% rename from dev-scheme/chicken/files/chicken-4.8.0.2-parallel-build.patch rename to dev-scheme/chicken/files/chicken-4.8.0.3-parallel-build.patch diff --git a/dev-util/glade/glade-3.12.2.ebuild b/dev-util/glade/glade-3.12.2.ebuild index a42c7b835e5b..f2434eab2843 100644 --- a/dev-util/glade/glade-3.12.2.ebuild +++ b/dev-util/glade/glade-3.12.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-util/glade/glade-3.12.2.ebuild,v 1.11 2013/04/01 18:24:22 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-3.12.2.ebuild,v 1.12 2013/04/09 16:42:37 ago Exp $ EAPI="4" GCONF_DEBUG="yes" @@ -13,7 +13,7 @@ HOMEPAGE="http://glade.gnome.org/" LICENSE="GPL-2+ FDL-1.1+" SLOT="3.10" -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="+introspection python" RDEPEND="dev-libs/atk[introspection?] diff --git a/dev-util/glade/glade-3.8.3.ebuild b/dev-util/glade/glade-3.8.3.ebuild index 8db883411976..0706d88d04ef 100644 --- a/dev-util/glade/glade-3.8.3.ebuild +++ b/dev-util/glade/glade-3.8.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-util/glade/glade-3.8.3.ebuild,v 1.9 2013/04/01 18:24:22 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/glade/glade-3.8.3.ebuild,v 1.10 2013/04/09 16:42:37 ago Exp $ EAPI="5" GCONF_DEBUG="yes" @@ -15,7 +15,7 @@ HOMEPAGE="http://glade.gnome.org/" LICENSE="GPL-2+ FDL-1.1+" SLOT="3/11" # subslot = suffix of libgladeui-1.so -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="gnome python" RDEPEND=">=dev-libs/glib-2.8:2 diff --git a/dev-util/gob/gob-2.0.19.ebuild b/dev-util/gob/gob-2.0.19.ebuild index b7f7e64a7f4d..4b25f71b3b55 100644 --- a/dev-util/gob/gob-2.0.19.ebuild +++ b/dev-util/gob/gob-2.0.19.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/gob/gob-2.0.19.ebuild,v 1.10 2013/04/01 18:24:24 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gob/gob-2.0.19.ebuild,v 1.11 2013/04/09 16:42:44 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://www.jirka.org/gob.html" LICENSE="GPL-2+" SLOT="2" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos" IUSE="" RDEPEND=">=dev-libs/glib-2:2" diff --git a/dev-util/gtk-builder-convert/gtk-builder-convert-2.24.16.ebuild b/dev-util/gtk-builder-convert/gtk-builder-convert-2.24.16.ebuild index d048560ad76c..c885caf2c5ea 100644 --- a/dev-util/gtk-builder-convert/gtk-builder-convert-2.24.16.ebuild +++ b/dev-util/gtk-builder-convert/gtk-builder-convert-2.24.16.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/gtk-builder-convert/gtk-builder-convert-2.24.16.ebuild,v 1.11 2013/04/01 18:24:26 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/gtk-builder-convert/gtk-builder-convert-2.24.16.ebuild,v 1.12 2013/04/09 16:42:50 ago Exp $ EAPI="5" @@ -15,7 +15,7 @@ HOMEPAGE="http://www.gtk.org/" LICENSE="LGPL-2+" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~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" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~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="" # gtk-builder-convert was part of gtk+ until 2.24.10-r1 diff --git a/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild b/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild index ace8bef085c8..30d5ca6b7f19 100644 --- a/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild +++ b/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild @@ -1,11 +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/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild,v 1.2 2012/10/05 19:24:48 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild,v 1.5 2013/04/09 18:26:29 ago Exp $ EAPI=4 -WANT_AUTOMAKE=1.9 - inherit eutils autotools toolchain-funcs MY_P=kBuild-${PV/_/-}-src @@ -16,7 +14,7 @@ SRC_URI="http://dev.gentoo.org/~polynomial-c/${MY_P}.tar.xz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" DEPEND="sys-devel/flex diff --git a/dev-util/pkgconf/Manifest b/dev-util/pkgconf/Manifest index fb5644c3681b..5a5d64de2697 100644 --- a/dev-util/pkgconf/Manifest +++ b/dev-util/pkgconf/Manifest @@ -1,3 +1,2 @@ -DIST pkgconf-0.8.12.tar.bz2 81236 SHA256 307b954f15b66ab094db808fd2d2be9e56d6ffc12204866bea59eba1b0cb68f3 SHA512 fa23b5da1ce597ee44ad8310cee5b2e7008d7df01dbaac80161ffe6378c671aca17f063af112e8c65043dfe8fbac8d4637ff64a2794b92af01bf1baf18009553 WHIRLPOOL 69797ddac9118897fd32ead43ce07c701580df57e684deb2063363c06d3223ee48fbdb5a5c80c3039bb9ade9d72ed9aa1ee02a6ae30e14841edadb7fbfc73e3f DIST pkgconf-0.8.9.tar.gz 59077 SHA256 dd4a8651d242e6d58361d72723614e30f0b207731a1d14d1bbe15a752fc11fc3 SHA512 64dd6c846a23d87b63d013a80f0643050c47c996db2dbd14a875dbe32b831121dc82b85f753b05486a1cbed2ec81957d035b91c8c18bd522358099cdc1840172 WHIRLPOOL f80c79e5e4fc0b61f1d6ad952e5c3eb1b9d46f14cadf2d45a7258b0361b454fa512ff34da8a39aa19a502da8c831b74afedc8b9610aed7d56b108a6c8b7c4531 -DIST pkgconf-0.9.1.tar.bz2 82129 SHA256 8fafb60fab89b8f8c5407370bbb6b00ab70778d9f6336f388a37803a9907f936 SHA512 069652c3307e8d0b565be2a986ffbcc69c873548f8129dd75dd93f6f1d16c8e429f1afe616fd539c048711041164e834487f14f02825572a7804769b37cb2565 WHIRLPOOL 84e59b8bf25f915d1beac27cb0cf8d5b2cbc2a12d8829aed9ba842d941f066e762fb7f3f25c65f2af4519b87a024e0b2664c478aeb70ecbe0bd6b33adbc48929 +DIST pkgconf-0.9.2.tar.bz2 82140 SHA256 e8c7ea4f12823383d2c95580d4497bd085aa10ce5979b6d22307b52febc4bfd3 SHA512 b4e0c6d1004b91ba45d982b0b74045aeac06d14067899de96ced189ce89994e93af8dab86ef18fd144e30b097205298949fa0869489860757ac17c8c5b42aaf3 WHIRLPOOL ec146c0f59a398e5c94a0bd568a44cbead533376f02a9f4ab1b7fdfae98799aeae636ea52fe83bd7fe44524f3c0b64135163ee9d8950dfd802c0efe1fc125211 diff --git a/dev-util/pkgconf/pkgconf-0.8.12.ebuild b/dev-util/pkgconf/pkgconf-0.8.12.ebuild deleted file mode 100644 index 1aab3a189ab4..000000000000 --- a/dev-util/pkgconf/pkgconf-0.8.12.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconf/pkgconf-0.8.12.ebuild,v 1.1 2013/02/26 02:19:05 jdhore Exp $ - -EAPI="4" - -if [[ ${PV} == "9999" ]] ; then - EGIT_REPO_URI="git://github.com/pkgconf/pkgconf.git" - inherit autotools git-2 -else - inherit eutils - SRC_URI="http://tortois.es/~nenolod/distfiles/${P}.tar.bz2" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ppc-macos ~x64-macos ~x86-macos ~sparc64-solaris" -fi - -DESCRIPTION="pkg-config compatible replacement with no dependencies other than ANSI C89" -HOMEPAGE="https://github.com/pkgconf/pkgconf" - -LICENSE="BSD-1" -SLOT="0" -IUSE="+pkg-config strict" - -DEPEND="" -RDEPEND="${DEPEND} - pkg-config? ( - !dev-util/pkgconfig - !dev-util/pkg-config-lite - !dev-util/pkgconfig-openbsd[pkg-config] - )" - -src_prepare() { - [[ -e configure ]] || eautoreconf -} - -src_configure() { - econf $(use_enable strict) -} - -src_install() { - default - use pkg-config \ - && dosym pkgconf /usr/bin/pkg-config \ - || rm "${ED}"/usr/share/aclocal/pkg.m4 \ - || die -} diff --git a/dev-util/pkgconf/pkgconf-0.9.1.ebuild b/dev-util/pkgconf/pkgconf-0.9.2.ebuild similarity index 95% rename from dev-util/pkgconf/pkgconf-0.9.1.ebuild rename to dev-util/pkgconf/pkgconf-0.9.2.ebuild index e1756700daba..3288583653e6 100644 --- a/dev-util/pkgconf/pkgconf-0.9.1.ebuild +++ b/dev-util/pkgconf/pkgconf-0.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/dev-util/pkgconf/pkgconf-0.9.1.ebuild,v 1.1 2013/03/16 18:23:40 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgconf/pkgconf-0.9.2.ebuild,v 1.1 2013/04/10 03:42:50 jdhore Exp $ EAPI="4" diff --git a/dev-util/premake/Manifest b/dev-util/premake/Manifest index dc7461da75b8..f8d568f13878 100644 --- a/dev-util/premake/Manifest +++ b/dev-util/premake/Manifest @@ -1,2 +1,3 @@ DIST premake-4.3-src.zip 514366 SHA256 36536490f8928d8ecde135da80cd8b751ea5bebe50cabba5c0de49cd41cb2780 SHA512 df3a4f1e04afb6ae9acf06c063b084a4bcc7c48a98eebeb242eafef40de4097c6a6fe549369d9538b93efea35244222b9d26c15824f126a67b8f80abaecdf001 WHIRLPOOL f39bb097379206818989b5076b2310ea26252f694382eaec1ed5b3785318dbdb0fbd3669094f2756979fbf67c771f080f76dd9418da3d8326f3e93b8e15957e4 DIST premake-src-3.5.zip 384472 SHA256 ae51d699076e515d2517aef771c5de01f61ce5f504b79dea7653018885186c72 SHA512 c700a9586a035a7a036c6021fd38dc2c8f0a86d52e5520da3f504c237113a3be1624140d779068f19f41b700d221672b8fdb5e2894b804d73ff02edb07013a11 WHIRLPOOL 78199860bb04d38fc5d13b5bae3885375fbcac3bc02ccd61908418fa6acc740b884735244fb2bc16550e470b6dae535932c3a089a2635b57cf4e53f286fac84e +DIST premake-src-3.7.zip 427727 SHA256 b59841a519e75d5b6566848a2c5be2f91455bf0cc6ae4d688fcbd4c40db934d5 SHA512 351b26b9ee738e97b1828e7c26fe1538fb1509fbdc030da3d87fc28b1daa7966bc50ba8043062d35b37fa3929d909533b723241e1f98e438a039c6f9d61a46f4 WHIRLPOOL ddebaac25b0382620dba378ca8f3f3340cbe630cc081858cc94a6dc4d4a5a13c9e09706af5dc602e6886a0e3f720cc68515f38bc112fd82a389593a2b3514bf6 diff --git a/dev-util/premake/premake-3.7.ebuild b/dev-util/premake/premake-3.7.ebuild new file mode 100644 index 000000000000..cc583f7bad24 --- /dev/null +++ b/dev-util/premake/premake-3.7.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/premake/premake-3.7.ebuild,v 1.1 2013/04/09 10:30:34 titanofold Exp $ + +EAPI=5 + +inherit versionator + +DESCRIPTION="A makefile generation tool" +HOMEPAGE="http://industriousone.com/premake" +SRC_URI="mirror://sourceforge/${PN}/${PN}-src-${PV}.zip" + +LICENSE="GPL-2" +SLOT=$(get_major_version) +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND="" + +S=${WORKDIR}/${P/p/P} + +src_install() { + dobin bin/${PN} +} diff --git a/dev-util/premake/premake-4.3-r1.ebuild b/dev-util/premake/premake-4.3-r1.ebuild new file mode 100644 index 000000000000..f8ee48b48784 --- /dev/null +++ b/dev-util/premake/premake-4.3-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/premake/premake-4.3-r1.ebuild,v 1.1 2013/04/09 10:30:34 titanofold Exp $ + +EAPI=5 + +inherit versionator + +DESCRIPTION="A makefile generation tool" +HOMEPAGE="http://industriousone.com/premake" +SRC_URI="mirror://sourceforge/premake/${P}-src.zip" + +LICENSE="BSD" +SLOT=$(get_major_version) +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND="" + +src_prepare() { + epatch "${FILESDIR}/archless.patch" +} + +src_compile() { + emake -C build/gmake.unix/ +} + +src_install() { + dobin bin/release/premake4 +} diff --git a/dev-util/stubgen/stubgen-2.08.ebuild b/dev-util/stubgen/stubgen-2.08.ebuild index bfedfa596bdd..c410a593b7c8 100644 --- a/dev-util/stubgen/stubgen-2.08.ebuild +++ b/dev-util/stubgen/stubgen-2.08.ebuild @@ -1,6 +1,6 @@ -# 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/dev-util/stubgen/stubgen-2.08.ebuild,v 1.1 2011/05/31 19:28:42 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/stubgen/stubgen-2.08.ebuild,v 1.3 2013/04/09 18:26:58 ago Exp $ EAPI=4 inherit toolchain-funcs @@ -11,7 +11,7 @@ SRC_URI="http://www.radwin.org/michael/projects/${PN}/dist/${P}.tar.gz" LICENSE="BSD" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="" src_compile() { diff --git a/dev-vcs/mercurial/Manifest b/dev-vcs/mercurial/Manifest index e019e900e7bc..108ee84319e9 100644 --- a/dev-vcs/mercurial/Manifest +++ b/dev-vcs/mercurial/Manifest @@ -1,3 +1,4 @@ DIST mercurial-2.4.2.tar.gz 3613392 SHA256 cc21083d7eab4caa8159b941e36c7229acbb6d41a26a7bed21a771b3f63dedf3 SHA512 642dbcc9de6662e563059cafadbd4a0f1b4d6cebad48b2bfc7160571fad950a0110456be52690f1aeef6b91a4f6ac1edf6fc3607d1f590337a60c4b2bcab4625 WHIRLPOOL 64b7f5d620ed132849318e270bc97a0bed99f8be16d1c65da0a38dab47cf3f20bbe0f6b1b9ab145ca6df70c48ba70814df5c0c6c8fa07b271fcda251bb7c9ddf DIST mercurial-2.5.1.tar.gz 3671108 SHA256 96688c49ee6cbf2809d0925f1ee797a9211f4ed735233d789cabfabaac221859 SHA512 91693ca5f34934956a7c2c98bb69a5648b2a5660afd2ecf4a05035c5420450d42c194eeef0606d7683e267e4eaaaab414df23f30b34c88219bdd5c1a0f1f66ed WHIRLPOOL 93229d04c1f43badc2d90ebc13868f8799f887eb86f4a37c7a19021cfeac6ede0aa008b0c0b5ad39011293103363cf16987b1329c5cdf43fbba2437c3ad9fc5a DIST mercurial-2.5.2.tar.gz 3671671 SHA256 cf6d4a7bb70d6b7318905ad7e4db8a2b42be26556b28c82f9bd960299ddad34e SHA512 475995fe07d481b2857f109f7d10681d19db13cc6ffcb2e5ed08c85fed7e25206af6a09634e562ab44e6d047a2814f8ee8cb4daa7a7a82e3edea795bee096baa WHIRLPOOL 02d148093308175ee9078402531bd77de485b866e65579cd9b1e7addea6a6505520c7b1f7f7a2153ffa7880b367f7ca96807255339dd7cc7bd58eda11db4f777 +DIST mercurial-2.5.4.tar.gz 3673850 SHA256 c86fe9feb9aaada286fa297d9d68d1b16e2f842b8bd645826c81bc705a629d5a SHA512 928fdeaaf0eaec80adbd8765521de9666ab56aaa2101fb9ab2cb392d8b29475d3b052d89652ff9b67522cfcc6cd958717ac715f51b0573ee088e9a595f29afe2 WHIRLPOOL d90a0c6a8752442ad2f7e524a4b07910538aa9d910ae4889196eb41cdcc903dbfb3f17d18f54a788fcf8232e154852566503d652a3904b4b307242a7d306ce80 diff --git a/dev-vcs/mercurial/mercurial-2.5.4.ebuild b/dev-vcs/mercurial/mercurial-2.5.4.ebuild new file mode 100644 index 000000000000..23dca3488e96 --- /dev/null +++ b/dev-vcs/mercurial/mercurial-2.5.4.ebuild @@ -0,0 +1,152 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-2.5.4.ebuild,v 1.1 2013/04/08 18:38:49 maksbotan Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) +PYTHON_REQ_USE="threads" + +inherit bash-completion-r1 elisp-common eutils distutils-r1 flag-o-matic + +DESCRIPTION="Scalable distributed SCM" +HOMEPAGE="http://mercurial.selenic.com/" +SRC_URI="http://mercurial.selenic.com/release/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="bugzilla emacs gpg test tk zsh-completion" + +RDEPEND="bugzilla? ( dev-python/mysql-python[${PYTHON_USEDEP}] ) + gpg? ( app-crypt/gnupg ) + tk? ( dev-lang/tk ) + zsh-completion? ( app-shells/zsh ) + app-misc/ca-certificates" +DEPEND="emacs? ( virtual/emacs ) + test? ( app-arch/unzip + dev-python/pygments[${PYTHON_USEDEP}] )" + +SITEFILE="70${PN}-gentoo.el" + +python_prepare_all() { + # fix up logic that won't work in Gentoo Prefix (also won't outside in + # certain cases), bug #362891 + sed -i -e 's:xcodebuild:nocodebuild:' setup.py || die + + distutils-r1_python_prepare_all +} + +python_configure_all() { + strip-flags -ftracer -ftree-vectorize + # Note: make it impl-conditional if py3 is supported + append-flags -fno-strict-aliasing + + "${PYTHON}" setup.py build_mo || die +} + +python_compile_all() { + rm -r contrib/{win32,macosx} || die + if use emacs; then + cd contrib || die + elisp-compile mercurial.el || die "elisp-compile failed!" + fi +} + +python_install_all() { + distutils-r1_python_install_all + + newbashcomp contrib/bash_completion ${PN} + + if use zsh-completion ; then + insinto /usr/share/zsh/site-functions + newins contrib/zsh_completion _hg + fi + + rm -f doc/*.?.txt || die + dodoc CONTRIBUTORS doc/*.txt + cp hgweb*.cgi "${ED}"/usr/share/doc/${PF}/ || die + + dobin hgeditor + dobin contrib/hgk + python_foreach_impl python_doscript contrib/hg-ssh + + if use emacs; then + elisp-install ${PN} contrib/mercurial.el* || die "elisp-install failed!" + elisp-site-file-install "${FILESDIR}"/${SITEFILE} + fi + + local RM_CONTRIB=(hgk hg-ssh bash_completion zsh_completion wix buildrpm plan9 + *.el mercurial.spec) + for f in ${RM_CONTRIB[@]}; do + rm -rf contrib/$f || die + done + + dodoc -r contrib + docompress -x /usr/share/doc/${PF}/contrib + doman doc/*.? + + cat > "${T}/80mercurial" <<-EOF +HG="${EPREFIX}/usr/bin/hg" +EOF + doenvd "${T}/80mercurial" + + insinto /etc/mercurial/hgrc.d + doins "${FILESDIR}/cacerts.rc" +} + +src_test() { + cd tests || die + rm -rf *svn* || die # Subversion tests fail with 1.5 + rm -f test-archive* || die # Fails due to verbose tar output changes + rm -f test-convert-baz* || die # GNU Arch baz + rm -f test-convert-cvs* || die # CVS + rm -f test-convert-darcs* || die # Darcs + rm -f test-convert-git* || die # git + rm -f test-convert-mtn* || die # monotone + rm -f test-convert-tla* || die # GNU Arch tla + rm -f test-doctest* || die # doctest always fails with python 2.5.x + rm -f test-largefiles* || die # tends to time out + if [[ ${EUID} -eq 0 ]]; then + einfo "Removing tests which require user privileges to succeed" + rm -f test-command-template* || die # Test is broken when run as root + rm -f test-convert* || die # Test is broken when run as root + rm -f test-lock-badness* || die # Test is broken when run as root + rm -f test-permissions* || die # Test is broken when run as root + rm -f test-pull-permission* || die # Test is broken when run as root + rm -f test-clone-failure* || die + rm -f test-journal-exists* || die + rm -f test-repair-strip* || die + fi + + cd .. || die + distutils-r1_src_test +} + +python_test() { + local TEST_DIR + + rm -rf "${TMPDIR}"/test + distutils_install_for_testing + cd tests || die + "${PYTHON}" run-tests.py --verbose \ + --tmpdir="${TMPDIR}"/test \ + --with-hg="${TEST_DIR}"/scripts/hg \ + || die "Tests fail with ${EPYTHON}" +} + +pkg_postinst() { + use emacs && elisp-site-regen + + elog "If you want to convert repositories from other tools using convert" + elog "extension please install correct tool:" + elog " dev-vcs/cvs" + elog " dev-vcs/darcs" + elog " dev-vcs/git" + elog " dev-vcs/monotone" + elog " dev-vcs/subversion" +} + +pkg_postrm() { + use emacs && elisp-site-regen +} diff --git a/dev-vcs/mercurial/mercurial-9999.ebuild b/dev-vcs/mercurial/mercurial-9999.ebuild index adde60064d2c..a114b0dff5be 100644 --- a/dev-vcs/mercurial/mercurial-9999.ebuild +++ b/dev-vcs/mercurial/mercurial-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/dev-vcs/mercurial/mercurial-9999.ebuild,v 1.17 2013/01/02 08:32:19 djc Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/mercurial/mercurial-9999.ebuild,v 1.18 2013/04/08 18:38:49 maksbotan Exp $ EAPI=3 PYTHON_DEPEND="2" @@ -13,6 +13,7 @@ inherit bash-completion-r1 elisp-common eutils distutils mercurial DESCRIPTION="Scalable distributed SCM" HOMEPAGE="http://mercurial.selenic.com/" EHG_REPO_URI="http://selenic.com/repo/hg" +EHG_REVISION="@" LICENSE="GPL-2" SLOT="0" @@ -70,13 +71,21 @@ src_install() { dodoc CONTRIBUTORS README doc/*.txt || die cp hgweb*.cgi "${ED}"/usr/share/doc/${PF}/ || die + if use emacs; then + elisp-install ${PN} contrib/mercurial.el* || die "elisp-install failed!" + elisp-site-file-install "${FILESDIR}"/${SITEFILE} + fi + dobin hgeditor || die dobin contrib/hgk || die dobin contrib/hg-ssh || die - rm -f contrib/hgk contrib/hg-ssh || die + local RM_CONTRIB=(hgk hg-ssh bash_completion zsh_completion wix buildrpm plan9 + *.el mercurial.spec) + for f in ${RM_CONTRIB[@]}; do + rm -rf contrib/$f || die + done - rm -f contrib/bash_completion || die cp -r contrib "${ED}"/usr/share/doc/${PF}/ || die doman doc/*.? || die @@ -85,11 +94,6 @@ HG="${EPREFIX}/usr/bin/hg" EOF doenvd "${T}/80mercurial" || die - if use emacs; then - elisp-install ${PN} contrib/mercurial.el* || die "elisp-install failed!" - elisp-site-file-install "${FILESDIR}"/${SITEFILE} - fi - insinto /etc/mercurial/hgrc.d doins "${FILESDIR}/cacerts.rc" } diff --git a/dev-vcs/mercurial/metadata.xml b/dev-vcs/mercurial/metadata.xml index ee9de838f735..99bab8db6469 100644 --- a/dev-vcs/mercurial/metadata.xml +++ b/dev-vcs/mercurial/metadata.xml @@ -9,6 +9,11 @@ polynomial-c@gentoo.org Lars Wendler + + sterkrig@myopera.com + Nikolaj Sjujskij + Fallback maintaner, please CC on bugs + Support bugzilla integration. Support signing with GnuPG. diff --git a/dev-vcs/subversion/Manifest b/dev-vcs/subversion/Manifest index daf448fd3745..4b7b725c61dd 100644 --- a/dev-vcs/subversion/Manifest +++ b/dev-vcs/subversion/Manifest @@ -2,3 +2,4 @@ DIST subversion-1.6.17.tar.bz2 5504298 SHA256 d629c657e171616d30cc0cbddf1011a065 DIST subversion-1.7.6.tar.bz2 6006767 SHA256 d1a4f13c5c992a1527a2aeac262c6f54e073963ce1d13abfabb2a90980fa7d05 SHA512 bced624139b3a284918edce59419a9933080ecfd861e8eaf3a7abc56c72c1e9b50d8ff3fc6185783d5b537c5be87c1e328ad42288bc063103b456c3d376c42ce WHIRLPOOL 7425ad97d27cb127a6e45845ccc419d5f9bc61101c6d675565f08af96bb8f27ea06ecd1116f214f23e8465529aa17aee53c33319b618ac12e4e912e707bce2a8 DIST subversion-1.7.7.tar.bz2 6023686 SHA256 fc85a9341d1dc275b279e470776014b02328a028e48a7ac7868ac07d4a40a321 SHA512 0ce0a22e05c76132d9a1650cee3d7fdf6eb7606eb7197ee604e48129e6e3ba7ebc910d71c756ef2aced7100c8cd9a7d1dc3da8744315be0a8c506fdafa8ada19 WHIRLPOOL d0c82ab9abd8e95cbd5a5cf0d082a5b1eda7451bfaa5754d33a10279d94548f8c1457b3089c4bbb3347569b96be293e04371c05965ab2019aa38084831bc111d DIST subversion-1.7.8.tar.bz2 6023912 SHA256 fc83d4d98ccea8b7bfa8f5c20fff545c8baa7d035db930977550c51c6ca23686 SHA512 1e97a2049d7decaa7002d23a4353b67425ec682c4d229932a5a384d547855b61cdb02f2ee6ea89b9b63a35715a0321dc6ba35b3148d242c4899f4ccdf6ce35cd WHIRLPOOL 1c70043922986ec7af0a99455eb7f60c70461342af838b6151de740afcff6e3e8e999f480ea86020fc64a8620ee5a79eff7c7723df4320a86a2a38eb55063310 +DIST subversion-1.7.9.tar.bz2 6040347 SHA256 f8454c585f99afed764232a5048d9b8bfd0a25a9ab8e339ea69fe1204c453ef4 SHA512 04f1287ef7a114e12018d9a0c76c6ff5bcb977afc398710b8760c126975d1f8033462e9da3a75eba67359ad9166a9d3f980be9bc2d440e1e5b16545581e9100c WHIRLPOOL 551bf4a01c8d72c45efa4fdd1adeafe76036b5a77726b9b39396a1bb754f2d2a3b1a80b1ab07ac84c5aa6896e138dd3e53952b3f0832828f232526bbfd759275 diff --git a/dev-vcs/subversion/subversion-1.7.9.ebuild b/dev-vcs/subversion/subversion-1.7.9.ebuild new file mode 100644 index 000000000000..c3e69bcd4f50 --- /dev/null +++ b/dev-vcs/subversion/subversion-1.7.9.ebuild @@ -0,0 +1,466 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-vcs/subversion/subversion-1.7.9.ebuild,v 1.1 2013/04/08 22:41:26 tommy Exp $ + +EAPI=5 +PYTHON_COMPAT=( python{2_5,2_6,2_7} ) +DISTUTILS_OPTIONAL=1 +WANT_AUTOMAKE="none" +MY_P="${P/_/-}" + +inherit autotools bash-completion-r1 db-use depend.apache distutils-r1 elisp-common flag-o-matic java-pkg-opt-2 libtool multilib perl-module eutils + +DESCRIPTION="Advanced version control system" +HOMEPAGE="http://subversion.apache.org/" +SRC_URI="mirror://apache/${PN}/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P}" + +LICENSE="Subversion GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="apache2 berkdb ctypes-python debug doc +dso extras gnome-keyring java kde nls perl python ruby sasl vim-syntax +webdav-neon webdav-serf" + +COMMON_DEPEND=">=dev-db/sqlite-3.4 + >=dev-libs/apr-1.3:1 + >=dev-libs/apr-util-1.3:1 + dev-libs/expat + sys-libs/zlib + berkdb? ( >=sys-libs/db-4.0.14 ) + ctypes-python? ( ${PYTHON_DEPS} ) + gnome-keyring? ( dev-libs/glib:2 sys-apps/dbus gnome-base/gnome-keyring ) + kde? ( sys-apps/dbus dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 >=kde-base/kdelibs-4:4 ) + perl? ( dev-lang/perl ) + python? ( ${PYTHON_DEPS} ) + ruby? ( >=dev-lang/ruby-1.8.2:1.8 ) + sasl? ( dev-libs/cyrus-sasl ) + webdav-neon? ( >=net-libs/neon-0.28 ) + webdav-serf? ( >=net-libs/serf-0.3.0 )" +RDEPEND="${COMMON_DEPEND} + apache2? ( www-servers/apache[apache2_modules_dav] ) + java? ( >=virtual/jre-1.5 ) + kde? ( kde-base/kwalletd ) + nls? ( virtual/libintl ) + perl? ( dev-perl/URI )" +# Note: ctypesgen doesn't need PYTHON_USEDEP, it's used once +DEPEND="${COMMON_DEPEND} + ${PYTHON_DEPS} + !!=virtual/jdk-1.5 ) + kde? ( virtual/pkgconfig ) + nls? ( sys-devel/gettext ) + webdav-neon? ( virtual/pkgconfig )" + +want_apache + +pkg_setup() { + if use berkdb; then + local apu_bdb_version="$(${EPREFIX}/usr/bin/apu-1-config --includes \ + | grep -Eoe '-I${EPREFIX}/usr/include/db[[:digit:]]\.[[:digit:]]' \ + | sed 's:.*b::')" + einfo + if [[ -z "${SVN_BDB_VERSION}" ]]; then + if [[ -n "${apu_bdb_version}" ]]; then + SVN_BDB_VERSION="${apu_bdb_version}" + einfo "Matching db version to apr-util" + else + SVN_BDB_VERSION="$(db_ver_to_slot "$(db_findver sys-libs/db 2>/dev/null)")" + einfo "SVN_BDB_VERSION variable isn't set. You can set it to enforce using of specific version of Berkeley DB." + fi + fi + einfo "Using: Berkeley DB ${SVN_BDB_VERSION}" + einfo + + if [[ -n "${apu_bdb_version}" && "${SVN_BDB_VERSION}" != "${apu_bdb_version}" ]]; then + eerror "APR-Util is linked against Berkeley DB ${apu_bdb_version}, but you are trying" + eerror "to build Subversion with support for Berkeley DB ${SVN_BDB_VERSION}." + eerror "Rebuild dev-libs/apr-util or set SVN_BDB_VERSION=\"${apu_bdb_version}\"." + eerror "Aborting to avoid possible run-time crashes." + die "Berkeley DB version mismatch" + fi + fi + + depend.apache_pkg_setup + + java-pkg-opt-2_pkg_setup + + if ! use webdav-neon && ! use webdav-serf; then + ewarn "WebDAV support is disabled. You need WebDAV to" + ewarn "access repositories through the HTTP protocol." + ewarn "Consider enabling one of the following USE-flags:" + ewarn " webdav-neon webdav-serf" + echo -ne "\a" + fi + + if use debug; then + append-cppflags -DSVN_DEBUG -DAP_DEBUG + fi + + # Allow for custom repository locations. + SVN_REPOS_LOC="${SVN_REPOS_LOC:-${EPREFIX}/var/svn}" +} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.5.4-interix.patch \ + "${FILESDIR}"/${PN}-1.5.6-aix-dso.patch \ + "${FILESDIR}"/${PN}-1.6.3-hpux-dso.patch \ + "${FILESDIR}"/${PN}-fix-parallel-build-support-for-perl-bindings.patch + epatch_user + + fperms +x build/transform_libtool_scripts.sh + + sed -i \ + -e "s/\(BUILD_RULES=.*\) bdb-test\(.*\)/\1\2/g" \ + -e "s/\(BUILD_RULES=.*\) test\(.*\)/\1\2/g" configure.ac + + # this bites us in particular on Solaris + sed -i -e '1c\#!/usr/bin/env sh' build/transform_libtool_scripts.sh || \ + die "/bin/sh is not POSIX shell!" + + eautoconf + elibtoolize + + sed -e 's/\(libsvn_swig_py\)-\(1\.la\)/\1-$(EPYTHON)-\2/g' \ + -i build-outputs.mk || die "sed failed" + + if use python; then + # XXX: make python_copy_sources accept path + S=${S}/subversion/bindings/swig/python python_copy_sources + rm -r "${S}"/subversion/bindings/swig/python || die + fi +} + +src_configure() { + local myconf + + if use python || use perl || use ruby; then + myconf+=" --with-swig" + else + myconf+=" --without-swig" + fi + + if use java; then + myconf+=" --without-junit" + fi + + if use kde || use nls; then + myconf+=" --enable-nls" + else + myconf+=" --disable-nls" + fi + + case ${CHOST} in + *-aix*) + # avoid recording immediate path to sharedlibs into executables + append-ldflags -Wl,-bnoipath + ;; + *-interix*) + # loader crashes on the LD_PRELOADs... + myconf+=" --disable-local-library-preloading" + ;; + *-solaris*) + # need -lintl to link + use nls && append-libs intl + # this breaks installation, on x64 echo replacement is 32-bits + myconf+=" --disable-local-library-preloading" + ;; + *-mint*) + myconf+=" --enable-all-static --disable-local-library-preloading" + ;; + *) + # inject LD_PRELOAD entries for easy in-tree development + myconf+=" --enable-local-library-preloading" + ;; + esac + + #workaround for bug 387057 + has_version =dev-vcs/subversion-1.6* && myconf+=" --disable-disallowing-of-undefined-references" + + #version 1.7.7 again tries to link against the older installed version and fails, when trying to + #compile for x86 on amd64, so workaround this issue again + #check newer versions, if this is still/again needed + myconf+=" --disable-disallowing-of-undefined-references" + + # for build-time scripts + python_export_best + + #force ruby-1.8 for bug 399105 + #allow overriding Python include directory + ac_cv_path_RUBY="${EPREFIX}"/usr/bin/ruby18 ac_cv_path_RDOC="${EPREFIX}"/usr/bin/rdoc18 \ + ac_cv_python_includes='-I$(PYTHON_INCLUDEDIR)' \ + econf --libdir="${EPREFIX}/usr/$(get_libdir)" \ + $(use_with apache2 apxs "${APXS}") \ + $(use_with berkdb berkeley-db "db.h:${EPREFIX}/usr/include/db${SVN_BDB_VERSION}::db-${SVN_BDB_VERSION}") \ + $(use_with ctypes-python ctypesgen "${EPREFIX}/usr") \ + $(use_enable dso runtime-module-search) \ + $(use_with gnome-keyring) \ + $(use_enable java javahl) \ + $(use_with java jdk "${JAVA_HOME}") \ + $(use_with kde kwallet) \ + $(use_with sasl) \ + $(use_with webdav-neon neon) \ + $(use_with webdav-serf serf "${EPREFIX}/usr") \ + ${myconf} \ + --with-apr="${EPREFIX}/usr/bin/apr-1-config" \ + --with-apr-util="${EPREFIX}/usr/bin/apu-1-config" \ + --disable-experimental-libtool \ + --without-jikes \ + --disable-mod-activation \ + --disable-neon-version-check \ + --disable-static +} + +src_compile() { + emake local-all + + if use ctypes-python; then + # pre-generate .py files + use ctypes-python && emake ctypes-python + + pushd subversion/bindings/ctypes-python >/dev/null || die + distutils-r1_src_compile + popd >/dev/null || die + fi + + if use python; then + swig_py_compile() { + local p=subversion/bindings/swig/python + rm -f ${p} || die + ln -s "${BUILD_DIR}" ${p} || die + + python_export PYTHON_INCLUDEDIR + emake swig-py \ + swig_pydir="$(python_get_sitedir)/libsvn" \ + swig_pydir_extra="$(python_get_sitedir)/svn" + } + + # this will give us proper BUILD_DIR for symlinking + BUILD_DIR=python \ + python_foreach_impl swig_py_compile + fi + + if use perl; then + emake swig-pl + fi + + if use ruby; then + emake swig-rb + fi + + if use java; then + emake -j1 JAVAC_FLAGS="$(java-pkg_javac-args) -encoding iso8859-1" javahl + fi + + if use extras; then + emake tools + fi + + if use doc; then + doxygen doc/doxygen.conf || die "Building of Subversion HTML documentation failed" + + if use java; then + emake doc-javahl + fi + fi +} + +src_test() { + default + + if use ctypes-python; then + python_test() { + "${PYTHON}" subversion/bindings/ctypes-python/test/run_all.py \ + || die "ctypes-python tests fail with ${EPYTHON}" + } + + distutils-r1_src_test + fi + + if use python; then + swig_py_test() { + pushd "${BUILD_DIR}" >/dev/null || die + "${PYTHON}" tests/run_all.py || die "swig-py tests fail with ${EPYTHON}" + popd >/dev/null || die + } + + BUILD_DIR=subversion/bindings/swig/python \ + python_foreach_impl swig_py_test + fi +} + +src_install() { + emake -j1 DESTDIR="${D}" local-install + + if use ctypes-python; then + pushd subversion/bindings/ctypes-python >/dev/null || die + distutils-r1_src_install + popd >/dev/null || die + fi + + if use python; then + swig_py_install() { + local p=subversion/bindings/swig/python + rm -f ${p} || die + ln -s "${BUILD_DIR}" ${p} || die + + emake \ + DESTDIR="${D}" \ + swig_pydir="$(python_get_sitedir)/libsvn" \ + swig_pydir_extra="$(python_get_sitedir)/svn" \ + install-swig-py + } + + BUILD_DIR=python \ + python_foreach_impl swig_py_install + fi + + if use perl; then + emake DESTDIR="${D}" INSTALLDIRS="vendor" install-swig-pl + fixlocalpod + find "${ED}" "(" -name .packlist -o -name "*.bs" ")" -delete + fi + + if use ruby; then + emake DESTDIR="${D}" install-swig-rb + fi + + if use java; then + emake DESTDIR="${D}" install-javahl + java-pkg_regso "${ED}"usr/$(get_libdir)/libsvnjavahl*$(get_libname) + java-pkg_dojar "${ED}"usr/$(get_libdir)/svn-javahl/svn-javahl.jar + rm -fr "${ED}"usr/$(get_libdir)/svn-javahl/*.jar + fi + + # Install Apache module configuration. + if use apache2; then + keepdir "${APACHE_MODULES_CONFDIR}" + insinto "${APACHE_MODULES_CONFDIR}" + doins "${FILESDIR}/47_mod_dav_svn.conf" + fi + + # Install Bash Completion, bug 43179. + newbashcomp tools/client-side/bash_completion subversion + rm -f tools/client-side/bash_completion + + # Install hot backup script, bug 54304. + newbin tools/backup/hot-backup.py svn-hot-backup + rm -fr tools/backup + + # Install svnserve init-script and xinet.d snippet, bug 43245. + newinitd "${FILESDIR}"/svnserve.initd2 svnserve + newconfd "${FILESDIR}"/svnserve.confd svnserve + insinto /etc/xinetd.d + newins "${FILESDIR}"/svnserve.xinetd svnserve + + #adjust default user and group with disabled apache2 USE flag, bug 381385 + use apache2 || sed -e "s\USER:-apache\USER:-svn\g" \ + -e "s\GROUP:-apache\GROUP:-svnusers\g" \ + -i "${ED}"etc/init.d/svnserve || die + use apache2 || sed -e "0,/apache/s//svn/" \ + -e "s:apache:svnusers:" \ + -i "${ED}"etc/xinetd.d/svnserve || die + + # Install documentation. + dodoc CHANGES COMMITTERS README + dodoc tools/xslt/svnindex.{css,xsl} + rm -fr tools/xslt + + # Install extra files. + if use extras; then + cat << EOF > 80subversion-extras +PATH="${EPREFIX}/usr/$(get_libdir)/subversion/bin" +ROOTPATH="${EPREFIX}/usr/$(get_libdir)/subversion/bin" +EOF + doenvd 80subversion-extras + + emake DESTDIR="${D}" toolsdir="/usr/$(get_libdir)/subversion/bin" install-tools || die "Installation of tools failed" + + find tools "(" -name "*.bat" -o -name "*.in" -o -name ".libs" ")" -print0 | xargs -0 rm -fr + rm -fr tools/client-side/svnmucc + rm -fr tools/server-side/{svn-populate-node-origins-index,svnauthz-validate}* + rm -fr tools/{buildbot,dev,diff,po} + + insinto /usr/share/${PN} + find tools -name '*.py' -exec sed -i -e '1s:python:&2:' {} + || die + doins -r tools + fi + + if use doc; then + dohtml -r doc/doxygen/html/* + + if use java; then + java-pkg_dojavadoc doc/javadoc + fi + fi + + find "${ED}" '(' -name '*.la' ')' -print0 | xargs -0 rm -f + + cd "${ED}"usr/share/locale + for i in * ; do + [[ $i == *$LINGUAS* ]] || { rm -r $i || die ; } + done +} + +pkg_preinst() { + # Compare versions of Berkeley DB, bug 122877. + if use berkdb && [[ -f "${EROOT}usr/bin/svn" ]]; then + OLD_BDB_VERSION="$(scanelf -nq "${EROOT}usr/$(get_libdir)/libsvn_subr-1$(get_libname 0)" | grep -Eo "libdb-[[:digit:]]+\.[[:digit:]]+" | sed -e "s/libdb-\(.*\)/\1/")" + NEW_BDB_VERSION="$(scanelf -nq "${ED}usr/$(get_libdir)/libsvn_subr-1$(get_libname 0)" | grep -Eo "libdb-[[:digit:]]+\.[[:digit:]]+" | sed -e "s/libdb-\(.*\)/\1/")" + if [[ "${OLD_BDB_VERSION}" != "${NEW_BDB_VERSION}" ]]; then + CHANGED_BDB_VERSION="1" + fi + fi +} + +pkg_postinst() { + use perl && perl-module_pkg_postinst + + if [[ -n "${CHANGED_BDB_VERSION}" ]]; then + ewarn "You upgraded from an older version of Berkeley DB and may experience" + ewarn "problems with your repository. Run the following commands as root to fix it:" + ewarn " db4_recover -h ${SVN_REPOS_LOC}/repos" + ewarn " chown -Rf apache:apache ${SVN_REPOS_LOC}/repos" + fi + + ewarn "If you run subversion as a daemon, you will need to restart it to avoid module mismatches." +} + +pkg_postrm() { + use perl && perl-module_pkg_postrm +} + +pkg_config() { + # Remember: Don't use ${EROOT}${SVN_REPOS_LOC} since ${SVN_REPOS_LOC} + # already has EPREFIX in it + einfo "Initializing the database in ${SVN_REPOS_LOC}..." + if [[ -e "${SVN_REPOS_LOC}/repos" ]]; then + echo "A Subversion repository already exists and I will not overwrite it." + echo "Delete \"${SVN_REPOS_LOC}/repos\" first if you're sure you want to have a clean version." + else + mkdir -p "${SVN_REPOS_LOC}/conf" + + einfo "Populating repository directory..." + # Create initial repository. + "${EROOT}usr/bin/svnadmin" create "${SVN_REPOS_LOC}/repos" + + einfo "Setting repository permissions..." + SVNSERVE_USER="$(. "${EROOT}etc/conf.d/svnserve"; echo "${SVNSERVE_USER}")" + SVNSERVE_GROUP="$(. "${EROOT}etc/conf.d/svnserve"; echo "${SVNSERVE_GROUP}")" + if use apache2; then + [[ -z "${SVNSERVE_USER}" ]] && SVNSERVE_USER="apache" + [[ -z "${SVNSERVE_GROUP}" ]] && SVNSERVE_GROUP="apache" + else + [[ -z "${SVNSERVE_USER}" ]] && SVNSERVE_USER="svn" + [[ -z "${SVNSERVE_GROUP}" ]] && SVNSERVE_GROUP="svnusers" + fi + chmod -Rf go-rwx "${SVN_REPOS_LOC}/conf" + chmod -Rf o-rwx "${SVN_REPOS_LOC}/repos" + echo "Please create \"${SVNSERVE_GROUP}\" group if it does not exist yet." + echo "Afterwards please create \"${SVNSERVE_USER}\" user with homedir \"${SVN_REPOS_LOC}\"" + echo "and as part of the \"${SVNSERVE_GROUP}\" group if it does not exist yet." + echo "Finally, execute \"chown -Rf ${SVNSERVE_USER}:${SVNSERVE_GROUP} ${SVN_REPOS_LOC}/repos\"" + echo "to finish the configuration." + fi +} diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 74fb014c86a2..c50784625c1f 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.66 2013/04/01 09:17:53 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/distutils-r1.eclass,v 1.67 2013/04/10 15:38:59 mgorny Exp $ # @ECLASS: distutils-r1 # @MAINTAINER: @@ -223,14 +223,6 @@ esetup.py() { local add_args=() if [[ ${BUILD_DIR} ]]; then - # if setuptools is used, adjust egg_info path as well - # (disabled since it causes build not to install scripts) -# if "${PYTHON:-python}" setup.py --help egg_info &>/dev/null; then -# add_args+=( -# egg_info --egg-base "${BUILD_DIR}" -# ) -# fi - add_args+=( build --build-base "${BUILD_DIR}" @@ -248,6 +240,14 @@ esetup.py() { # make the ebuild writer lives easier --build-scripts "${BUILD_DIR}/scripts" ) + + # if setuptools is used, adjust egg_info path as well + # (disabled since it causes build not to install scripts) +# if "${PYTHON:-python}" setup.py --help egg_info &>/dev/null; then +# add_args+=( +# egg_info --egg-base "${BUILD_DIR}" +# ) +# fi elif [[ ! ${DISTUTILS_IN_SOURCE_BUILD} ]]; then die 'Out-of-source build requested, yet BUILD_DIR unset.' fi diff --git a/eclass/mozconfig-3.eclass b/eclass/mozconfig-3.eclass index c8b2ef608666..c5022afff14b 100644 --- a/eclass/mozconfig-3.eclass +++ b/eclass/mozconfig-3.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-3.eclass,v 1.35 2013/03/24 19:08:58 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-3.eclass,v 1.36 2013/04/10 02:33:48 anarchy Exp $ # # mozconfig.eclass: the new mozilla.eclass @@ -64,6 +64,9 @@ mozconfig_config() { mozconfig_use_enable dbus mozconfig_use_enable debug mozconfig_use_enable debug tests + if ! use debug ; then + mozconfig_annotate 'disabled by Gentoo' --disable-debug-symbols + fi mozconfig_use_enable startup-notification mozconfig_use_enable system-sqlite mozconfig_use_enable wifi necko-wifi diff --git a/eclass/nvidia-driver.eclass b/eclass/nvidia-driver.eclass index 52df60e66bbc..ead3856b920d 100644 --- a/eclass/nvidia-driver.eclass +++ b/eclass/nvidia-driver.eclass @@ -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/eclass/nvidia-driver.eclass,v 1.19 2013/04/08 06:44:05 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/nvidia-driver.eclass,v 1.21 2013/04/10 15:10:18 jer Exp $ # @ECLASS: nvidia-driver.eclass # @MAINTAINER: @@ -17,7 +17,7 @@ inherit versionator DEPEND="sys-apps/pciutils" # the data below is derived from -# http://us.download.nvidia.com/XFree86/Linux-x86_64/177.13/README/appendix-a.html +# http://us.download.nvidia.com/XFree86/Linux-x86_64/319.12/README/supportedchips.html drv_96xx="0110 0111 0112 0113 0170 0171 0172 0173 0174 0175 0176 0177 0178 \ 0179 017a 017c 017d 0181 0182 0183 0185 0188 018a 018b 018c 01a0 01f0 0200 \ @@ -35,11 +35,10 @@ drv_304x="0040 0041 0042 0043 0044 0045 0046 0047 0048 004e 0090 0091 0092 \ 00f2 00f3 00f4 00f5 00f6 00f8 00f9 0140 0141 0142 0143 0144 0145 0146 0147 \ 0148 0149 014a 014c 014d 014e 014f 0160 0161 0162 0163 0164 0165 0166 0167 \ 0168 0169 016a 01d0 01d1 01d2 01d3 01d6 01d7 01d8 01da 01db 01dc 01dd 01de \ -01de 01df 0211 0212 0215 0218 0221 0222 0240 0241 0242 0244 0245 0247 0290 \ -0291 0292 0293 0294 0295 0297 0298 0299 029a 029b 029c 029d 029e 029f 02e0 \ -02e1 02e2 02e3 02e4 038b 0390 0391 0392 0393 0394 0395 0397 0398 0399 039c \ -039e 03d0 03d1 03d2 03d5 03d6 0531 0533 053a 053b 053e 07e0 07e1 07e2 07e3 \ -07e5" +01df 0211 0212 0215 0218 0221 0222 0240 0241 0242 0244 0245 0247 0290 0291 \ +0292 0293 0294 0295 0297 0298 0299 029a 029b 029c 029d 029e 029f 02e0 02e1 \ +02e2 02e3 02e4 038b 0390 0391 0392 0393 0394 0395 0397 0398 0399 039c 039e \ +03d0 03d1 03d2 03d5 03d6 0531 0533 053a 053b 053e 07e0 07e1 07e2 07e3 07e5" mask_96xx=">=x11-drivers/nvidia-drivers-97.0.0" mask_71xx=">=x11-drivers/nvidia-drivers-72.0.0" diff --git a/eclass/pax-utils.eclass b/eclass/pax-utils.eclass index ced174b0808d..2044f68bfa09 100644 --- a/eclass/pax-utils.eclass +++ b/eclass/pax-utils.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/pax-utils.eclass,v 1.19 2013/04/05 02:08:36 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/pax-utils.eclass,v 1.20 2013/04/09 23:43:53 zorry Exp $ # @ECLASS: pax-utils.eclass # @MAINTAINER: @@ -29,8 +29,8 @@ ___ECLASS_ONCE_PAX_UTILS="recur -_+^+_- spank" # @DESCRIPTION: # Control which markings are made: # PT = PT_PAX markings, XT = XATTR_PAX markings -# Default to both PT and XT markings. -PAX_MARKINGS=${PAX_MARKINGS:="PT XT"} +# Default to PT markings. +PAX_MARKINGS=${PAX_MARKINGS:="PT"} # @FUNCTION: pax-mark # @USAGE: {} @@ -118,8 +118,8 @@ pax-mark() { fi if [[ ${pt_fail} == 1 ]]; then - ewarn "Failed to set PT_PAX markings -${flags} for:" - _pax_list_files ewarn ${pt_failures} + elog "Failed to set PT_PAX markings -${flags} for:" + _pax_list_files elog ${pt_failures} ret=1 fi fi @@ -159,13 +159,13 @@ pax-mark() { fi if [[ ${xt_fail} == 1 ]]; then - ewarn "Failed to set XATTR_PAX markings -${flags} for:" - _pax_list_files ewarn ${xt_failures} + elog "Failed to set XATTR_PAX markings -${flags} for:" + _pax_list_files elog ${xt_failures} ret=1 fi fi - [[ ${ret} == 1 ]] && ewarn "Executables may be killed by PaX kernels." + # [[ ${ret} == 1 ]] && elog "Executables may be killed by PaX kernels." return ${ret} } diff --git a/eclass/unpacker.eclass b/eclass/unpacker.eclass index 8c141dbed140..f8114713c655 100644 --- a/eclass/unpacker.eclass +++ b/eclass/unpacker.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/unpacker.eclass,v 1.12 2013/03/23 21:18:25 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/unpacker.eclass,v 1.13 2013/04/10 14:47:49 jer Exp $ # @ECLASS: unpacker.eclass # @MAINTAINER: @@ -178,7 +178,7 @@ unpack_makeself() { local skip=0 exe=tail case ${ver} in - 1.5.*|1.6.0-nv) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same + 1.5.*|1.6.0-nv*) # tested 1.5.{3,4,5} ... guessing 1.5.x series is same skip=$(grep -a ^skip= "${src}" | cut -d= -f2) ;; 2.0|2.0.1) @@ -234,6 +234,9 @@ unpack_makeself() { compress*) eval ${exe} | gunzip | tar --no-same-owner -xf - ;; + XZ*) + eval ${exe} | unxz | tar --no-same-owner -xf - + ;; *) eerror "Unknown filetype \"${filetype}\" ?" false diff --git a/games-puzzle/neverball/Manifest b/games-puzzle/neverball/Manifest index d3d80b83812b..daac0adbcf7d 100644 --- a/games-puzzle/neverball/Manifest +++ b/games-puzzle/neverball/Manifest @@ -1 +1 @@ -DIST neverball-1.5.4.tar.gz 26767623 RMD160 f546b5e6c12df1a125976a7e23fa55146480241d SHA1 619c227e1958bd60738f12dbbde9b30c91dd79a7 SHA256 ea31ca9f6eec70c8e66eaa20d7ce9e48295fdb077313b97637c503b16b7b0da6 +DIST neverball-1.5.4.tar.gz 26767623 SHA256 ea31ca9f6eec70c8e66eaa20d7ce9e48295fdb077313b97637c503b16b7b0da6 SHA512 ffc0473ea3882edb84f190aa696c2e5fa1a38ea50f73bc144a3b694fd80c71a8d9936aa34f8bbd096523493849d428928a6efd2650c6da4c9962e0355d3cb9c2 WHIRLPOOL c0e6731ee28eb8ac987d5ca98ecbd93fb7d091060e2da51c6fe69043f05fe7d5f8179e62183f946e40b2f734a8041ab35ae1fdd4024e5ff6e25ab8633853e1f4 diff --git a/games-puzzle/neverball/files/neverball-1.5.4-libpng.patch b/games-puzzle/neverball/files/neverball-1.5.4-libpng.patch new file mode 100644 index 000000000000..d7b224673186 --- /dev/null +++ b/games-puzzle/neverball/files/neverball-1.5.4-libpng.patch @@ -0,0 +1,21 @@ +Index: neverball-1.5.4/share/base_image.c +=================================================================== +--- neverball-1.5.4.orig/share/base_image.c ++++ neverball-1.5.4/share/base_image.c +@@ -15,6 +15,7 @@ + #include + #include + #include ++#include + #include + + #include "glext.h" +@@ -94,7 +95,7 @@ static void *image_load_png(const char * + default: longjmp(png_jmpbuf(readp), -1); + } + +- if (!(bytep = png_malloc(readp, h * png_sizeof(png_bytep)))) ++ if (!(bytep = png_malloc(readp, h * sizeof(png_bytep)))) + longjmp(png_jmpbuf(readp), -1); + + /* Allocate the final pixel buffer and read pixels there. */ diff --git a/games-puzzle/neverball/neverball-1.5.4.ebuild b/games-puzzle/neverball/neverball-1.5.4.ebuild index 7e264fcdca57..1b2f752e83f8 100644 --- a/games-puzzle/neverball/neverball-1.5.4.ebuild +++ b/games-puzzle/neverball/neverball-1.5.4.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/games-puzzle/neverball/neverball-1.5.4.ebuild,v 1.6 2012/02/14 19:33:14 tristan Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-puzzle/neverball/neverball-1.5.4.ebuild,v 1.7 2013/04/10 18:14:42 mr_bones_ Exp $ EAPI=2 inherit eutils games @@ -17,7 +17,7 @@ RESTRICT="test" RDEPEND="media-libs/libsdl[audio,joystick,opengl,video] media-libs/sdl-ttf - media-libs/libpng + media-libs/libpng:0 virtual/jpeg media-libs/libvorbis virtual/opengl @@ -39,7 +39,9 @@ src_prepare() { -e "/^MAPC_TARG/s/mapc/${PN}-mapc/" \ Makefile \ || die "sed failed" - epatch "${FILESDIR}"/${P}-underlink.patch + epatch \ + "${FILESDIR}"/${P}-underlink.patch \ + "${FILESDIR}"/${P}-libpng.patch } src_compile() { diff --git a/gnome-base/gnome-common/gnome-common-3.6.0.ebuild b/gnome-base/gnome-common/gnome-common-3.6.0.ebuild index 98df7e038a07..71005a0b3284 100644 --- a/gnome-base/gnome-common/gnome-common-3.6.0.ebuild +++ b/gnome-base/gnome-common/gnome-common-3.6.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-common/gnome-common-3.6.0.ebuild,v 1.11 2013/04/01 18:24:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-common/gnome-common-3.6.0.ebuild,v 1.12 2013/04/09 16:42:56 ago Exp $ EAPI="4" inherit gnome.org @@ -10,7 +10,7 @@ HOMEPAGE="http://git.gnome.org/browse/gnome-common" LICENSE="GPL-3" SLOT="3" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="" src_install() { diff --git a/gnome-base/gnome-menus/gnome-menus-2.30.5-r1.ebuild b/gnome-base/gnome-menus/gnome-menus-2.30.5-r1.ebuild index 645b6d69899a..a8a245f59990 100644 --- a/gnome-base/gnome-menus/gnome-menus-2.30.5-r1.ebuild +++ b/gnome-base/gnome-menus/gnome-menus-2.30.5-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/gnome-base/gnome-menus/gnome-menus-2.30.5-r1.ebuild,v 1.10 2013/04/01 18:24:35 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-menus/gnome-menus-2.30.5-r1.ebuild,v 1.11 2013/04/09 16:43:03 ago Exp $ EAPI="3" GCONF_DEBUG="no" @@ -16,7 +16,7 @@ HOMEPAGE="http://www.gnome.org" LICENSE="GPL-2+ LGPL-2+" SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" IUSE="debug +introspection python" RDEPEND=">=dev-libs/glib-2.18 diff --git a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.6.1.ebuild b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.6.1.ebuild index 0f592c2ee563..695109f9be04 100644 --- a/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.6.1.ebuild +++ b/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.6.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/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.6.1.ebuild,v 1.11 2013/04/01 18:24:37 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gsettings-desktop-schemas/gsettings-desktop-schemas-3.6.1.ebuild,v 1.12 2013/04/09 16:43:10 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://www.gnome.org/" LICENSE="LGPL-2.1+" SLOT="0" IUSE="+introspection" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris" RDEPEND=">=dev-libs/glib-2.31:2 introspection? ( >=dev-libs/gobject-introspection-1.31.0 )" diff --git a/gnome-base/gvfs/gvfs-1.12.3-r1.ebuild b/gnome-base/gvfs/gvfs-1.12.3-r1.ebuild index 80f43a743c22..13899e7db445 100644 --- a/gnome-base/gvfs/gvfs-1.12.3-r1.ebuild +++ b/gnome-base/gvfs/gvfs-1.12.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/gnome-base/gvfs/gvfs-1.12.3-r1.ebuild,v 1.12 2013/04/01 18:24:40 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/gvfs/gvfs-1.12.3-r1.ebuild,v 1.13 2013/04/09 16:43:17 ago Exp $ EAPI=5 GCONF_DEBUG=no @@ -14,7 +14,7 @@ HOMEPAGE="http://www.gnome.org" LICENSE="LGPL-2+" SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" DOCS="AUTHORS ChangeLog NEWS MAINTAINERS README TODO" # ChangeLog.pre-1.2 README.commits SRC_URI="${SRC_URI} diff --git a/gnome-base/librsvg/librsvg-2.36.4.ebuild b/gnome-base/librsvg/librsvg-2.36.4.ebuild index a0153921c4ad..3833dd72097d 100644 --- a/gnome-base/librsvg/librsvg-2.36.4.ebuild +++ b/gnome-base/librsvg/librsvg-2.36.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/gnome-base/librsvg/librsvg-2.36.4.ebuild,v 1.12 2013/04/01 18:24:42 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/librsvg/librsvg-2.36.4.ebuild,v 1.13 2013/04/09 16:43:23 ago Exp $ EAPI="4" GNOME2_LA_PUNT="yes" @@ -15,7 +15,7 @@ HOMEPAGE="https://live.gnome.org/LibRsvg" LICENSE="LGPL-2" SLOT="2" -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 ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +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 ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="+gtk +introspection tools vala" REQUIRED_USE="vala? ( introspection )" diff --git a/gnome-base/orbit/orbit-2.14.19-r2.ebuild b/gnome-base/orbit/orbit-2.14.19-r2.ebuild index 0d03adda02b3..911375ff30e0 100644 --- a/gnome-base/orbit/orbit-2.14.19-r2.ebuild +++ b/gnome-base/orbit/orbit-2.14.19-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/gnome-base/orbit/orbit-2.14.19-r2.ebuild,v 1.10 2013/04/01 18:24:44 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-base/orbit/orbit-2.14.19-r2.ebuild,v 1.11 2013/04/09 16:43:30 ago Exp $ EAPI="5" GCONF_DEBUG="yes" @@ -15,7 +15,7 @@ HOMEPAGE="http://projects.gnome.org/ORBit2/" LICENSE="GPL-2 LGPL-2" SLOT="2" -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="pic static-libs test" REQUIRED_USE="test? ( debug )" diff --git a/gnome-extra/docky/Manifest b/gnome-extra/docky/Manifest index 5aa05745adb7..bcd13cf6d94f 100644 --- a/gnome-extra/docky/Manifest +++ b/gnome-extra/docky/Manifest @@ -1,2 +1 @@ -DIST docky-2.1.3.tar.gz 1247975 SHA256 dd586465edf5c8612692eb02b0d275fbf42487e510a1d65d04c2a8379876e1c2 SHA512 416010d8e8a66f66fb18a59f94d2c7668a804f015eaecf7cdfb5891c8361648486a8ff673f9c7c339d37a31b6ada423a3c91becbf12546e80878837f3a400351 WHIRLPOOL ffcdea4396dafcc46a4f7d4d8af402fcbcb0d9d5565a0267d5cd6482ac5be06d612fd8b4ebaf7c2ff9c88d780c92df390cb8156966a87cc041a74def4bccad31 DIST docky-2.1.4.tar.xz 552196 SHA256 a353e4198fbfa2291fdd99629dceb1a4c911da3908a4f6f0670742e6e24eeabb SHA512 45d7159b4f449d6f520712bc4287d0d5d08b54984749e496b609421a33893ca20c2a09ed7d288f356b9b5d6c0cb60b4e596db0d94ebb1fcda53f39442ed0e515 WHIRLPOOL d9b8bf60c1b1968fa3733cea8d6c6d9226617ac8d5461a98d65b982620e03524e683a6a9c9d0e235d7b3af3ae4170bc867e9f1c1e19113af954f6eecede93264 diff --git a/gnome-extra/docky/docky-2.1.3.ebuild b/gnome-extra/docky/docky-2.1.3.ebuild deleted file mode 100644 index 6b2b0ebee0e3..000000000000 --- a/gnome-extra/docky/docky-2.1.3.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/gnome-extra/docky/docky-2.1.3.ebuild,v 1.5 2012/08/13 16:43:14 angelos Exp $ - -EAPI=3 -inherit eutils gnome2 mono - -DESCRIPTION="Elegant, powerful, clean dock" -HOMEPAGE="https://wiki.go-docky.com" -SRC_URI="http://launchpad.net/${PN}/2.1/${PV}/+download/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug nls" - -RDEPEND="dev-dotnet/dbus-sharp - dev-dotnet/dbus-sharp-glib - dev-dotnet/gconf-sharp - >=dev-dotnet/gio-sharp-0.2-r1 - dev-dotnet/glib-sharp - dev-dotnet/gnome-desktop-sharp - dev-dotnet/gnome-keyring-sharp - dev-dotnet/gtk-sharp - dev-dotnet/mono-addins[gtk] - dev-dotnet/notify-sharp - dev-dotnet/rsvg-sharp - dev-dotnet/wnck-sharp" - -DEPEND="${RDEPEND} - dev-util/intltool - virtual/pkgconfig" - -pkg_setup() { - G2CONF="${G2CONF} - --disable-dependency-tracking - --enable-release - $(use_enable nls)" - - DOCS="AUTHORS NEWS" -} diff --git a/gnome-extra/docky/docky-2.1.4.ebuild b/gnome-extra/docky/docky-2.1.4.ebuild index 118d765aff2d..ff221456bef1 100644 --- a/gnome-extra/docky/docky-2.1.4.ebuild +++ b/gnome-extra/docky/docky-2.1.4.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/gnome-extra/docky/docky-2.1.4.ebuild,v 1.4 2012/12/07 04:58:48 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/docky/docky-2.1.4.ebuild,v 1.5 2013/04/10 11:17:02 angelos Exp $ EAPI=4 -inherit eutils gnome2 mono +inherit autotools eutils gnome2 mono DESCRIPTION="Elegant, powerful, clean dock" HOMEPAGE="https://wiki.go-docky.com" @@ -37,3 +37,8 @@ pkg_setup() { DOCS="AUTHORS NEWS" } + +src_prepare() { + sed -i -e "/warnaserror/d" configure.ac || die + eautoreconf +} diff --git a/gnome-extra/gtkhtml/gtkhtml-4.6.4.ebuild b/gnome-extra/gtkhtml/gtkhtml-4.6.4.ebuild index 9284e23f58c9..e0476faa3d88 100644 --- a/gnome-extra/gtkhtml/gtkhtml-4.6.4.ebuild +++ b/gnome-extra/gtkhtml/gtkhtml-4.6.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/gnome-extra/gtkhtml/gtkhtml-4.6.4.ebuild,v 1.9 2013/04/01 18:24:47 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gtkhtml/gtkhtml-4.6.4.ebuild,v 1.10 2013/04/09 16:43:38 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://projects.gnome.org/evolution/" LICENSE="GPL-2+ LGPL-2+" SLOT="4.0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" IUSE="" # orbit is referenced in configure, but is not used anywhere else diff --git a/gnome-extra/gucharmap/gucharmap-3.6.1.ebuild b/gnome-extra/gucharmap/gucharmap-3.6.1.ebuild index d55951f74595..827a8dc992eb 100644 --- a/gnome-extra/gucharmap/gucharmap-3.6.1.ebuild +++ b/gnome-extra/gucharmap/gucharmap-3.6.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/gnome-extra/gucharmap/gucharmap-3.6.1.ebuild,v 1.14 2013/04/01 18:24:49 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gucharmap/gucharmap-3.6.1.ebuild,v 1.15 2013/04/09 16:43:45 ago Exp $ EAPI="5" GCONF_DEBUG="yes" @@ -15,7 +15,7 @@ HOMEPAGE="http://live.gnome.org/Gucharmap" LICENSE="GPL-3" SLOT="2.90" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd" IUSE="cjk +introspection test vala" REQUIRED_USE="vala? ( introspection )" diff --git a/gnome-extra/libgsf/libgsf-1.14.25.ebuild b/gnome-extra/libgsf/libgsf-1.14.25.ebuild index 647d83ff7f49..19a7efa13ae1 100644 --- a/gnome-extra/libgsf/libgsf-1.14.25.ebuild +++ b/gnome-extra/libgsf/libgsf-1.14.25.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-extra/libgsf/libgsf-1.14.25.ebuild,v 1.11 2013/04/01 18:24:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/libgsf/libgsf-1.14.25.ebuild,v 1.12 2013/04/09 16:43:51 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -14,7 +14,7 @@ HOMEPAGE="http://projects.gnome.org/libgsf/" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" IUSE="bzip2 gtk +introspection python" RDEPEND=">=dev-libs/glib-2.26:2 diff --git a/kde-base/jovie/files/jovie-4.10.1-speechd-0.8.patch b/kde-base/jovie/files/jovie-4.10.1-speechd-0.8.patch new file mode 100644 index 000000000000..743b4e2acc75 --- /dev/null +++ b/kde-base/jovie/files/jovie-4.10.1-speechd-0.8.patch @@ -0,0 +1,40 @@ +From e31b78b183c7c8a74f5bae8974e00daad5f581a3 Mon Sep 17 00:00:00 2001 +From: Sven-Hendrik Haase +Date: Thu, 4 Apr 2013 06:27:43 +0159 +Subject: [PATCH] Support for Speechd 0.8 in CMake + +Reviewed-by: Jeremy Whiting +BUG: 317758 +FIXED-IN: 4.10.3 +--- + cmake/FindSpeechd.cmake | 2 +- + jovie/CMakeLists.txt | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/cmake/FindSpeechd.cmake b/cmake/FindSpeechd.cmake +index cf78d32..0902cdd 100644 +--- a/cmake/FindSpeechd.cmake ++++ b/cmake/FindSpeechd.cmake +@@ -9,7 +9,7 @@ + # Redistribution and use is allowed according to the terms of the BSD license. + # For details see the accompanying COPYING-CMAKE-SCRIPTS file. + +-find_path(SPEECHD_INCLUDE_DIR libspeechd.h) ++find_path(SPEECHD_INCLUDE_DIR libspeechd.h PATH_SUFFIXES speech-dispatcher) + + find_library(SPEECHD_LIBRARIES NAMES speechd) + +diff --git a/jovie/CMakeLists.txt b/jovie/CMakeLists.txt +index bd9dcfc..f3191d4 100644 +--- a/jovie/CMakeLists.txt ++++ b/jovie/CMakeLists.txt +@@ -1,5 +1,5 @@ + +-include_directories( /usr/local/include ${CMAKE_SOURCE_DIR}/jovie/libkttsd ) ++include_directories( /usr/local/include ${CMAKE_SOURCE_DIR}/jovie/libkttsd ${SPEECHD_INCLUDE_DIR} ) + + add_definitions(-DKDE_DEFAULT_DEBUG_AREA=2400) + +-- +1.8.1.5 + diff --git a/kde-base/jovie/jovie-4.10.2.ebuild b/kde-base/jovie/jovie-4.10.2.ebuild index a2d4c4ab80c9..e5ebd501dae5 100644 --- a/kde-base/jovie/jovie-4.10.2.ebuild +++ b/kde-base/jovie/jovie-4.10.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/jovie/jovie-4.10.2.ebuild,v 1.1 2013/04/06 00:04:25 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-base/jovie/jovie-4.10.2.ebuild,v 1.2 2013/04/09 13:58:19 kensington Exp $ EAPI=5 @@ -15,3 +15,5 @@ DEPEND=" app-accessibility/speech-dispatcher " RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${PN}-4.10.1-speechd-0.8.patch" ) diff --git a/kde-base/kget/files/kget-4.10.1-delhome.patch b/kde-base/kget/files/kget-4.10.1-delhome.patch new file mode 100644 index 000000000000..8d1e3c12081e --- /dev/null +++ b/kde-base/kget/files/kget-4.10.1-delhome.patch @@ -0,0 +1,14 @@ +Backport of fix for Bug 464318 - kde-base/kget deletes home +(is in 4.10.2) + +--- branches/KDE/4.10/kdenetwork/kget/transfer-plugins/multisegmentkio/transfermultisegkio.cpp 2013/03/07 10:29:45 1343275 ++++ branches/KDE/4.10/kdenetwork/kget/transfer-plugins/multisegmentkio/transfermultisegkio.cpp 2013/03/07 10:33:10 1343276 +@@ -166,6 +166,8 @@ + if (change & Tc_FileName) { + QList urls = m_dataSourceFactory->mirrors().keys(); + QString filename = urls.first().fileName(); ++ if (filename.isEmpty()) ++ return; + foreach (const KUrl url, urls) { + if (filename != url.fileName()) + return; diff --git a/kde-base/kget/kget-4.10.1-r1.ebuild b/kde-base/kget/kget-4.10.1-r1.ebuild new file mode 100644 index 000000000000..10eac1538c7d --- /dev/null +++ b/kde-base/kget/kget-4.10.1-r1.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/kde-base/kget/kget-4.10.1-r1.ebuild,v 1.1 2013/04/10 15:08:42 dilfridge Exp $ + +EAPI=5 + +KDE_HANDBOOK="optional" +KMNAME="kdenetwork" +KDE_SCM="svn" +inherit kde4-meta + +DESCRIPTION="An advanced download manager for KDE" +KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux" +IUSE="debug bittorrent mms semantic-desktop sqlite webkit" + +RDEPEND=" + app-crypt/qca:2 + $(add_kdebase_dep kdelibs 'semantic-desktop=') + $(add_kdebase_dep kdepimlibs) + $(add_kdebase_dep libkonq) + $(add_kdebase_dep libkworkspace) + $(add_kdebase_dep solid) + bittorrent? ( >=net-libs/libktorrent-1.0.3 ) + mms? ( media-libs/libmms ) + sqlite? ( dev-db/sqlite:3 ) + webkit? ( >=kde-misc/kwebkitpart-0.9.6 ) +" +DEPEND="${RDEPEND} + dev-libs/boost +" + +PATCHES=( "${FILESDIR}/${P}-delhome.patch" ) + +src_configure() { + mycmakeargs=( + $(cmake-utils_use_with bittorrent KTorrent) + $(cmake-utils_use_with mms LibMms) + $(cmake-utils_use_with semantic-desktop Nepomuk) + $(cmake-utils_use_with semantic-desktop Soprano) + $(cmake-utils_use_with sqlite) + $(cmake-utils_use_with webkit KWebKitPart) + ) + kde4-meta_src_configure +} diff --git a/kde-misc/kde-gtk-config/kde-gtk-config-2.1.1.ebuild b/kde-misc/kde-gtk-config/kde-gtk-config-2.1.1.ebuild index 2c00e50dd9be..e32ef510b6aa 100644 --- a/kde-misc/kde-gtk-config/kde-gtk-config-2.1.1.ebuild +++ b/kde-misc/kde-gtk-config/kde-gtk-config-2.1.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/kde-misc/kde-gtk-config/kde-gtk-config-2.1.1.ebuild,v 1.9 2013/02/23 17:24:56 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kde-gtk-config/kde-gtk-config-2.1.1.ebuild,v 1.10 2013/04/09 18:31:12 ago Exp $ EAPI=4 @@ -13,7 +13,7 @@ HOMEPAGE="http://projects.kde.org/kde-gtk-config" SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2" LICENSE="GPL-3" -KEYWORDS="amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd" +KEYWORDS="amd64 ~arm ppc ppc64 x86 ~x86-fbsd" SLOT="4" IUSE="debug" diff --git a/kde-misc/kwebkitpart/kwebkitpart-1.3.1.ebuild b/kde-misc/kwebkitpart/kwebkitpart-1.3.1.ebuild index a7fa7bd13f7e..0ff7c539a38b 100644 --- a/kde-misc/kwebkitpart/kwebkitpart-1.3.1.ebuild +++ b/kde-misc/kwebkitpart/kwebkitpart-1.3.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/kde-misc/kwebkitpart/kwebkitpart-1.3.1.ebuild,v 1.7 2013/02/23 17:25:12 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/kwebkitpart/kwebkitpart-1.3.1.ebuild,v 1.8 2013/04/09 18:29:42 ago Exp $ EAPI=4 @@ -12,6 +12,6 @@ HOMEPAGE="https://projects.kde.org/projects/extragear/base/kwebkitpart" SRC_URI="http://dev.gentoo.org/~johu/distfiles/${P}.tar.xz" LICENSE="LGPL-2" -KEYWORDS="amd64 ~arm ppc ~ppc64 x86" +KEYWORDS="amd64 ~arm ppc ppc64 x86" SLOT="4" IUSE="debug" diff --git a/kde-misc/networkmanagement/Manifest b/kde-misc/networkmanagement/Manifest index 5bf64032d612..29a062bdefa6 100644 --- a/kde-misc/networkmanagement/Manifest +++ b/kde-misc/networkmanagement/Manifest @@ -1,3 +1,2 @@ -DIST networkmanagement-0.9.0.6.tar.bz2 1328455 SHA256 13fd521abd065117b6bd8091b038d0a7f1270defc24ac501fce54f9c491a4a23 SHA512 fc90f2aabbda9fc54a81fbe5d469be8ff834e70ad58aac4b3535f1fd0451b50bca57136d5307028e7ff493b0908e9f75a996205031da0b8c6c8c3c3d4a480eee WHIRLPOOL 8a73df4de75bc6f845ec23b861bdc8ee30fe4d7c37948ad232143767118d9bed49422ce2288728670345cfc5e60f32f15cf1a5cde1ddc3bf65e8d5458bd011cd DIST networkmanagement-0.9.0.7.tar.bz2 1417554 SHA256 926e9bbbc848219ea6314cc84325216397732c8ad1b94ba41b5c9e53b54773b2 SHA512 9173ad2ff9867b478a2d77fa016b8a556ba8d615638e5967575021adb89dce5a014661eb164fecc272c58ed6a53aaa52bbdf7778d26f2be0743dd4564df4ea32 WHIRLPOOL 7348258faff71da2fe23d23735c108bfe324cc727ed00d542b949b578f017eaca4322c67305f813143cab4e4ace1d6183cdb5a9d80d2a5fe95d9c310b39ca544 DIST networkmanagement-0.9.0.8.tar.bz2 1459535 SHA256 c3b4458faf3bea75c5952ffe20b55724246c9cc3cd751a484b3e1832240d3ad6 SHA512 0b015cf42dba61b0726a896070085d8aab95ae9f14c2cece0afe14fb0a660d1b7d9e292aad56afb8db69499965fd055d3627aa835cc809519fc4c41ae9a6b839 WHIRLPOOL 4b403ff88a0493674169364c272a117d5bf23341241b73bfe3645ec2826bda67f362041facd90b67ac873ec2dec6f5b276c1d3a2011fcf7985f9ccbc1fe4af79 diff --git a/kde-misc/networkmanagement/networkmanagement-0.9.0.6.ebuild b/kde-misc/networkmanagement/networkmanagement-0.9.0.6.ebuild deleted file mode 100644 index 86aaa76a25f8..000000000000 --- a/kde-misc/networkmanagement/networkmanagement-0.9.0.6.ebuild +++ /dev/null @@ -1,26 +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/networkmanagement/networkmanagement-0.9.0.6.ebuild,v 1.4 2013/01/27 16:16:11 ago Exp $ - -EAPI=5 - -KDE_LINGUAS="ar ca cs da de el es et fa fi fr ga hu it ja kk km lt nb nds nl nn pl -pt pt_BR ro ru se sk sr sr@ijekavian sr@ijekavianlatin sr@latin sv tr uk zh_TW" -KDE_SCM="git" -inherit kde4-base - -DESCRIPTION="KDE frontend for NetworkManager" -HOMEPAGE="http://www.kde.org/" -[[ ${PV} = 9999* ]] || SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${P}.tar.bz2" - -LICENSE="GPL-2 LGPL-2" -KEYWORDS="amd64 x86" -SLOT="4" -IUSE="debug" - -DEPEND=" - $(add_kdebase_dep solid) - net-misc/mobile-broadband-provider-info - >=net-misc/networkmanager-0.9.0 -" -RDEPEND="${DEPEND}" diff --git a/kde-misc/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917-r1.ebuild b/kde-misc/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917-r1.ebuild index f37430f53bc1..1414b7cfeec7 100644 --- a/kde-misc/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917-r1.ebuild +++ b/kde-misc/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917-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/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917-r1.ebuild,v 1.6 2013/04/01 13:10:29 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/kde-misc/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917-r1.ebuild,v 1.7 2013/04/09 16:39:08 ago Exp $ EAPI=4 @@ -11,7 +11,7 @@ HOMEPAGE="http://www.kde.org" SRC_URI="http://dev.gentoo.org/~johu/distfiles/${P}.tar.xz" LICENSE="GPL-2" -KEYWORDS="amd64 ~arm ppc ~ppc64 x86" +KEYWORDS="amd64 ~arm ppc ppc64 x86" SLOT="4" IUSE="debug" diff --git a/kde-misc/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917.ebuild b/kde-misc/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917.ebuild deleted file mode 100644 index c2540833c0dd..000000000000 --- a/kde-misc/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917.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/kde-misc/polkit-kde-kcmodules/polkit-kde-kcmodules-0.98_pre20120917.ebuild,v 1.5 2013/01/11 13:09:45 ago Exp $ - -EAPI=4 - -inherit kde4-base - -DESCRIPTION="PolKit agent module for KDE." -HOMEPAGE="http://www.kde.org" -SRC_URI="http://dev.gentoo.org/~johu/distfiles/${P}.tar.xz" - -LICENSE="GPL-2" -KEYWORDS="amd64 ~arm ppc x86" -SLOT="4" -IUSE="debug" - -DEPEND=" - >=sys-auth/polkit-kde-agent-0.99 - >=sys-auth/polkit-qt-0.103 -" -RDEPEND="${DEPEND}" - -S="${WORKDIR}" diff --git a/licenses/LambdaMOO b/licenses/LambdaMOO new file mode 100644 index 000000000000..c930825d331c --- /dev/null +++ b/licenses/LambdaMOO @@ -0,0 +1,14 @@ +Copyright (c) 1992, 1995, 1996 Xerox Corporation. All rights reserved. +Portions of this code were written by Stephen White, aka ghond. +Use and copying of this software and preparation of derivative works based +upon this software are permitted. Any distribution of this software or +derivative works must comply with all applicable United States export +control laws. This software is made available AS IS, and Xerox Corporation +makes no warranty about the software, its performance or its conformity to +any specification. Any person obtaining a copy of this software is requested +to send their name and post office or electronic mail address to: + Pavel Curtis + Xerox PARC + 3333 Coyote Hill Rd. + Palo Alto, CA 94304 + Pavel@Xerox.Com diff --git a/mail-client/thunderbird-bin/thunderbird-bin-17.0.5.ebuild b/mail-client/thunderbird-bin/thunderbird-bin-17.0.5.ebuild index d4499ae04de5..e91adc8695f1 100644 --- a/mail-client/thunderbird-bin/thunderbird-bin-17.0.5.ebuild +++ b/mail-client/thunderbird-bin/thunderbird-bin-17.0.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/mail-client/thunderbird-bin/thunderbird-bin-17.0.5.ebuild,v 1.1 2013/04/03 00:28:47 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird-bin/thunderbird-bin-17.0.5.ebuild,v 1.3 2013/04/09 16:06:31 ago Exp $ EAPI="4" MOZ_ESR="1" @@ -35,7 +35,7 @@ SRC_URI="${SRC_URI} HOMEPAGE="http://www.mozilla.com/thunderbird" RESTRICT="strip mirror binchecks" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="-* amd64 x86" SLOT="0" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" IUSE="+crashreporter" diff --git a/mail-client/thunderbird/thunderbird-17.0.5.ebuild b/mail-client/thunderbird/thunderbird-17.0.5.ebuild index 080fbaab2bb1..4429e38c5dfa 100644 --- a/mail-client/thunderbird/thunderbird-17.0.5.ebuild +++ b/mail-client/thunderbird/thunderbird-17.0.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/mail-client/thunderbird/thunderbird-17.0.5.ebuild,v 1.1 2013/04/05 09:30:16 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-client/thunderbird/thunderbird-17.0.5.ebuild,v 1.3 2013/04/09 16:06:17 ago Exp $ EAPI="3" WANT_AUTOCONF="2.1" @@ -31,7 +31,7 @@ inherit flag-o-matic toolchain-funcs mozconfig-3 makeedit multilib autotools pax DESCRIPTION="Thunderbird Mail Client" HOMEPAGE="http://www.mozilla.com/en-US/thunderbird/" -KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux" SLOT="0" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" IUSE="bindist gconf +crypt +jit +ipc ldap +lightning +minimal mozdom selinux" diff --git a/mail-filter/imapfilter/Manifest b/mail-filter/imapfilter/Manifest index 0e05d7a4010c..4e742acd9340 100644 --- a/mail-filter/imapfilter/Manifest +++ b/mail-filter/imapfilter/Manifest @@ -1,2 +1,3 @@ DIST imapfilter-2.5.2.tar.gz 52594 SHA256 7b1069decba2002a5840942dff27d7cf3d3245e5f22617026431d3086ae6bc5a SHA512 c21d32da73430571016ba59939ec1faa9287e0117c0a4086267bb7b94a2f15ad1e8d7b66b8b35af52a60583a1fabc7e06c8e28126b46afae8dcd46ea95ad67e1 WHIRLPOOL c97dd0f562b8952aa944a6a633d8344321ef13f8f3ceed1520534ac4455155a96044fca0cfb8d1e88c3ef39d9fa4252712fcd20c5c1e9d0f076caaea75f01480 DIST imapfilter-2.5.3.tar.gz 52413 SHA256 435239cf11ba4b8c3a1878fd7b3aae8f47a63bff3a899f6029fa03f7a4aa3773 SHA512 a816fa6f48bd81ad83fc2ec576a98703568ff42e1a2915a80798c02a6f0f447cf45c1b4286583bad36ad67aa7c6d8dbc0654af47ef58fa6ae335f1ff66cc2e60 WHIRLPOOL aba10edff4b613f6da9f67f68e0c7eaad641f68bbd8e875bb5f2c96fe8baffa12963d9f45c251099992211f6b83edebd598556ffbfed367a601e8d2dc860bd57 +DIST imapfilter-2.5.4.tar.gz 52585 SHA256 e5a9ee0e57e16d02ff2cbb37b67202a514121d2eb7fc63863174644ca8248769 SHA512 33d8cc822a4ccd02ede6df7f30b5d2893088b352b9d1900df6597fd6443ae51ceb9ff22cd0100f9ec9e28dc84ac294bb717e0a85c4670677dfb09b5e5da76915 WHIRLPOOL 773e73fdae4b7b8f70f22d968f97d383eab444dcd8f39d417b2893408b94fc46be39fc4808e82d38c5e244ac21258a9faedeb0b564f07c9056e3c9f471146703 diff --git a/mail-filter/imapfilter/imapfilter-2.5.4.ebuild b/mail-filter/imapfilter/imapfilter-2.5.4.ebuild new file mode 100644 index 000000000000..0a19c114d462 --- /dev/null +++ b/mail-filter/imapfilter/imapfilter-2.5.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/mail-filter/imapfilter/imapfilter-2.5.4.ebuild,v 1.1 2013/04/10 04:02:26 radhermit Exp $ + +EAPI=5 + +inherit toolchain-funcs + +DESCRIPTION="An IMAP mail filtering utility" +HOMEPAGE="http://imapfilter.hellug.gr" +SRC_URI="https://github.com/lefcha/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" + +RDEPEND="dev-libs/openssl + dev-libs/libpcre + >=dev-lang/lua-5.1" +DEPEND="${RDEPEND}" + +DOCS="AUTHORS NEWS README samples/*" + +src_prepare() { + sed -i -e "/^PREFIX/s:/local::" \ + -e "/^MANDIR/s:man:share/man:" \ + -e "/^CFLAGS/s:CFLAGS =:CFLAGS +=:" \ + -e "/^CFLAGS/s/-O//" \ + src/Makefile || die +} + +src_compile() { + emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" +} + +src_install() { + default + doman doc/imapfilter.1 doc/imapfilter_config.5 +} diff --git a/mail-mta/postfix/postfix-2.10.0.ebuild b/mail-mta/postfix/postfix-2.10.0.ebuild index eec93a20bd25..e8707e4510bf 100644 --- a/mail-mta/postfix/postfix-2.10.0.ebuild +++ b/mail-mta/postfix/postfix-2.10.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/mail-mta/postfix/postfix-2.10.0.ebuild,v 1.3 2013/02/28 17:53:43 zx2c4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/mail-mta/postfix/postfix-2.10.0.ebuild,v 1.6 2013/04/10 17:03:01 jer Exp $ EAPI=5 inherit eutils multilib ssl-cert toolchain-funcs flag-o-matic pam user versionator @@ -19,7 +19,7 @@ SRC_URI="${MY_URI}/${MY_SRC}.tar.gz LICENSE="IBM" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd" IUSE="+berkdb cdb doc dovecot-sasl hardened ldap ldap-bind memcached mbox mysql nis pam postgres sasl selinux sqlite ssl vda" DEPEND=">=dev-libs/libpcre-3.4 diff --git a/media-fonts/cantarell/cantarell-0.0.12.ebuild b/media-fonts/cantarell/cantarell-0.0.12.ebuild index da7465e794b2..b48203b11c8e 100644 --- a/media-fonts/cantarell/cantarell-0.0.12.ebuild +++ b/media-fonts/cantarell/cantarell-0.0.12.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-fonts/cantarell/cantarell-0.0.12.ebuild,v 1.9 2013/04/01 18:25:02 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-fonts/cantarell/cantarell-0.0.12.ebuild,v 1.10 2013/04/09 16:43:58 ago Exp $ EAPI="5" GNOME_ORG_MODULE="${PN}-fonts" @@ -12,7 +12,7 @@ HOMEPAGE="https://live.gnome.org/CantarellFonts" LICENSE="OFL-1.1" SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd" IUSE="" RDEPEND="media-libs/fontconfig" diff --git a/media-gfx/darktable/Manifest b/media-gfx/darktable/Manifest index cad834259c8b..242d9968f690 100644 --- a/media-gfx/darktable/Manifest +++ b/media-gfx/darktable/Manifest @@ -1,5 +1,3 @@ -DIST darktable-1.1.2.tar.gz 3432009 SHA256 225ebf1bd2ca4cf06aa609f2eda55cb0894ae69bdf4db25fd97b2503c28e1765 SHA512 d4c9edd0e0a6962776e38dbcb58ebcad806f745c5a4938052df0e52cad242318bdb9d747b060b76cafb6c549198506af6e1c71956681c0afbbd2bb1fef609584 WHIRLPOOL e24b23b87e129c7cfad7b20fda96bf683d90458b477c28c2e8e75e7defad9388878f4dfc4340c5a0c6f1eb80e924343bb349817a0704362cd2a9644cdde04d81 -DIST darktable-1.1.3.tar.xz 2226896 SHA256 d9d26f3ca1ae8f833f00f12b3e927cdc807cd3662c5ea8d1c0c55fe4555cfaf9 SHA512 9521a8635375c470080089f1658fe7936d57dbc61bf6f3f54bbbae243fec2ca51b9c8d2cad868747d93f0a9fef6eeb1865fa0e0d2b5a613404c20e57ffb45735 WHIRLPOOL 87d8a96174b4bae94c7d3f5e91864cefeaa903b7420840c4d6ed3afbb1b7ebebdecfd7765dea9952888e18bc3f0060de4aea962feaf786247ef2da452112dd13 DIST darktable-1.1.4.tar.xz 2231272 SHA256 fb6bc7d5a672b1b493921e80aae8cff2a94e66da7acee9e2cdbd83fa11ececaf SHA512 6ab94c4d49697fc32727ab6f62a37ea56b40968e29a737863640b486054116e21596c440432a81e41368957d9b2eca34ff466b1e0ba494091f4fee97c6350b80 WHIRLPOOL 2813334c4f5e84adf7917e63c4342532fbcb97630885e49957aba017365db516ceda4278eb7d873bcf45f1353bf9b523d178c1bbf913be7910b1ce9081266a21 DIST darktable-1.2.tar.xz 2399856 SHA256 dc52582b5c5dfbd22e936f1d441e192a4aa53ac6533fe2c53aaa59433ccd5450 SHA512 3a0e10bfeeade0225c7f07a0419a7c7f6f99d6e6a81618e63edf42a00ba3ffa1699c221ade61626f2a1c49e66d275b4351f6dcdb4db8786e6d28b36b68c5758e WHIRLPOOL dc45e15927f015e6c6fcd1e277d46cdeb6efcf5d3eb8b3cf25ccb4a9448f55774022fc1ac1d613251c957a337438c7f7abd1fda53d1ae10d79575f44bb6c9b08 DIST darktable-usermanual-1.1.2.pdf 8513151 SHA256 a33d4e7bb87c8d7f748f99badb12bd923ba798d205bbddbac85a648d6c9d866f SHA512 1e2b22fc8fb4db7b99dfc8b228310951b04d52a42781f8f83f96ce2e86b24ddc1d3075b246a4d9e73f566a0b57999582daf40f04fd166ab979f8abebe6582275 WHIRLPOOL 5c9733bc155e93fc6c475f93af7246a7123a9257e4ffe1da057845a7d2d9bd4c29a5d61ea172acdb7739abb466c7325502d73b72cbe03d7f4553118bfee5c6f2 diff --git a/media-gfx/darktable/darktable-1.1.2-r1.ebuild b/media-gfx/darktable/darktable-1.1.2-r1.ebuild deleted file mode 100644 index 5a05d26248fc..000000000000 --- a/media-gfx/darktable/darktable-1.1.2-r1.ebuild +++ /dev/null @@ -1,116 +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/darktable/darktable-1.1.2-r1.ebuild,v 1.2 2013/02/07 22:25:40 ulm Exp $ - -EAPI="5" - -inherit cmake-utils toolchain-funcs gnome2-utils fdo-mime pax-utils eutils - -DESCRIPTION="A virtual lighttable and darkroom for photographers" -HOMEPAGE="http://www.darktable.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz - doc? ( mirror://sourceforge/${PN}/${PN}-usermanual-${PV}.pdf )" - -LICENSE="GPL-3 CC-BY-3.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="colord doc facebook flickr geo gnome-keyring gphoto2 kde -nls opencl openmp pax_kernel +rawspeed +slideshow" - -RDEPEND=" - dev-db/sqlite:3 - dev-libs/libxml2:2 - colord? ( x11-misc/colord ) - facebook? ( dev-libs/json-glib ) - flickr? ( media-libs/flickcurl ) - geo? ( net-libs/libsoup:2.4 ) - gnome-keyring? ( gnome-base/gnome-keyring ) - gnome-base/librsvg:2 - gphoto2? ( media-libs/libgphoto2 ) - kde? ( - dev-libs/dbus-glib - kde-base/kwalletd - ) - media-gfx/exiv2[xmp] - media-libs/lcms:2 - >=media-libs/lensfun-0.2.3 - media-libs/libpng - media-libs/openexr - media-libs/tiff - net-misc/curl - opencl? ( virtual/opencl ) - slideshow? ( - media-libs/libsdl - virtual/glu - virtual/opengl - ) - virtual/jpeg - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:2" -DEPEND="${RDEPEND} - virtual/pkgconfig - nls? ( sys-devel/gettext )" - -pkg_pretend() { - if use openmp ; then - tc-has-openmp || die "Please switch to an openmp compatible compiler" - fi -} - -src_prepare() { - sed -e "s:\(/share/doc/\)darktable:\1${PF}:" \ - -e "s:LICENSE::" \ - -i doc/CMakeLists.txt || die - - epatch_user -} - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_use colord COLORD) - $(cmake-utils_use_use facebook GLIBJSON) - $(cmake-utils_use_use flickr FLICKR) - $(cmake-utils_use_use geo GEO) - $(cmake-utils_use_use gnome-keyring GNOME_KEYRING) - $(cmake-utils_use_use gphoto2 CAMERA_SUPPORT) - $(cmake-utils_use_use kde KWALLET) - $(cmake-utils_use_use nls NLS) - $(cmake-utils_use_use opencl OPENCL) - $(cmake-utils_use_use openmp OPENMP) - $(cmake-utils_use !rawspeed DONT_USE_RAWSPEED) - $(cmake-utils_use_build slideshow SLIDESHOW) - -DCUSTOM_CFLAGS=ON - -DINSTALL_IOP_EXPERIMENTAL=ON - -DINSTALL_IOP_LEGACY=ON - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - use doc && dodoc "${DISTDIR}"/${PN}-usermanual-${PV}.pdf - - if use pax_kernel && use opencl ; then - pax-mark Cm "${ED}"/usr/bin/${PN} || die - eqawarn "USE=pax_kernel is set meaning that ${PN} will be run" - eqawarn "under a PaX enabled kernel. To do so, the ${PN} binary" - eqawarn "must be modified and this *may* lead to breakage! If" - eqawarn "you suspect that ${PN} is broken by this modification," - eqawarn "please open a bug." - fi -} - -pkg_preinst() { - gnome2_icon_savelist -} - -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/media-gfx/darktable/darktable-1.1.3.ebuild b/media-gfx/darktable/darktable-1.1.3.ebuild deleted file mode 100644 index cde865758403..000000000000 --- a/media-gfx/darktable/darktable-1.1.3.ebuild +++ /dev/null @@ -1,118 +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/darktable/darktable-1.1.3.ebuild,v 1.2 2013/02/09 22:28:59 radhermit Exp $ - -EAPI="5" - -inherit cmake-utils toolchain-funcs gnome2-utils fdo-mime pax-utils eutils - -DESCRIPTION="A virtual lighttable and darkroom for photographers" -HOMEPAGE="http://www.darktable.org/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz - doc? ( mirror://sourceforge/${PN}/${PN}-usermanual-1.1.2.pdf )" - -LICENSE="GPL-3 CC-BY-3.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="colord doc facebook flickr geo gnome-keyring gphoto2 kde -nls opencl openmp pax_kernel +rawspeed +slideshow" - -RDEPEND=" - dev-db/sqlite:3 - >=dev-libs/glib-2.28:2 - dev-libs/libxml2:2 - colord? ( x11-misc/colord ) - facebook? ( dev-libs/json-glib ) - flickr? ( media-libs/flickcurl ) - geo? ( net-libs/libsoup:2.4 ) - gnome-keyring? ( gnome-base/gnome-keyring ) - gnome-base/librsvg:2 - gphoto2? ( media-libs/libgphoto2 ) - kde? ( - dev-libs/dbus-glib - kde-base/kwalletd - ) - media-gfx/exiv2[xmp] - media-libs/lcms:2 - >=media-libs/lensfun-0.2.3 - media-libs/libpng:0 - media-libs/openexr - media-libs/tiff:0 - net-misc/curl - opencl? ( virtual/opencl ) - slideshow? ( - media-libs/libsdl - virtual/glu - virtual/opengl - ) - virtual/jpeg - x11-libs/cairo - x11-libs/gdk-pixbuf:2 - x11-libs/gtk+:2 - x11-libs/pango" -DEPEND="${RDEPEND} - virtual/pkgconfig - nls? ( sys-devel/gettext )" - -pkg_pretend() { - if use openmp ; then - tc-has-openmp || die "Please switch to an openmp compatible compiler" - fi -} - -src_prepare() { - sed -e "s:\(/share/doc/\)darktable:\1${PF}:" \ - -e "s:LICENSE::" \ - -i doc/CMakeLists.txt || die - - epatch_user -} - -src_configure() { - local mycmakeargs=( - $(cmake-utils_use_use colord COLORD) - $(cmake-utils_use_use facebook GLIBJSON) - $(cmake-utils_use_use flickr FLICKR) - $(cmake-utils_use_use geo GEO) - $(cmake-utils_use_use gnome-keyring GNOME_KEYRING) - $(cmake-utils_use_use gphoto2 CAMERA_SUPPORT) - $(cmake-utils_use_use kde KWALLET) - $(cmake-utils_use_use nls NLS) - $(cmake-utils_use_use opencl OPENCL) - $(cmake-utils_use_use openmp OPENMP) - $(cmake-utils_use !rawspeed DONT_USE_RAWSPEED) - $(cmake-utils_use_build slideshow SLIDESHOW) - -DCUSTOM_CFLAGS=ON - -DINSTALL_IOP_EXPERIMENTAL=ON - -DINSTALL_IOP_LEGACY=ON - ) - cmake-utils_src_configure -} - -src_install() { - cmake-utils_src_install - use doc && dodoc "${DISTDIR}"/${PN}-usermanual-1.1.2.pdf - - if use pax_kernel && use opencl ; then - pax-mark Cm "${ED}"/usr/bin/${PN} || die - eqawarn "USE=pax_kernel is set meaning that ${PN} will be run" - eqawarn "under a PaX enabled kernel. To do so, the ${PN} binary" - eqawarn "must be modified and this *may* lead to breakage! If" - eqawarn "you suspect that ${PN} is broken by this modification," - eqawarn "please open a bug." - fi -} - -pkg_preinst() { - gnome2_icon_savelist -} - -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/media-gfx/darktable/darktable-1.2.ebuild b/media-gfx/darktable/darktable-1.2-r1.ebuild similarity index 91% rename from media-gfx/darktable/darktable-1.2.ebuild rename to media-gfx/darktable/darktable-1.2-r1.ebuild index 43a165751378..6ad84d5b0d2c 100644 --- a/media-gfx/darktable/darktable-1.2.ebuild +++ b/media-gfx/darktable/darktable-1.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/media-gfx/darktable/darktable-1.2.ebuild,v 1.1 2013/04/08 01:09:44 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/darktable/darktable-1.2-r1.ebuild,v 1.1 2013/04/08 17:03:38 radhermit Exp $ EAPI=5 @@ -14,15 +14,14 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz LICENSE="GPL-3 CC-BY-3.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="colord doc facebook flickr geo gnome-keyring gphoto2 graphicsmagick -jpeg2k kde nls opencl openmp pax_kernel +rawspeed +slideshow" +IUSE="colord doc flickr geo gnome-keyring gphoto2 graphicsmagick +jpeg2k kde nls opencl openmp pax_kernel +rawspeed +slideshow web-services" CDEPEND=" dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) - facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) @@ -44,6 +43,7 @@ CDEPEND=" virtual/opengl ) virtual/jpeg + web-services? ( dev-libs/json-glib ) x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 @@ -71,7 +71,6 @@ src_prepare() { src_configure() { local mycmakeargs=( $(cmake-utils_use_use colord COLORD) - $(cmake-utils_use_use facebook GLIBJSON) $(cmake-utils_use_use flickr FLICKR) $(cmake-utils_use_use geo GEO) $(cmake-utils_use_use gnome-keyring GNOME_KEYRING) @@ -83,6 +82,7 @@ src_configure() { $(cmake-utils_use_use openmp OPENMP) $(cmake-utils_use !rawspeed DONT_USE_RAWSPEED) $(cmake-utils_use_build slideshow SLIDESHOW) + $(cmake-utils_use_use web-services GLIBJSON) -DCUSTOM_CFLAGS=ON -DINSTALL_IOP_EXPERIMENTAL=ON -DINSTALL_IOP_LEGACY=ON diff --git a/media-gfx/darktable/darktable-9999.ebuild b/media-gfx/darktable/darktable-9999.ebuild index 98015192fc8d..edc08d6d7bf8 100644 --- a/media-gfx/darktable/darktable-9999.ebuild +++ b/media-gfx/darktable/darktable-9999.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/darktable/darktable-9999.ebuild,v 1.7 2013/02/09 21:15:34 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/darktable/darktable-9999.ebuild,v 1.8 2013/04/08 17:03:38 radhermit Exp $ -EAPI="5" +EAPI=5 inherit cmake-utils toolchain-funcs gnome2-utils fdo-mime git-2 pax-utils eutils @@ -14,15 +14,14 @@ HOMEPAGE="http://www.darktable.org/" LICENSE="GPL-3" SLOT="0" KEYWORDS="" -IUSE="colord facebook flickr geo gnome-keyring gphoto2 graphicsmagick jpeg2k kde -nls opencl openmp pax_kernel +rawspeed +slideshow" +IUSE="colord flickr geo gnome-keyring gphoto2 graphicsmagick jpeg2k kde +nls opencl openmp pax_kernel +rawspeed +slideshow web-services" CDEPEND=" dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) - facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) @@ -44,6 +43,7 @@ CDEPEND=" virtual/opengl ) virtual/jpeg + web-services? ( dev-libs/json-glib ) x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 @@ -71,7 +71,6 @@ src_prepare() { src_configure() { local mycmakeargs=( $(cmake-utils_use_use colord COLORD) - $(cmake-utils_use_use facebook GLIBJSON) $(cmake-utils_use_use flickr FLICKR) $(cmake-utils_use_use geo GEO) $(cmake-utils_use_use gnome-keyring GNOME_KEYRING) @@ -83,6 +82,7 @@ src_configure() { $(cmake-utils_use_use openmp OPENMP) $(cmake-utils_use !rawspeed DONT_USE_RAWSPEED) $(cmake-utils_use_build slideshow SLIDESHOW) + $(cmake-utils_use_use web-services GLIBJSON) -DCUSTOM_CFLAGS=ON -DINSTALL_IOP_EXPERIMENTAL=ON -DINSTALL_IOP_LEGACY=ON diff --git a/media-gfx/darktable/metadata.xml b/media-gfx/darktable/metadata.xml index 6251beedd193..987489639478 100644 --- a/media-gfx/darktable/metadata.xml +++ b/media-gfx/darktable/metadata.xml @@ -16,6 +16,7 @@ Triggers paxmarking of main darktable binary Enable the rawspeed backend Build the opengl slideshow viewer + Add support for uploading photos to facebook and picasa darktable-org/darktable diff --git a/media-gfx/freepv/Manifest b/media-gfx/freepv/Manifest index b2f7c5b9bbd0..59ad54d81374 100644 --- a/media-gfx/freepv/Manifest +++ b/media-gfx/freepv/Manifest @@ -1 +1 @@ -DIST freepv-0.3.0.tar.gz 175545 RMD160 cb5d462844fd731d72886a7def71090bf91b39da SHA1 01ebbb6949680ae5535d90ccfbcc7959346f3ea1 SHA256 a66c58616cbe814b2e23c6fe109c3de906dad83a8faa32ea219c182bf15229f0 +DIST freepv-0.3.0.tar.gz 175545 SHA256 a66c58616cbe814b2e23c6fe109c3de906dad83a8faa32ea219c182bf15229f0 SHA512 0b207dc25c51b19fd76637743adb8e395c6098d03611612086d66d3f1aa6e4d0c5700aa0e23210082d6aa7495f19d1c3d8f0f93ad11a5236df86d709d5f71a7d WHIRLPOOL 993378bb9ef25e1a1064f9402c4608d0a54588f035f23fc67024b857705ff978a403f86e5140e9ed88b83a6d9ae7a74aa86bf9c0239eb07348904d1eeb9ef749 diff --git a/media-gfx/freepv/freepv-0.3.0-r4.ebuild b/media-gfx/freepv/freepv-0.3.0-r4.ebuild new file mode 100644 index 000000000000..23f4c296fc8c --- /dev/null +++ b/media-gfx/freepv/freepv-0.3.0-r4.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/media-gfx/freepv/freepv-0.3.0-r4.ebuild,v 1.1 2013/04/10 09:40:32 voyageur Exp $ + +EAPI=5 +inherit cmake-utils eutils + +DESCRIPTION="Panorama viewer (Quicktime, PangeaVR, GLPanoView formats)" +HOMEPAGE="http://freepv.sourceforge.net/" +SRC_URI="mirror://sourceforge/freepv/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-libs/libxml2 + media-libs/libpng:0= + media-libs/freeglut + sys-libs/zlib + virtual/jpeg + x11-libs/libXmu + x11-libs/libXt + x11-libs/libXxf86vm" +RDEPEND="${DEPEND}" + +src_prepare() { + epatch "${FILESDIR}"/${P}-gcc44.patch \ + "${FILESDIR}"/${P}-gcc46.patch \ + "${FILESDIR}"/${P}-noplugin.patch \ + "${FILESDIR}"/${P}-libpng14.patch + + sed -i \ + -e 's:jpeg_mem_src:freepv_jpeg_mem_src:g' \ + src/libfreepv/JpegReader.cpp || die 'jpeg sed failed' + + sed -i -e 's:^INSTALL(.*)::' \ + src/libfreepv/CMakeLists.txt || die 'static lib install sed failed' +} diff --git a/media-gfx/graphicsmagick/files/graphicsmagick-1.3.18-freetype.patch b/media-gfx/graphicsmagick/files/graphicsmagick-1.3.18-freetype.patch index e8b7aaa16360..d6504e6d0ffe 100644 --- a/media-gfx/graphicsmagick/files/graphicsmagick-1.3.18-freetype.patch +++ b/media-gfx/graphicsmagick/files/graphicsmagick-1.3.18-freetype.patch @@ -1,8 +1,8 @@ https://sourceforge.net/tracker/?func=detail&aid=3601612&group_id=73485&atid=537940 ---- GraphicsMagick-1.3.18/configure.ac -+++ GraphicsMagick-1.3.18/configure.ac -@@ -1305,7 +1305,6 @@ +--- GraphicsMagick-1.3.18/configure ++++ GraphicsMagick-1.3.18/configure +@@ -22249,7 +22249,6 @@ # directory as GraphicsMagick installation prefix. #LDFLAGS="$LDFLAGS -L$LIB_DIR" #CPPFLAGS="$CPPFLAGS -I$INCLUDE_DIR" @@ -10,7 +10,7 @@ https://sourceforge.net/tracker/?func=detail&aid=3601612&group_id=73485&atid=537 # # Find the X11 RGB database -@@ -2273,8 +2272,8 @@ +@@ -25994,8 +25993,8 @@ then freetype_prefix=`${freetype_config} --prefix` freetype_exec_prefix=`${freetype_config} --exec-prefix` @@ -20,8 +20,8 @@ https://sourceforge.net/tracker/?func=detail&aid=3601612&group_id=73485&atid=537 + CPPFLAGS="$CPPFLAGS `${PKG_CONFIG:-pkg-config} freetype2 --cflags`" fi - dnl First see if there is a library -@@ -3354,7 +3353,7 @@ + if test "$LIB_TTF" = '' +@@ -29605,7 +29604,7 @@ MAGICK_API_CFLAGS=$CFLAGS MAGICK_API_CPPFLAGS=`echo $MAGICK_API_CPPFLAGS | sed -e 's/ */ /g'` diff --git a/media-gfx/graphicsmagick/graphicsmagick-1.3.18.ebuild b/media-gfx/graphicsmagick/graphicsmagick-1.3.18.ebuild index af06f0ca123b..169b1050721e 100644 --- a/media-gfx/graphicsmagick/graphicsmagick-1.3.18.ebuild +++ b/media-gfx/graphicsmagick/graphicsmagick-1.3.18.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphicsmagick/graphicsmagick-1.3.18.ebuild,v 1.1 2013/04/08 03:52:13 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/graphicsmagick/graphicsmagick-1.3.18.ebuild,v 1.2 2013/04/08 17:41:50 radhermit Exp $ EAPI=5 -inherit toolchain-funcs eutils autotools +inherit toolchain-funcs eutils MY_P=${P/graphicsm/GraphicsM} @@ -46,7 +46,6 @@ S=${WORKDIR}/${MY_P} src_prepare() { epatch "${FILESDIR}"/${PN}-1.3.18-freetype.patch - eautoreconf } src_configure() { diff --git a/media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch b/media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch new file mode 100644 index 000000000000..43fb0b982dbd --- /dev/null +++ b/media-gfx/mandelbulber/files/mandelbulber-1.12.1-memcpy_and_memset.patch @@ -0,0 +1,22 @@ +http://bugs.gentoo.org/464972 + +--- src/texture.cpp ++++ src/texture.cpp +@@ -5,6 +5,7 @@ + * Author: krzysztof + */ + #include ++#include + #include "texture.hpp" + #include "files.h" + +--- src/timeline.cpp ++++ src/timeline.cpp +@@ -6,6 +6,7 @@ + */ + + #include ++#include + + #include "timeline.hpp" + #include "files.h" diff --git a/media-gfx/mandelbulber/mandelbulber-1.12.1.ebuild b/media-gfx/mandelbulber/mandelbulber-1.12.1.ebuild index bd1fe357c33b..76d112a7c73d 100644 --- a/media-gfx/mandelbulber/mandelbulber-1.12.1.ebuild +++ b/media-gfx/mandelbulber/mandelbulber-1.12.1.ebuild @@ -1,9 +1,8 @@ -# 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-gfx/mandelbulber/mandelbulber-1.12.1.ebuild,v 1.1 2012/08/03 08:35:39 xarthisius Exp $ - -EAPI=4 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/mandelbulber/mandelbulber-1.12.1.ebuild,v 1.2 2013/04/08 15:05:56 ssuominen Exp $ +EAPI=5 inherit eutils toolchain-funcs versionator MY_P=${PN}$(replace_version_separator 2 '-' ) @@ -19,7 +18,7 @@ IUSE="" RDEPEND="x11-libs/gtk+:2 >=media-libs/libsndfile-1 - >=media-libs/libpng-1.4 + >=media-libs/libpng-1.4:0= virtual/jpeg" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -27,7 +26,9 @@ DEPEND="${RDEPEND} S=${WORKDIR}/${MY_P} src_prepare() { - epatch "${FILESDIR}"/${PN}-1.11-qa.patch + epatch \ + "${FILESDIR}"/${PN}-1.11-qa.patch \ + "${FILESDIR}"/${P}-memcpy_and_memset.patch } src_compile() { diff --git a/media-gfx/pngquant/files/pngquant-1.8.3-libpng16.patch b/media-gfx/pngquant/files/pngquant-1.8.3-libpng16.patch new file mode 100644 index 000000000000..edf089ff9678 --- /dev/null +++ b/media-gfx/pngquant/files/pngquant-1.8.3-libpng16.patch @@ -0,0 +1,53 @@ +Rename to prevent conflict with png_image from libpng16 + +http://bugs.gentoo.org/464762 + +--- rwpng.c ++++ rwpng.c +@@ -213,7 +213,7 @@ + } + + +-pngquant_error rwpng_write_image_init(png_image *mainprog_ptr, png_structpp png_ptr_p, png_infopp info_ptr_p, FILE *outfile) ++pngquant_error rwpng_write_image_init(rwpng_png_image *mainprog_ptr, png_structpp png_ptr_p, png_infopp info_ptr_p, FILE *outfile) + { + /* could also replace libpng warning-handler (final NULL), but no need: */ + +@@ -277,7 +277,7 @@ + png_structp png_ptr; + png_infop info_ptr; + +- pngquant_error retval = rwpng_write_image_init((png_image*)mainprog_ptr, &png_ptr, &info_ptr, outfile); ++ pngquant_error retval = rwpng_write_image_init((rwpng_png_image*)mainprog_ptr, &png_ptr, &info_ptr, outfile); + if (retval) return retval; + + // Palette images generally don't gain anything from filtering +@@ -321,7 +321,7 @@ + png_structp png_ptr; + png_infop info_ptr; + +- pngquant_error retval = rwpng_write_image_init((png_image*)mainprog_ptr, &png_ptr, &info_ptr, outfile); ++ pngquant_error retval = rwpng_write_image_init((rwpng_png_image*)mainprog_ptr, &png_ptr, &info_ptr, outfile); + if (retval) return retval; + + rwpng_set_gamma(info_ptr, png_ptr, mainprog_ptr->gamma); +@@ -344,7 +344,7 @@ + + static void rwpng_error_handler(png_structp png_ptr, png_const_charp msg) + { +- png_image *mainprog_ptr; ++ rwpng_png_image *mainprog_ptr; + + /* This function, aside from the extra step of retrieving the "error + * pointer" (below) and the fact that it exists within the application +--- rwpng.h ++++ rwpng.h +@@ -80,7 +80,7 @@ + jmp_buf jmpbuf; + png24_image png24; + png8_image png8; +-} png_image; ++} rwpng_png_image; + + /* prototypes for public functions in rwpng.c */ + diff --git a/media-gfx/pngquant/pngquant-1.8.3.ebuild b/media-gfx/pngquant/pngquant-1.8.3.ebuild index af7ccaa3129e..dcf25387b8c6 100644 --- a/media-gfx/pngquant/pngquant-1.8.3.ebuild +++ b/media-gfx/pngquant/pngquant-1.8.3.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngquant/pngquant-1.8.3.ebuild,v 1.1 2013/04/05 09:40:16 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/pngquant/pngquant-1.8.3.ebuild,v 1.3 2013/04/08 14:49:47 ssuominen Exp $ EAPI=5 -inherit toolchain-funcs flag-o-matic +inherit eutils flag-o-matic toolchain-funcs DESCRIPTION="a command-line utility for converting 24/32-bit PNG images to paletted (8-bit) PNGs" HOMEPAGE="http://pngquant.org/" @@ -18,13 +18,9 @@ RDEPEND="media-libs/libpng:0= sys-libs/zlib:=" DEPEND=${RDEPEND} -pkg_pretend() { - if use openmp ; then - tc-has-openmp || die "Please switch to an openmp compatible compiler" - fi -} - src_prepare() { + epatch "${FILESDIR}"/${P}-libpng16.patch + # Failure in upstream logic. Otherwise we lose the -I and -L flags # from Makefile. sed -i \ @@ -38,7 +34,7 @@ src_compile() { use sse2 && append-cflags -DUSE_SSE=1 local openmp - if use openmp ; then + if use openmp && tc-has-openmp; then append-cflags -fopenmp openmp="-lgomp" fi diff --git a/media-libs/audiofile/audiofile-0.3.5.ebuild b/media-libs/audiofile/audiofile-0.3.5.ebuild index 52017dfb59ce..b06ad84dcb02 100644 --- a/media-libs/audiofile/audiofile-0.3.5.ebuild +++ b/media-libs/audiofile/audiofile-0.3.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/media-libs/audiofile/audiofile-0.3.5.ebuild,v 1.11 2013/04/01 18:25:05 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/audiofile/audiofile-0.3.5.ebuild,v 1.12 2013/04/09 16:44:04 ago Exp $ EAPI=5 @@ -11,7 +11,7 @@ HOMEPAGE="http://www.68k.org/~michael/audiofile/" LICENSE="GPL-2 LGPL-2" SLOT="0/1" # subslot = soname major version -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-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 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="static-libs test" RDEPEND="" diff --git a/media-libs/evas/Manifest b/media-libs/evas/Manifest index 8a6fbbd94b57..5ecaa16a6898 100644 --- a/media-libs/evas/Manifest +++ b/media-libs/evas/Manifest @@ -1,2 +1 @@ -DIST evas-1.7.4.tar.bz2 9365979 SHA256 53f3e58c876c38a6de9aa65ae660e526bc4671d05397c2c347f11e5e61f50a8f SHA512 eac515d6756a6df27c3223283b6afea7b96c96466927c7e6358f1b4d0373d23a8e45ef4d9c623a51dcad09f047135c56e5d59dba9dc8295bac74cee7096787ef WHIRLPOOL 1e150eddbc48b26b83b4fe8686b12df5c13ac781ea87d6a41c35efa979fbe8281d5c71493ecb41a4500d71b1446dc6d58c0cb4acbedb39b549d77720d8f51b9b -DIST evas-1.7.5.tar.bz2 9412064 SHA256 70b350a970b2086787622845896f3e54de278fe698b8069796fd752e70427374 SHA512 9ea3ed8654af2a5518b9689ad73cb97bbc44e2085d765f2cac8c4d53c4686e9bd2ebd7c18241dc8a08340488ff408dd6538376afa30d6a1758c592e8088316d0 WHIRLPOOL 88c72276bf81ac2a03e52ff3b81b165d9ec699ef0ad429f2564716fea1886eb164cdfac4387475edda9ebd489f1bbb2dcc4652ee86a9316ac4197f4f120e1a37 +DIST evas-1.7.6.1.tar.bz2 9408947 SHA256 10999966815a24fc544475e986f124e4c6d021e13b797a0945b81ff04427f2ab SHA512 c30131bd183c29890020bede9a83fb0dc9baf581b28d2f331e6814f7e4f285267fb7060c4ac9b7cc4a869ac7bf881eaaa0749198db2cccc0b6864a86f92d44de WHIRLPOOL 987cb4a1fce8f531723fcf827fb9a025259dd187f26aabb07ff297978bebb5186dff0a611b605e1344a6c353847a1011c0fd6b29a693114a3d1e2f30ac7a0411 diff --git a/media-libs/evas/evas-1.7.4.ebuild b/media-libs/evas/evas-1.7.4.ebuild deleted file mode 100644 index 4bb573f5a478..000000000000 --- a/media-libs/evas/evas-1.7.4.ebuild +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/evas/evas-1.7.4.ebuild,v 1.1 2012/12/21 19:50:46 tommy Exp $ - -EAPI=2 - -inherit enlightenment - -DESCRIPTION="hardware-accelerated retained canvas API" -HOMEPAGE="http://trac.enlightenment.org/e/wiki/Evas" -SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" - -LICENSE="BSD-2" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="altivec bidi +bmp directfb +eet fbcon +fontconfig gles gif +ico +jpeg mmx opengl +png +ppm +psd sse sse3 static-libs tga +threads tiff X xcb xpm" - -RDEPEND=">=dev-libs/eina-1.7.0 - >=media-libs/freetype-2.3.9 - fontconfig? ( media-libs/fontconfig ) - gles? ( media-libs/mesa[gallium,gles2] ) - gif? ( media-libs/giflib ) - jpeg? ( virtual/jpeg ) - png? ( media-libs/libpng ) - bidi? ( >=dev-libs/fribidi-0.19.1 ) - directfb? ( >=dev-libs/DirectFB-0.9.16 ) - tiff? ( media-libs/tiff ) - xpm? ( x11-libs/libXpm ) - X? ( - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXrender - opengl? ( virtual/opengl ) - ) - !X? ( - xcb? ( - x11-libs/xcb-util - ) ) - eet? ( >=dev-libs/eet-1.7.0 )" -DEPEND="${RDEPEND}" - -src_configure() { - if use X ; then - if use xcb ; then - ewarn "You have enabled both 'X' and 'xcb', so we will use" - ewarn "X as it's considered the most stable for evas" - fi - MY_ECONF=" - --disable-software-xcb - $(use_enable opengl gl-xlib) - " - elif use xcb ; then - MY_ECONF=" - --disable-gl-xlib - --enable-software-xcb - $(use_enable opengl gl-xcb) - " - else - MY_ECONF=" - --disable-gl-xlib - --disable-software-xcb - --disable-gl-xcb - " - fi - - MY_ECONF+=" - $(use_enable altivec cpu-altivec) - $(use_enable bidi fribidi) - $(use_enable bmp image-loader-bmp) - $(use_enable bmp image-loader-wbmp) - $(use_enable directfb) - $(use_enable doc) - $(use_enable eet font-loader-eet) - $(use_enable eet image-loader-eet) - $(use_enable fbcon fb) - $(use_enable fontconfig) - $(use_enable gles gl-flavor-gles) - $(use_enable gles gles-variety-sgx) - $(use_enable gif image-loader-gif) - $(use_enable ico image-loader-ico) - $(use_enable jpeg image-loader-jpeg) - $(use_enable mmx cpu-mmx) - $(use_enable png image-loader-png) - $(use_enable ppm image-loader-pmaps) - $(use_enable psd image-loader-psd) - $(use_enable sse cpu-sse) - $(use_enable sse3 cpu-sse3) - --disable-image-loader-svg - $(use_enable tga image-loader-tga) - $(use_enable tiff image-loader-tiff) - $(use_enable threads pthreads) - $(use_enable threads async-events) - $(use_enable threads async-preload) - $(use_enable X software-xlib) - $(use_enable xpm image-loader-xpm) - --enable-evas-magic-debug \ - --enable-static-software-generic \ - --enable-buffer \ - --enable-cpu-c \ - --enable-scale-sample \ - --enable-scale-smooth \ - --enable-convert-8-rgb-332 \ - --enable-convert-8-rgb-666 \ - --enable-convert-8-rgb-232 \ - --enable-convert-8-rgb-222 \ - --enable-convert-8-rgb-221 \ - --enable-convert-8-rgb-121 \ - --enable-convert-8-rgb-111 \ - --enable-convert-16-rgb-565 \ - --enable-convert-16-rgb-555 \ - --enable-convert-16-rgb-444 \ - --enable-convert-16-rgb-rot-0 \ - --enable-convert-16-rgb-rot-270 \ - --enable-convert-16-rgb-rot-90 \ - --enable-convert-24-rgb-888 \ - --enable-convert-24-bgr-888 \ - --enable-convert-32-rgb-8888 \ - --enable-convert-32-rgbx-8888 \ - --enable-convert-32-bgr-8888 \ - --enable-convert-32-bgrx-8888 \ - --enable-convert-32-rgb-rot-0 \ - --enable-convert-32-rgb-rot-270 \ - --enable-convert-32-rgb-rot-90 \ - --enable-image-loader-generic \ - --disable-harfbuzz \ - --disable-image-loader-edb \ - --disable-static-software-16 \ - --disable-software-16-x11" - - enlightenment_src_configure -} - -pkg_postinst() { - elog "for svg support install media-plugins/evas_generic_loaders[svg]" -} diff --git a/media-libs/evas/evas-1.7.5.ebuild b/media-libs/evas/evas-1.7.5.ebuild deleted file mode 100644 index 85535ac5b95e..000000000000 --- a/media-libs/evas/evas-1.7.5.ebuild +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/evas/evas-1.7.5.ebuild,v 1.1 2013/01/04 17:59:08 tommy Exp $ - -EAPI=2 - -inherit enlightenment - -DESCRIPTION="hardware-accelerated retained canvas API" -HOMEPAGE="http://trac.enlightenment.org/e/wiki/Evas" -SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" - -LICENSE="BSD-2" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="altivec bidi +bmp directfb +eet fbcon +fontconfig gles gif +ico +jpeg mmx opengl +png +ppm +psd sse sse3 static-libs tga +threads tiff X xcb xpm" - -RDEPEND=">=dev-libs/eina-1.7.0 - >=media-libs/freetype-2.3.9 - fontconfig? ( media-libs/fontconfig ) - gles? ( media-libs/mesa[gallium,gles2] ) - gif? ( media-libs/giflib ) - jpeg? ( virtual/jpeg ) - png? ( media-libs/libpng ) - bidi? ( >=dev-libs/fribidi-0.19.1 ) - directfb? ( >=dev-libs/DirectFB-0.9.16 ) - tiff? ( media-libs/tiff ) - xpm? ( x11-libs/libXpm ) - X? ( - x11-libs/libX11 - x11-libs/libXext - x11-libs/libXrender - opengl? ( virtual/opengl ) - ) - !X? ( - xcb? ( - x11-libs/xcb-util - ) ) - eet? ( >=dev-libs/eet-1.7.0 )" -DEPEND="${RDEPEND}" - -src_configure() { - if use X ; then - if use xcb ; then - ewarn "You have enabled both 'X' and 'xcb', so we will use" - ewarn "X as it's considered the most stable for evas" - fi - MY_ECONF=" - --disable-software-xcb - $(use_enable opengl gl-xlib) - " - elif use xcb ; then - MY_ECONF=" - --disable-gl-xlib - --enable-software-xcb - $(use_enable opengl gl-xcb) - " - else - MY_ECONF=" - --disable-gl-xlib - --disable-software-xcb - --disable-gl-xcb - " - fi - - MY_ECONF+=" - $(use_enable altivec cpu-altivec) - $(use_enable bidi fribidi) - $(use_enable bmp image-loader-bmp) - $(use_enable bmp image-loader-wbmp) - $(use_enable directfb) - $(use_enable doc) - $(use_enable eet font-loader-eet) - $(use_enable eet image-loader-eet) - $(use_enable fbcon fb) - $(use_enable fontconfig) - $(use_enable gles gl-flavor-gles) - $(use_enable gles gles-variety-sgx) - $(use_enable gif image-loader-gif) - $(use_enable ico image-loader-ico) - $(use_enable jpeg image-loader-jpeg) - $(use_enable mmx cpu-mmx) - $(use_enable png image-loader-png) - $(use_enable ppm image-loader-pmaps) - $(use_enable psd image-loader-psd) - $(use_enable sse cpu-sse) - $(use_enable sse3 cpu-sse3) - --disable-image-loader-svg - $(use_enable tga image-loader-tga) - $(use_enable tiff image-loader-tiff) - $(use_enable threads pthreads) - $(use_enable threads async-events) - $(use_enable threads async-preload) - $(use_enable X software-xlib) - $(use_enable xpm image-loader-xpm) - --enable-evas-magic-debug \ - --enable-static-software-generic \ - --enable-buffer \ - --enable-cpu-c \ - --enable-scale-sample \ - --enable-scale-smooth \ - --enable-convert-8-rgb-332 \ - --enable-convert-8-rgb-666 \ - --enable-convert-8-rgb-232 \ - --enable-convert-8-rgb-222 \ - --enable-convert-8-rgb-221 \ - --enable-convert-8-rgb-121 \ - --enable-convert-8-rgb-111 \ - --enable-convert-16-rgb-565 \ - --enable-convert-16-rgb-555 \ - --enable-convert-16-rgb-444 \ - --enable-convert-16-rgb-rot-0 \ - --enable-convert-16-rgb-rot-270 \ - --enable-convert-16-rgb-rot-90 \ - --enable-convert-24-rgb-888 \ - --enable-convert-24-bgr-888 \ - --enable-convert-32-rgb-8888 \ - --enable-convert-32-rgbx-8888 \ - --enable-convert-32-bgr-8888 \ - --enable-convert-32-bgrx-8888 \ - --enable-convert-32-rgb-rot-0 \ - --enable-convert-32-rgb-rot-270 \ - --enable-convert-32-rgb-rot-90 \ - --enable-image-loader-generic \ - --disable-harfbuzz \ - --disable-image-loader-edb \ - --disable-static-software-16 \ - --disable-software-16-x11" - - enlightenment_src_configure -} - -pkg_postinst() { - elog "for svg support install media-plugins/evas_generic_loaders[svg]" -} diff --git a/media-libs/evas/evas-1.7.5-r1.ebuild b/media-libs/evas/evas-1.7.6.1.ebuild similarity index 90% rename from media-libs/evas/evas-1.7.5-r1.ebuild rename to media-libs/evas/evas-1.7.6.1.ebuild index 56a50fb42891..c209cdfa6fa5 100644 --- a/media-libs/evas/evas-1.7.5-r1.ebuild +++ b/media-libs/evas/evas-1.7.6.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/media-libs/evas/evas-1.7.5-r1.ebuild,v 1.1 2013/04/02 08:56:39 tommy Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/evas/evas-1.7.6.1.ebuild,v 1.2 2013/04/09 17:39:46 tommy Exp $ EAPI=2 @@ -12,9 +12,9 @@ SRC_URI="http://download.enlightenment.org/releases/${P}.tar.bz2" LICENSE="BSD-2" KEYWORDS="~amd64 ~arm ~x86" -IUSE="altivec bidi +bmp directfb +eet fbcon +fontconfig gles gif +ico +jpeg mmx opengl +png +ppm +psd sse sse3 static-libs tga +threads tiff wayland X xcb xpm" +IUSE="altivec bidi +bmp directfb +eet fbcon +fontconfig gles gif +ico +jpeg mmx opengl +png +ppm +psd sse sse3 static-libs tga tiff wayland X xcb xpm" -RDEPEND=">=dev-libs/eina-1.7.0 +RDEPEND=">=dev-libs/eina-1.7.6 >=media-libs/freetype-2.3.9 fontconfig? ( media-libs/fontconfig ) gles? ( media-libs/mesa[gallium,gles2] ) @@ -36,7 +36,7 @@ RDEPEND=">=dev-libs/eina-1.7.0 xcb? ( x11-libs/xcb-util ) ) - eet? ( >=dev-libs/eet-1.7.0 )" + eet? ( >=dev-libs/eet-1.7.6 )" DEPEND="${RDEPEND}" src_configure() { @@ -107,9 +107,9 @@ src_configure() { --disable-image-loader-svg $(use_enable tga image-loader-tga) $(use_enable tiff image-loader-tiff) - $(use_enable threads pthreads) - $(use_enable threads async-events) - $(use_enable threads async-preload) + --enable-pthreads + --enable-async-events + --enable-async-preload $(use_enable X software-xlib) $(use_enable xpm image-loader-xpm) --enable-evas-magic-debug \ diff --git a/media-libs/libcanberra/libcanberra-0.30-r1.ebuild b/media-libs/libcanberra/libcanberra-0.30-r1.ebuild index 3384071b87f4..d9e0da44bc49 100644 --- a/media-libs/libcanberra/libcanberra-0.30-r1.ebuild +++ b/media-libs/libcanberra/libcanberra-0.30-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/media-libs/libcanberra/libcanberra-0.30-r1.ebuild,v 1.10 2013/04/01 18:25:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcanberra/libcanberra-0.30-r1.ebuild,v 1.11 2013/04/09 16:44:11 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="http://0pointer.de/lennart/projects/${PN}/${P}.tar.xz" LICENSE="LGPL-2.1+" SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x86-solaris" IUSE="alsa gnome gstreamer +gtk +gtk3 oss pulseaudio +sound tdb udev" COMMON_DEPEND="media-libs/libvorbis diff --git a/media-libs/libcdr/Manifest b/media-libs/libcdr/Manifest index b460c5a8d6d6..54eee02d7f85 100644 --- a/media-libs/libcdr/Manifest +++ b/media-libs/libcdr/Manifest @@ -1 +1,2 @@ DIST libcdr-0.0.11.tar.xz 561868 SHA256 b238320359f6a919e409b8cbd3faafd9822bbd09863f89aa6af0403ef3f9a2af SHA512 13ce288f88af0e24cb27658e8267f35cd1341d92957ac5f289ab096886314541330b1697dedcfd1cfdd4997e8eb5ac9740fce1809b49fefe7cc3c425caec7b6e WHIRLPOOL b82c2fe7b84fb47f89c1286f52a73ee92a59521c1d8cf244ca1c98629f88976af4224e419079f6b4589294f0162abeb8c641fe65d26425eb4cdd27f95f2106cc +DIST libcdr-0.0.12.tar.xz 565412 SHA256 c8699c00ff5c4eddd506c21767463f1c13577ca8c65f69560d488e8df4a7225d SHA512 4b26ab5b5916a030000d3a6341343c56708eaa3495b0d1e0c87f4ecb1279d6549536c761bd3a9e03d4caa310eb4d3b1d2f3bd301674539afe9b188b63f5fd221 WHIRLPOOL b84eb413379033fcccce919f3c7001bc3b1b078aa26e6f4c2705c5e217901ebd18a7bf810dc3d3ccc65bdb78aa71a71490267194c813fa38022aa6b8313d8bb8 diff --git a/media-libs/libcdr/libcdr-0.0.12.ebuild b/media-libs/libcdr/libcdr-0.0.12.ebuild new file mode 100644 index 000000000000..a818d96af8cf --- /dev/null +++ b/media-libs/libcdr/libcdr-0.0.12.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libcdr/libcdr-0.0.12.ebuild,v 1.1 2013/04/08 16:30:42 scarabeus Exp $ + +EAPI=5 + +EGIT_REPO_URI="git://anongit.freedesktop.org/git/libreoffice/libcdr/" +inherit base eutils +[[ ${PV} == 9999 ]] && inherit autotools git-2 + +DESCRIPTION="Library parsing the Corel cdr documents" +HOMEPAGE="http://www.freedesktop.org/wiki/Software/libcdr" +[[ ${PV} == 9999 ]] || SRC_URI="http://dev-www.libreoffice.org/src/${P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0" +[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~arm ~ppc ~x86" +IUSE="doc static-libs" + +RDEPEND=" + app-text/libwpd:0.9 + app-text/libwpg:0.2 + dev-libs/icu:= + media-libs/lcms:2 + sys-libs/zlib +" +DEPEND="${RDEPEND} + virtual/pkgconfig + sys-devel/libtool + doc? ( app-doc/doxygen ) +" + +src_prepare() { + base_src_prepare + [[ -d m4 ]] || mkdir "m4" + [[ ${PV} == 9999 ]] && eautoreconf +} + +src_configure() { + econf \ + --docdir="${EPREFIX}/usr/share/doc/${PF}" \ + $(use_enable static-libs static) \ + --disable-werror \ + $(use_with doc docs) +} + +src_install() { + default + prune_libtool_files --all +} diff --git a/media-libs/libdvdcss/libdvdcss-1.2.13.ebuild b/media-libs/libdvdcss/libdvdcss-1.2.13.ebuild index 2afe923ead75..0f16fe578fc7 100644 --- a/media-libs/libdvdcss/libdvdcss-1.2.13.ebuild +++ b/media-libs/libdvdcss/libdvdcss-1.2.13.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-libs/libdvdcss/libdvdcss-1.2.13.ebuild,v 1.1 2013/02/27 10:42:10 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdcss/libdvdcss-1.2.13.ebuild,v 1.4 2013/04/10 14:43:41 jer Exp $ EAPI=5 @@ -12,7 +12,7 @@ SRC_URI="http://www.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="1.2" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" IUSE="doc static-libs" RDEPEND="" diff --git a/media-libs/libmpdclient/Manifest b/media-libs/libmpdclient/Manifest index 8c7026b200f2..000fe4b222b5 100644 --- a/media-libs/libmpdclient/Manifest +++ b/media-libs/libmpdclient/Manifest @@ -1 +1,2 @@ DIST libmpdclient-2.7.tar.bz2 291147 SHA256 2344bea1b36f79398ec16b0dc795fe4b9de204ba77a9c07d5d575cd0420b2fc6 SHA512 e3f62646246495fa5bfc0df45c1f2aed4086040d429181c1da9796b9f7ea5789d34896273a1703c788fba9b08b11a6ac1376cb9514d33299a542b97eb4f6dc45 WHIRLPOOL 5a15afb16793d558ce585113a8c751b8c1fb3a069ae69377f1ba74a6657b08d773da2a1297c808c1a60774fb7303f4dbd50f1600db90abd3f85d5970cad099c9 +DIST libmpdclient-2.8.tar.bz2 300714 SHA256 108eea3d91e48cd7d847e7c0978202a8386d5a09d49d07390473e96cca9a92e3 SHA512 c6584cc09e85e29aec837603c678a34bac8464ce35ef3a69b4e0bc78bf65fb1e738f8c88f7645269415f9f86a961c5f1d121c0696e2b12c3bc48d631e75cd034 WHIRLPOOL 7c498aff2a009e5397c3958c83ee06e1d5cbfbac2cd8088e446676f028814112dbeedaeea676f61af12a6a068591d068371aaa33d83f4a510cd4917346afafb4 diff --git a/media-libs/libmpdclient/libmpdclient-2.8.ebuild b/media-libs/libmpdclient/libmpdclient-2.8.ebuild new file mode 100644 index 000000000000..ff603e561dd7 --- /dev/null +++ b/media-libs/libmpdclient/libmpdclient-2.8.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/media-libs/libmpdclient/libmpdclient-2.8.ebuild,v 1.1 2013/04/10 13:11:48 angelos Exp $ + +EAPI=4 + +DESCRIPTION="A library for interfacing Music Player Daemon (media-sound/mpd)" +HOMEPAGE="http://www.musicpd.org" +SRC_URI="http://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc examples static-libs" + +RDEPEND="" +DEPEND="doc? ( app-doc/doxygen )" + +src_prepare() { + sed -e "s:@top_srcdir@:.:" -i doc/doxygen.conf.in +} + +src_configure() { + econf \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} \ + $(use_enable static-libs static) \ + $(use_enable doc documentation) +} + +src_install() { + default + use examples && dodoc src/example.c + use doc || rm -rf "${ED}"/usr/share/doc/${PF}/html + find "${ED}" -name "*.la" -exec rm -rf {} + || die "failed to delete .la files" +} diff --git a/media-libs/libpng/libpng-1.5.15-r15.ebuild b/media-libs/libpng/libpng-1.5.15-r15.ebuild new file mode 100644 index 000000000000..38adbd23a398 --- /dev/null +++ b/media-libs/libpng/libpng-1.5.15-r15.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.5.15-r15.ebuild,v 1.2 2013/04/10 06:02:07 ssuominen Exp $ + +# this ebuild is only for the libpng15.so.15 SONAME for ABI compat + +EAPI=5 + +inherit eutils libtool + +DESCRIPTION="Portable Network Graphics library" +HOMEPAGE="http://www.libpng.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz + apng? ( mirror://sourceforge/apng/${P}-apng.patch.gz )" + +LICENSE="libpng" +SLOT="1.5" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +IUSE="apng neon" + +RDEPEND="sys-libs/zlib:= + !=media-libs/libpng-1.5*:0" +DEPEND="${RDEPEND} + app-arch/xz-utils" + +pkg_setup() { + local _preserved_lib=${EROOT}/usr/$(get_libdir)/libpng15.so.15 + [[ -e ${_preserved_lib} ]] && rm -f "${_preserved_lib}" +} + +src_prepare() { + if use apng; then + epatch "${WORKDIR}"/${PN}-*-apng.patch + # Don't execute symbols check with apng patch wrt #378111 + sed -i -e '/^check/s:scripts/symbols.chk::' Makefile.in || die + fi + elibtoolize +} + +src_configure() { + econf \ + --disable-static \ + --enable-arm-neon=$(usex neon on off) +} + +src_compile() { + emake libpng15.la +} + +src_install() { + newlib.so .libs/libpng15.so.15.* libpng15.so.15 +} diff --git a/media-libs/libpng/libpng-1.6.1.ebuild b/media-libs/libpng/libpng-1.6.1.ebuild index 6ddaacfc41d8..8f418a3a7519 100644 --- a/media-libs/libpng/libpng-1.6.1.ebuild +++ b/media-libs/libpng/libpng-1.6.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/media-libs/libpng/libpng-1.6.1.ebuild,v 1.1 2013/04/05 17:15:07 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libpng/libpng-1.6.1.ebuild,v 1.2 2013/04/09 20:13:51 ssuominen Exp $ EAPI=5 @@ -13,8 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz LICENSE="libpng" SLOT="0/16" -KEYWORDS="" -#KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt" IUSE="apng neon static-libs" RDEPEND="sys-libs/zlib:=" @@ -45,11 +44,11 @@ src_install() { } pkg_preinst() { -# has_version ${CATEGORY}/${PN}:1.5 && return 0 + has_version ${CATEGORY}/${PN}:1.5 && return 0 preserve_old_lib /usr/$(get_libdir)/libpng15$(get_libname 15) } pkg_postinst() { -# has_version ${CATEGORY}/${PN}:1.5 && return 0 + has_version ${CATEGORY}/${PN}:1.5 && return 0 preserve_old_lib_notify /usr/$(get_libdir)/libpng15$(get_libname 15) } diff --git a/media-libs/libtaginfo/Manifest b/media-libs/libtaginfo/Manifest index 5222eb1a32c6..c4e22d620e2f 100644 --- a/media-libs/libtaginfo/Manifest +++ b/media-libs/libtaginfo/Manifest @@ -1,2 +1,2 @@ -DIST libtaginfo-0.1.3.tar.gz 1865771 SHA256 33c42653c5302d0fb35c0b79dcd201263803b7d0750814cee9419e6eb8bc7d13 SHA512 5b947d9d418bf82b779c2817d0d4280774e2b7b6718e8724695121d6ba0db27dfe1f1f583155a245c739e5e7527c1927f5ae9ddedc87d4f0397bddefc51a2955 WHIRLPOOL a7c75d7b05492e0ef21b30b3777c7829239a7b8791d1e3b6986dae15efc3ed7f6048b51c3f170d3ff01311ef8240346d791385e4235d694891c1054708e802ac DIST libtaginfo-0.1.4.tar.gz 1883706 SHA256 c45bda2a005c05bcdd6582de02b2544ac8279360be3ca9ecee4e5149c687d3a5 SHA512 a0063333c2adf9b0c830d0a57bc612036bdf60acd9bd4dc1df564358f26398746f43a24736c2e3674c9012a2d399bad0a1a7f13de74e2175871067017312a118 WHIRLPOOL 538c167d2d6feb9477c54042a061668abdc74dd191a2f14ba391c595aa9e2bc0251068a8babcffde0a1089cc71a46f7dda6559fa7c16acdf31aab8f13aca74f4 +DIST libtaginfo-0.1.5.tar.gz 1895940 SHA256 d3848c4af2acb70304b33823102d1738400c36b59741f128aa884b5b97b2e9fa SHA512 2bd1eac0df7ae1c4e5d255d1490c4f17c5cadd49a9eccaf0ac20fa91e1aa5d96b24e7ba4067ad135a88fd29a6436037544a0eb5798174dac73c2e5919d886905 WHIRLPOOL fa54bdd0b41d72adc027244c30439cd110301060129663de901c01570b6adf1599566da0a2f50e6d8dff3c1b0df136117c2ca70350196e26e1390815986bc721 diff --git a/media-libs/libtaginfo/libtaginfo-0.1.3.ebuild b/media-libs/libtaginfo/libtaginfo-0.1.5.ebuild similarity index 90% rename from media-libs/libtaginfo/libtaginfo-0.1.3.ebuild rename to media-libs/libtaginfo/libtaginfo-0.1.5.ebuild index 4db91d3ca2f6..621584b21fe4 100644 --- a/media-libs/libtaginfo/libtaginfo-0.1.3.ebuild +++ b/media-libs/libtaginfo/libtaginfo-0.1.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/media-libs/libtaginfo/libtaginfo-0.1.3.ebuild,v 1.1 2013/03/16 08:08:08 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libtaginfo/libtaginfo-0.1.5.ebuild,v 1.1 2013/04/09 08:22:50 angelos Exp $ EAPI=4 diff --git a/media-libs/libwebp/Manifest b/media-libs/libwebp/Manifest index 9991eaf92b0b..f4117e453bb3 100644 --- a/media-libs/libwebp/Manifest +++ b/media-libs/libwebp/Manifest @@ -1,2 +1,2 @@ -DIST libwebp-0.2.0.tar.gz 704034 SHA256 aa7d5e162826362c79d7c36d41484042ab7460dc08dc33d4ea6823a0c77d4bfb SHA512 75b4b4eb862b58bdd6fc2f10600ec0e70d69c9d74f17479e30221ab3f1fd194313cb4cf26632a4a096858ba126f2876ba5c225d77a5a19f06b02b15ebf231342 WHIRLPOOL 505e193a2f89485c8ce3a33ddb07e7dcfb0e5ba37da8c92bc96fc907613a3dc5c2c67770d321a3b8bdfc5344991724a35e03291fed95d68097f42ca973509963 DIST libwebp-0.2.1.tar.gz 705230 SHA256 894e08b8b0043cf007cc1ca893f33d73784565a6e64b0e7aefb201a687392314 SHA512 fffaf0f81d6062b68443ffa30412384bc914cd032d11f5ad9e1dcd56c3a04bf40a56649bcc422f7496ef75a200952aacb20e6fb38f8313be6f5d53720f9e85fd WHIRLPOOL 081d57d49dc470bd5c19856ede00e49eab23a8db182c5145b336e79d838ced950c57a7c47aa532fb2fd5d55a79b10bee1290484917e0cd98dd812ce33a93c15b +DIST libwebp-0.3.0.tar.gz 800793 SHA256 8903fca40ece603b9cb20d32105168da7e2a33bebbd4d89001a3c8741ef03ddb SHA512 8218abb5e994ab5c89c9d3360efb7c8bf448879caed581bdc3ed7febb65f9eaf597059efcd130352f7e38c25af9508f850e09a7490270e903e228355148c2c30 WHIRLPOOL 68764e957aca26211fea5e663a7a0d377b87be9a218377636e88641c3245f3413097713104da913d80827e3c0043bbaa07b5c91e14fb3dd84bbc5738846c57e6 diff --git a/media-libs/libwebp/libwebp-0.2.0.ebuild b/media-libs/libwebp/libwebp-0.2.0.ebuild deleted file mode 100644 index 3f8e9d4ed8bd..000000000000 --- a/media-libs/libwebp/libwebp-0.2.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libwebp/libwebp-0.2.0.ebuild,v 1.7 2012/10/20 18:52:37 armin76 Exp $ - -EAPI=4 -inherit eutils - -DESCRIPTION="A lossy image compression format" -HOMEPAGE="http://code.google.com/p/webp/" -SRC_URI="http://webp.googlecode.com/files/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 x86 ~amd64-fbsd" -IUSE="experimental static-libs" - -RDEPEND="media-libs/libpng:0 - media-libs/tiff:0 - virtual/jpeg" -DEPEND="${RDEPEND}" - -DOCS="AUTHORS ChangeLog doc/*.txt NEWS README*" - -src_configure() { - econf \ - $(use_enable static-libs static) \ - --disable-silent-rules \ - $(use_enable experimental) \ - --enable-experimental-libwebpmux -} - -src_install() { - default - prune_libtool_files -} diff --git a/media-libs/libwebp/libwebp-0.2.1-r1.ebuild b/media-libs/libwebp/libwebp-0.3.0.ebuild similarity index 55% rename from media-libs/libwebp/libwebp-0.2.1-r1.ebuild rename to media-libs/libwebp/libwebp-0.3.0.ebuild index 0249760af267..d339746fdc4a 100644 --- a/media-libs/libwebp/libwebp-0.2.1-r1.ebuild +++ b/media-libs/libwebp/libwebp-0.3.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/media-libs/libwebp/libwebp-0.2.1-r1.ebuild,v 1.1 2013/03/13 19:08:18 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libwebp/libwebp-0.3.0.ebuild,v 1.1 2013/04/09 21:07:02 ssuominen Exp $ EAPI=5 inherit eutils multilib-minimal @@ -12,20 +12,28 @@ SRC_URI="http://webp.googlecode.com/files/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux" -IUSE="experimental static-libs" +IUSE="experimental gif +jpeg +png static-libs swap-16bit-csp tiff" -RDEPEND="media-libs/libpng:0= - media-libs/tiff:0= - virtual/jpeg" +RDEPEND="gif? ( media-libs/giflib ) + jpeg? ( virtual/jpeg ) + png? ( media-libs/libpng:0= ) + tiff? ( media-libs/tiff:0= )" DEPEND="${RDEPEND}" ECONF_SOURCE=${S} multilib_src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_enable experimental) \ - --enable-experimental-libwebpmux + ac_cv_header_gif_lib_h=$(usex gif) \ + ac_cv_header_jpeglib_h=$(usex jpeg) \ + ac_cv_header_png_h=$(usex png) \ + ac_cv_header_tiffio_h=$(usex tiff) \ + econf \ + $(use_enable static-libs static) \ + $(use_enable swap-16bit-csp) \ + $(use_enable experimental) \ + --enable-libwebpmux \ + --enable-libwebpdemux \ + --enable-libwebpdecoder } multilib_src_install() { diff --git a/media-libs/libwebp/metadata.xml b/media-libs/libwebp/metadata.xml index 47d44a2ceb63..d7dbe98f74e6 100644 --- a/media-libs/libwebp/metadata.xml +++ b/media-libs/libwebp/metadata.xml @@ -4,6 +4,7 @@ graphics Build with -DWEBP_EXPERIMENTAL_FEATURES + Enable byte swapping for 16 bit colorspace webp diff --git a/media-libs/phonon-vlc/Manifest b/media-libs/phonon-vlc/Manifest index 36788a43b31c..9902003d6c9f 100644 --- a/media-libs/phonon-vlc/Manifest +++ b/media-libs/phonon-vlc/Manifest @@ -1,3 +1 @@ -DIST phonon-backend-vlc-0.6.0.tar.xz 54796 SHA256 1db140b67081e6f1bacdf88de88abca21edd1607c3d69dec35110c427aed133d SHA512 1093a6dd963f37a04c85643001f35026de36280e7ddab61efbc6f94e9ded3efc1f3345ed77864a8308de60d26763a6488d17237519ebca4ec74acfb7a73ae1dc WHIRLPOOL 3e4b04f2b0f3c2a53ad206acdd0cc34547f261911ed11206fc3239549190e19c2b74dbf617321132fcf9355048414f748b0a25e0a6a43df57b1416c1468ea4a2 -DIST phonon-backend-vlc-0.6.1.tar.xz 54892 SHA256 41a37b672fc8df1b51be771bbd6911b653691c12a7d15cd66e195c82edf86d73 SHA512 a2b52cbca5cdfac6b1cdf96b25492f897752222a198a7c730db3ddc18bd8832d6b623738ced65626d3311dcdef0765365b5a5bc3fc8531f3f071a27a6fe01f58 WHIRLPOOL 8829aebb24480aa32554171b00e16c02eeab01b966496e111f9e844b034d23f82c50a56052bb554feb150be27000cbc3bff3a218067fa3c98fa8b449c0ca7329 DIST phonon-backend-vlc-0.6.2.tar.xz 55500 SHA256 d4e01988f217195b910e490e499f35ef4e4a2cfefa46e22b74ba3efac77199fc SHA512 1ae699b5b912ef2f76803c389858ab8b22ff7896912c5b859b0e77bc87eba9a4b79dcd5e20291ae161a0834683dedd3b39bd47db9788ef790a9ba5b4a3fe52f2 WHIRLPOOL 73327cd0bc998682c011820a719d147e31f244a39d1a136cd7d1141877d59358bc263942021ddae4d2896670041e0e302231ed0f4c1bedbf474399c27ec5a253 diff --git a/media-libs/phonon-vlc/files/phonon-vlc-0.6.0-desktop.patch b/media-libs/phonon-vlc/files/phonon-vlc-0.6.0-desktop.patch deleted file mode 100644 index 1f7310a7b0a6..000000000000 --- a/media-libs/phonon-vlc/files/phonon-vlc-0.6.0-desktop.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/vlc.desktop.cmake b/src/vlc.desktop.cmake -index 24efc311d428371db8df77dae78ddacb5c24bf01..9db70625f3f6b916691bd69491b48e61c3721a4e 100644 ---- a/src/vlc.desktop.cmake -+++ b/src/vlc.desktop.cmake -@@ -1,7 +1,7 @@ - [Desktop Entry] - Type=Service - X-KDE-ServiceTypes=PhononBackend --MimeType=application/x-annodex;video/quicktime;video/x-quicktime;audio/x-m4a;application/x-quicktimeplayer;video/mkv;video/msvideo;video/x-msvideo;video/x-flic;audio/x-aiff;audio/aiff;audio/x-pn-aiff;audio/x-realaudio;audio/basic;audio/x-basic;audio/x-pn-au;audio/x-8svx;audio/8svx;audio/x-16sv;audio/168sv;image/x-ilbm;image/ilbm;video/x-anim;video/anim;image/png;image/x-png;video/mng;video/x-mng;audio/x-ogg;audio/x-speex+ogg;application/ogg;application/ogg;audio/vnd.rn-realaudio;audio/x-pn-realaudio-plugin;audio/x-real-audio;application/vnd.rn-realmedia;video/mpeg;video/x-mpeg;audio/x-wav;audio/wav;audio/x-pn-wav;audio/x-pn-windows-acm;audio/mpeg2;audio/x-mpeg2;audio/mpeg3;audio/x-mpeg3;audio/mpeg;audio/x-mpeg;x-mpegurl;audio/x-mpegurl;audio/mp3;audio/mpeg;video/x-ms-asf;application/x-flash-video;audio/x-it;audio/x-s3m;audio/x-xm; -+MimeType=application/x-annodex;video/quicktime;video/x-quicktime;audio/x-m4a;application/x-quicktimeplayer;video/mkv;video/msvideo;video/x-msvideo;video/x-flic;audio/x-aiff;audio/aiff;audio/x-pn-aiff;audio/x-realaudio;audio/basic;audio/x-basic;audio/x-pn-au;audio/x-8svx;audio/8svx;audio/x-16sv;audio/168sv;image/x-ilbm;image/ilbm;video/x-anim;video/anim;image/png;image/x-png;video/mng;video/x-mng;audio/x-ogg;audio/x-speex+ogg;application/ogg;audio/vnd.rn-realaudio;audio/x-pn-realaudio-plugin;audio/x-real-audio;application/vnd.rn-realmedia;video/mpeg;video/x-mpeg;audio/x-wav;audio/wav;audio/x-pn-wav;audio/x-pn-windows-acm;audio/mpeg2;audio/x-mpeg2;audio/mpeg3;audio/x-mpeg3;audio/mpeg;audio/x-mpeg;audio/x-mpegurl;audio/mp3;video/x-ms-asf;application/x-flash-video;audio/x-it;audio/x-s3m;audio/x-xm; - X-KDE-Library=phonon_vlc - X-KDE-PhononBackendInfo-InterfaceVersion=1 - X-KDE-PhononBackendInfo-Version=@PHONON_VLC_VERSION@ diff --git a/media-libs/phonon-vlc/phonon-vlc-0.6.0-r1.ebuild b/media-libs/phonon-vlc/phonon-vlc-0.6.0-r1.ebuild deleted file mode 100644 index ef7f21e9a784..000000000000 --- a/media-libs/phonon-vlc/phonon-vlc-0.6.0-r1.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-0.6.0-r1.ebuild,v 1.7 2013/03/02 21:48:01 hwoarang Exp $ - -EAPI=4 - -MY_PN="phonon-backend-vlc" -MY_P="${MY_PN}-${PV}" -EGIT_REPO_URI="git://anongit.kde.org/${PN}" -[[ ${PV} == 9999 ]] && git_eclass=git-2 -inherit cmake-utils ${git_eclass} -unset git_eclass - -DESCRIPTION="Phonon VLC backend" -HOMEPAGE="https://projects.kde.org/projects/kdesupport/phonon/phonon-vlc" -[[ ${PV} == 9999 ]] || SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/src/${MY_P}.tar.xz" - -LICENSE="LGPL-2.1" - -# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 -[[ ${PV} == 9999 ]] || \ -KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-fbsd" - -SLOT="0" -IUSE="debug" - -RDEPEND=" - >=media-libs/phonon-4.6.0 - >=media-video/vlc-2.0.1[dbus,ogg,vorbis] - >=dev-qt/qtdbus-4.6.0:4 - >=dev-qt/qtgui-4.6.0:4 -" -DEPEND="${RDEPEND} - >=dev-util/automoc-0.9.87 - virtual/pkgconfig -" - -S=${WORKDIR}/${MY_P} - -DOCS=( AUTHORS ) - -PATCHES=( "${FILESDIR}/${P}-desktop.patch" ) - -pkg_postinst() { - elog "For more verbose debug information, export the following variables:" - elog "PHONON_DEBUG=1" - elog "" - elog "To make KDE detect the new backend without reboot, run:" - elog "kbuildsycoca4 --noincremental" -} diff --git a/media-libs/phonon-vlc/phonon-vlc-0.6.1.ebuild b/media-libs/phonon-vlc/phonon-vlc-0.6.1.ebuild deleted file mode 100644 index f7fbf3c35833..000000000000 --- a/media-libs/phonon-vlc/phonon-vlc-0.6.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-0.6.1.ebuild,v 1.3 2013/03/02 21:48:01 hwoarang Exp $ - -EAPI=4 - -MY_PN="phonon-backend-vlc" -MY_P="${MY_PN}-${PV}" -EGIT_REPO_URI="git://anongit.kde.org/${PN}" -[[ ${PV} == 9999 ]] && git_eclass=git-2 -inherit cmake-utils ${git_eclass} -unset git_eclass - -DESCRIPTION="Phonon VLC backend" -HOMEPAGE="https://projects.kde.org/projects/kdesupport/phonon/phonon-vlc" -[[ ${PV} == 9999 ]] || SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/src/${MY_P}.tar.xz" - -LICENSE="LGPL-2.1" - -# Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 -[[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd" - -SLOT="0" -IUSE="debug" - -RDEPEND=" - >=media-libs/phonon-4.6.0 - >=media-video/vlc-2.0.1[dbus,ogg,vorbis] - >=dev-qt/qtdbus-4.6.0:4 - >=dev-qt/qtgui-4.6.0:4 -" -DEPEND="${RDEPEND} - >=dev-util/automoc-0.9.87 - virtual/pkgconfig -" - -S=${WORKDIR}/${MY_P} - -DOCS=( AUTHORS ) - -pkg_postinst() { - elog "For more verbose debug information, export the following variables:" - elog "PHONON_DEBUG=1" - elog "" - elog "To make KDE detect the new backend without reboot, run:" - elog "kbuildsycoca4 --noincremental" -} diff --git a/media-libs/phonon-vlc/phonon-vlc-0.6.2.ebuild b/media-libs/phonon-vlc/phonon-vlc-0.6.2.ebuild index faacad609796..d350bf92dcf0 100644 --- a/media-libs/phonon-vlc/phonon-vlc-0.6.2.ebuild +++ b/media-libs/phonon-vlc/phonon-vlc-0.6.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/media-libs/phonon-vlc/phonon-vlc-0.6.2.ebuild,v 1.4 2013/03/31 16:58:54 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-0.6.2.ebuild,v 1.5 2013/04/09 16:42:26 ago Exp $ EAPI=5 @@ -19,7 +19,7 @@ LICENSE="LGPL-2.1" # Don't move KEYWORDS on the previous line or ekeyword won't work # 399061 [[ ${PV} == 9999 ]] || \ -KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-fbsd" +KEYWORDS="amd64 ~arm ppc ppc64 x86 ~amd64-fbsd" SLOT="0" IUSE="debug" diff --git a/media-sound/amarok/amarok-2.7.0.ebuild b/media-sound/amarok/amarok-2.7.0.ebuild index 278693e0f132..de1ed30e56b7 100644 --- a/media-sound/amarok/amarok-2.7.0.ebuild +++ b/media-sound/amarok/amarok-2.7.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/media-sound/amarok/amarok-2.7.0.ebuild,v 1.4 2013/03/02 21:52:47 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/amarok/amarok-2.7.0.ebuild,v 1.7 2013/04/10 18:35:15 ago Exp $ EAPI=4 @@ -15,7 +15,7 @@ DESCRIPTION="Advanced audio player based on KDE framework." HOMEPAGE="http://amarok.kde.org/" if [[ ${PV} != *9999* ]]; then SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2" - KEYWORDS="~amd64 ~ppc ~x86" + KEYWORDS="amd64 ppc x86" else KEYWORDS="" fi diff --git a/media-sound/ardour/ardour-3.0.ebuild b/media-sound/ardour/ardour-3.0.ebuild index 245a0965f101..c4d5d98f4249 100644 --- a/media-sound/ardour/ardour-3.0.ebuild +++ b/media-sound/ardour/ardour-3.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/media-sound/ardour/ardour-3.0.ebuild,v 1.2 2013/03/20 20:28:16 nativemad Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/ardour/ardour-3.0.ebuild,v 1.4 2013/04/09 06:02:23 nativemad Exp $ EAPI=5 inherit eutils flag-o-matic toolchain-funcs waf-utils @@ -67,14 +67,12 @@ src_configure() { waf-utils_src_configure \ --destdir="${D}" \ --prefix=/usr \ - --jobs=${MAKEOPTS:2} \ $(use lv2 && echo "--lv2" || echo "--no-lv2") \ $(use nls && echo "--nls" || echo "--no-nls") \ $(use debug && echo "--stl-debug" && echo "--rt-alloc-debug") \ $((use altivec || use sse) && echo "--fpu-optimization" || echo "--no-fpu-optimization") \ $(use curl || echo "--no-freesound") \ $(use doc && echo "--docs") -# $(use test && echo "--test") } src_install() { diff --git a/media-sound/mpc/Manifest b/media-sound/mpc/Manifest index 5db881383e5b..0234b3f75997 100644 --- a/media-sound/mpc/Manifest +++ b/media-sound/mpc/Manifest @@ -1 +1,2 @@ DIST mpc-0.22.tar.bz2 102296 SHA256 cc42811d7ed8e65d50a0aaf1edf29597e3e264b06026b40da88a8a763a2dd334 SHA512 64492267e17ca33d4fd191ce0222011b6c807ad330aa877bafee83c3027d3a6e6f663f0c4aec96d5980777537f877f355f27605791bc8e61e51a20d74afaa4d1 WHIRLPOOL 804899a96baeb6b37dc936a0f9f7cd754112ad378c6c65b7ac2a685b67d0de5aa2060748ef04fa29d86d3f84849516ce0bbaf8be6f04210d798919a8c6c9efd5 +DIST mpc-0.23.tar.bz2 103557 SHA256 29bab8f3018507c761eabcd9bb86856b3c3436f3ee1ba0456b0e17fc1c3729c7 SHA512 b08ae42a44e614f8dfe026736a5f5e35b07b84883e187efd398a97d81c661886f58acc6aa9f7054d6c3f9376fd0bceaf9708b53feda3544177b90900ef6b6d33 WHIRLPOOL 833068b1dbbf579ae0709df07f80ea2b24756e1092e698a12321dabbbd79db88a15acf9e4ab04b439c864c9f5c2eb11cddfd5ae48d5841950b19fe8ba7224e2a diff --git a/media-sound/mpc/mpc-0.23.ebuild b/media-sound/mpc/mpc-0.23.ebuild new file mode 100644 index 000000000000..412a29f80ccb --- /dev/null +++ b/media-sound/mpc/mpc-0.23.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/media-sound/mpc/mpc-0.23.ebuild,v 1.1 2013/04/10 13:10:42 angelos Exp $ + +EAPI=4 +inherit bash-completion-r1 + +DESCRIPTION="A commandline client for Music Player Daemon (media-sound/mpd)" +HOMEPAGE="http://www.musicpd.org" +SRC_URI="http://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86" +IUSE="iconv" + +RDEPEND=">=media-libs/libmpdclient-2.2 + iconv? ( virtual/libiconv )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +DOCS=( AUTHORS NEWS README doc/mpd-m3u-handler.sh doc/mppledit + doc/mpd-pls-handler.sh ) + +src_configure() { + econf $(use_enable iconv) \ + --docdir="${EPREFIX}"/usr/share/doc/${PF} +} + +src_install() { + default + newbashcomp doc/mpc-completion.bash ${PN} +} diff --git a/media-sound/mpd/Manifest b/media-sound/mpd/Manifest index 8826b1f0af2f..44f1e8c66d7e 100644 --- a/media-sound/mpd/Manifest +++ b/media-sound/mpd/Manifest @@ -1,4 +1,3 @@ DIST mpd-0.16.8.tar.bz2 491170 SHA256 35183ae4a706391f5d739e4378b74f516952adda09a260fecfd531a58b0fff17 SHA512 ce6f0a004dec0e7269c1029c04c8d8f249ee5aeae362f60af6f617dc789e718a12b55d9efb928d7e332d6e9c8e960961b98174c57f5ff5a2f9f5b4999906a2c8 WHIRLPOOL 22713a7a684262c73ffde0ab063383dc84df6080de426b27712c8ac353f2f5d18ac69df918fb6bebd62dbd8da37361102573fdbd2fdfcf19ac4b22a4123a7e92 -DIST mpd-0.17.1.tar.bz2 546540 SHA256 b18cdb1b779ca2ab323e212a0af4a567b7da4881a4e96868a8979bdfdbe7c2e8 SHA512 f3fb6395b16c503d21f87eeadac7abe319d66cf4953c738c43c6f80b5b1c2db9c7bc9ef52051db814aada00d336255cf5fa67d11075edb38ba5fbe7122db4eb7 WHIRLPOOL 9ae3f129d5da734336d46a0f72179b60dcbcc53b3ab1cf4959d8a7dd1cac683bbf2959cd93fc1366b7eaf0c9888c018de730c0500cd16dd99eff4e6994dcecf3 -DIST mpd-0.17.2.tar.bz2 548182 SHA256 48ff361a35df2751610e9716930e29235c1bd77224e57eb9ada1f04950668eb7 SHA512 9637b06b1b5d8311fc12eb0aa9a8d1bec96b7995329ab6fc0b8a6c7d6d0648cc931982e550f456648c9e08d29e33ab7f066b2bb9ad9c105e60a08cc8bf0ba599 WHIRLPOOL 0991ff7b094792d27d2d9865a985e5a0180042c1e28b2fb4ecc5553b909a4e3b1492fc869893277701ed9824703344faa12e9aaa681a3ded044e33680e83358c DIST mpd-0.17.3.tar.bz2 548655 SHA256 37867e1859c51cce65ca793a641a61e975fbf3c564a988d7a54270e8698d34c6 SHA512 e421e723cd7d46b87c07d5a3be5aaa592453b6c7d2fa02440cc8ac5a1f931126f5011b0fed9c8d0fcfb142dd7290db67ca2638f75fa8b41d38f2a825816621e1 WHIRLPOOL b841cf2814c457370d06f8626acc7e0f51c1ae168cc33a611ac87ab6eaa730e6820c87407b7100cc576721b582fb044ff03c10f0ba0073fee06f7425acd64ec2 +DIST mpd-0.17.4.tar.bz2 582579 SHA256 ad1559c8db4438d76b7fc41f0b362be5ec4046a5d301f0f7a50e1eea67f85cd4 SHA512 6ad218bf0c8c01667b5bf4234d6350889822e898bd143680d572507a088f3101c23f693252d566f64d2b0fe3699d25970334b52281751b90dbefd385d7c8d729 WHIRLPOOL cd399947dea25d2c60600fb6a2b7fddf36bb0dddd1f2761dbb479d09687699bbd2b967836d21eb7534c8c1d3c93cdff79851ac1e0ff88514b1fa03c4e4e42685 diff --git a/media-sound/mpd/files/mpd-0.17.4-mikmod-crash.patch b/media-sound/mpd/files/mpd-0.17.4-mikmod-crash.patch new file mode 100644 index 000000000000..5f58a5f8176e --- /dev/null +++ b/media-sound/mpd/files/mpd-0.17.4-mikmod-crash.patch @@ -0,0 +1,30 @@ +From be3c8154ff9dc309caf41afe917b001e887e2e3e Mon Sep 17 00:00:00 2001 +From: Christoph Mende +Date: Wed, 10 Apr 2013 10:53:02 +0000 +Subject: [PATCH] decoder/mikmod: use MikMod_free() to free the title + +Player_LoadTitle() returns an aligned pointer that cannot be freed with +free(). The correct way to free the pointer is MikMod_free() which +extracts the original pointer from the buffer. + +Signed-off-by: Christoph Mende +--- + src/decoder/mikmod_decoder_plugin.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/decoder/mikmod_decoder_plugin.c b/src/decoder/mikmod_decoder_plugin.c +index 5681a7a..5b5a1c6 100644 +--- a/src/decoder/mikmod_decoder_plugin.c ++++ b/src/decoder/mikmod_decoder_plugin.c +@@ -200,7 +200,7 @@ mikmod_decoder_scan_file(const char *path_fs, + if (title != NULL) { + tag_handler_invoke_tag(handler, handler_ctx, + TAG_TITLE, title); +- free(title); ++ MikMod_free(title); + } + + return true; +-- +1.8.1.2 + diff --git a/media-sound/mpd/files/mpd.logrotate b/media-sound/mpd/files/mpd.logrotate new file mode 100644 index 000000000000..94933dfb1f80 --- /dev/null +++ b/media-sound/mpd/files/mpd.logrotate @@ -0,0 +1,6 @@ +/var/lib/mpd/log { + missingok + postrotate + [ -f /var/run/mpd.pid ] && /bin/kill -HUP `cat /var/run/mpd.pid` + endscript +} diff --git a/media-sound/mpd/mpd-0.17.2.ebuild b/media-sound/mpd/mpd-0.17.4-r2.ebuild similarity index 86% rename from media-sound/mpd/mpd-0.17.2.ebuild rename to media-sound/mpd/mpd-0.17.4-r2.ebuild index 3ecc884ff6c5..5b4dede3c62a 100644 --- a/media-sound/mpd/mpd-0.17.2.ebuild +++ b/media-sound/mpd/mpd-0.17.4-r2.ebuild @@ -1,13 +1,13 @@ -# 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-sound/mpd/mpd-0.17.2.ebuild,v 1.1 2012/10/06 20:50:20 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/mpd/mpd-0.17.4-r2.ebuild,v 1.1 2013/04/10 12:11:44 angelos Exp $ EAPI=4 -inherit eutils flag-o-matic linux-info multilib systemd user +inherit eutils flag-o-matic linux-info multilib readme.gentoo systemd user DESCRIPTION="The Music Player Daemon (mpd)" HOMEPAGE="http://www.musicpd.org" -SRC_URI="mirror://sourceforge/musicpd/${P}.tar.bz2" +SRC_URI="http://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" @@ -37,7 +37,7 @@ RDEPEND="! + + + + + NVIDIA Drivers: Privilege escalation + Two vulnerabilities in NVIDIA drivers may allow a local attacker to + gain escalated privileges. + + nvidia-drivers + April 08, 2013 + April 08, 2013: 1 + 429614 + 464248 + remote + + + 304.88 + 304.88 + + + +

The NVIDIA drivers provide X11 and GLX support for NVIDIA graphic + boards. +

+
+ +

Two vulnerabilities have been discovered in NVIDIA drivers:

+ +
    +
  • A vulnerability has been found in the way NVIDIA drivers handle + read/write access to GPU device nodes, allowing access to arbitrary + system memory locations (CVE-2012-4225). +
  • +
  • A buffer overflow error has been discovered in NVIDIA drivers + (CVE-2013-0131). +
  • +
+ +

NOTE: Exposure to CVE-2012-4225 is reduced in Gentoo due to 660 + permissions being used on the GPU device nodes by default. +

+
+ +

A local attacker could gain escalated privileges.

+
+ +

There is no known workaround at this time.

+
+ +

All NVIDIA driver users should upgrade to the latest version:

+ + + # emerge --sync + # emerge --ask --oneshot --verbose + ">=x11-drivers/nvidia-drivers-304.88" + +
+ + CVE-2012-4225 + CVE-2013-0131 + + ackle + ackle +
diff --git a/metadata/glsa/timestamp.chk b/metadata/glsa/timestamp.chk index 73523cb9cc67..9119905b3da8 100644 --- a/metadata/glsa/timestamp.chk +++ b/metadata/glsa/timestamp.chk @@ -1 +1 @@ -Mon, 08 Apr 2013 12:36:56 +0000 +Wed, 10 Apr 2013 19:07:40 +0000 diff --git a/metadata/md5-cache/app-accessibility/pocketsphinx-0.8 b/metadata/md5-cache/app-accessibility/pocketsphinx-0.8 index 65ba1a5563e3..30d30a987689 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 ) python_targets_python2_7? ( dev-lang/python: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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=85dac1a305560efca83217d7c2705c8f diff --git a/metadata/md5-cache/app-accessibility/sphinxbase-0.8 b/metadata/md5-cache/app-accessibility/sphinxbase-0.8 index 19a32f457ed2..165ac4da2e2a 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 ) python_targets_python2_7? ( dev-lang/python: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 cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ff0244c2381d2c4a869c35cd901e3058 diff --git a/metadata/md5-cache/app-admin/ansible-0.9-r1 b/metadata/md5-cache/app-admin/ansible-0.9-r1 index 7b5f0513f0a5..7890df8ba743 100644 --- a/metadata/md5-cache/app-admin/ansible-0.9-r1 +++ b/metadata/md5-cache/app-admin/ansible-0.9-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/jinja dev-python/pyyaml paramiko? ( dev-python/paramiko ) !paramiko? ( virtual/ssh net-misc/sshpass ) sudo? ( app-admin/sudo ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=https://github.com/ansible/ansible/archive/v0.9.tar.gz -> ansible-0.9.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5452482857b088120ea52f988f6e34f3 diff --git a/metadata/md5-cache/app-admin/ansible-1.0 b/metadata/md5-cache/app-admin/ansible-1.0 index 12a2a1ed2799..0ac8d0cae4d5 100644 --- a/metadata/md5-cache/app-admin/ansible-1.0 +++ b/metadata/md5-cache/app-admin/ansible-1.0 @@ -9,5 +9,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 ) python_targets_python2_7? ( dev-lang/python: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=https://github.com/ansible/ansible/archive/v1.0.tar.gz -> ansible-1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=164ea2f5523a58659a618fe24556722f diff --git a/metadata/md5-cache/app-admin/ansible-9999 b/metadata/md5-cache/app-admin/ansible-9999 index be0fb3376862..72ac77f6d5cb 100644 --- a/metadata/md5-cache/app-admin/ansible-9999 +++ b/metadata/md5-cache/app-admin/ansible-9999 @@ -7,5 +7,5 @@ IUSE=examples test python_targets_python2_6 python_targets_python2_7 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 ) python_targets_python2_7? ( dev-lang/python: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 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=faaded0adc4322d8a4e7efe5f56bb6be diff --git a/metadata/md5-cache/app-admin/authbind-2.1.1 b/metadata/md5-cache/app-admin/authbind-2.1.1 new file mode 100644 index 000000000000..556e49eef1b1 --- /dev/null +++ b/metadata/md5-cache/app-admin/authbind-2.1.1 @@ -0,0 +1,10 @@ +DEFINED_PHASES=configure install prepare +DESCRIPTION=Bind sockets to privileged ports without root +EAPI=5 +HOMEPAGE=http://www.chiark.greenend.org.uk/ucgi/~ian/git/authbind.git/ +KEYWORDS=~amd64 +LICENSE=GPL-2+ +SLOT=0 +SRC_URI=mirror://debian/pool/main/a/authbind/authbind_2.1.1.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=5db85167daf323709f323325e18f07dc diff --git a/metadata/md5-cache/app-admin/clustershell-1.6 b/metadata/md5-cache/app-admin/clustershell-1.6 index c3ae253899c0..1f7799755de9 100644 --- a/metadata/md5-cache/app-admin/clustershell-1.6 +++ b/metadata/md5-cache/app-admin/clustershell-1.6 @@ -9,5 +9,5 @@ LICENSE=CeCILL-C RDEPEND=dev-libs/openssl python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=70a6faa9e3316d8e8475af283d2e2046 diff --git a/metadata/md5-cache/app-admin/eclean-kernel-0.3.2 b/metadata/md5-cache/app-admin/eclean-kernel-0.3.2 index 13090b8ba546..4e9725553cc7 100644 --- a/metadata/md5-cache/app-admin/eclean-kernel-0.3.2 +++ b/metadata/md5-cache/app-admin/eclean-kernel-0.3.2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/eclean-kernel/downloads/eclean-kernel-0.3.2.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b07fcb1c62f73047313b29a5dc18d927 diff --git a/metadata/md5-cache/app-admin/eclean-kernel-0.3.3 b/metadata/md5-cache/app-admin/eclean-kernel-0.3.3 index 8f5b6688b9db..17b4f5f99b83 100644 --- a/metadata/md5-cache/app-admin/eclean-kernel-0.3.3 +++ b/metadata/md5-cache/app-admin/eclean-kernel-0.3.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/eclean-kernel/downloads/eclean-kernel-0.3.3.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2b6afc97008118d6b2a8662da7f6110b diff --git a/metadata/md5-cache/app-admin/eclean-kernel-9999 b/metadata/md5-cache/app-admin/eclean-kernel-9999 index 6695bd94b980..e0e58a93eb59 100644 --- a/metadata/md5-cache/app-admin/eclean-kernel-9999 +++ b/metadata/md5-cache/app-admin/eclean-kernel-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 LICENSE=BSD RDEPEND=kernel_linux? ( dev-python/pymountboot[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3c9f34d7f88c9572a6cf4c9e3a34054e diff --git a/metadata/md5-cache/app-admin/eselect-java-0.1.0 b/metadata/md5-cache/app-admin/eselect-java-0.1.0 new file mode 100644 index 000000000000..00d601f2b502 --- /dev/null +++ b/metadata/md5-cache/app-admin/eselect-java-0.1.0 @@ -0,0 +1,11 @@ +DEFINED_PHASES=- +DESCRIPTION=A set of eselect modules for Java +EAPI=5 +HOMEPAGE=http://www.gentoo.org/proj/en/java/ +KEYWORDS=~amd64 +LICENSE=GPL-2 +PDEPEND=>=virtual/jre-1.5 +RDEPEND=!app-admin/eselect-ecj !app-admin/eselect-maven !=app-admin/eselect-1.2.4 !=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[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[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/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto >=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 >=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[sqlite] <=dev-python/sqlalchemy-0.7.9[sqlite] ) mysql? ( >=dev-python/sqlalchemy-0.7[mysql] <=dev-python/sqlalchemy-0.7.9[mysql] ) postgres? ( >=dev-python/sqlalchemy-0.7[postgres] <=dev-python/sqlalchemy-0.7.9[postgres] ) ldap? ( dev-python/python-ldap ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( ldap mysql postgres sqlite ) +SLOT=0 +SRC_URI=http://launchpad.net/glance/grizzly/2013.1/+download/glance-2013.1.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=c53cf0b474fbad9bfb36500d8465df08 diff --git a/metadata/md5-cache/app-admin/glance-9999 b/metadata/md5-cache/app-admin/glance-9999 index e886583349ce..a6cfb8ab8d8f 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-2.1.1 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[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/kombu[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pycrypto 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 =dev-python/webob-1.0.8-r1[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-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=4 +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.20.1-Source.zip +SRC_URI=mirror://sourceforge/keepass/KeePass-2.22-Source.zip _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=533b449dce59be05d9198c5f8f747e57 +_md5_=5c571ed3335b9bd6f216356cdfab242a diff --git a/metadata/md5-cache/app-admin/logstalgia-1.0.3 b/metadata/md5-cache/app-admin/logstalgia-1.0.3-r1 similarity index 74% rename from metadata/md5-cache/app-admin/logstalgia-1.0.3 rename to metadata/md5-cache/app-admin/logstalgia-1.0.3-r1 index ac838a59f02c..384aa2d01691 100644 --- a/metadata/md5-cache/app-admin/logstalgia-1.0.3 +++ b/metadata/md5-cache/app-admin/logstalgia-1.0.3-r1 @@ -5,7 +5,7 @@ EAPI=5 HOMEPAGE=http://code.google.com/p/logstalgia/ KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 -RDEPEND=dev-libs/libpcre media-libs/libsdl[opengl] media-libs/libpng media-libs/sdl-image media-libs/ftgl virtual/jpeg virtual/glu virtual/opengl +RDEPEND=dev-libs/libpcre media-libs/libsdl[opengl] media-libs/libpng:0= media-libs/sdl-image media-libs/ftgl virtual/jpeg virtual/glu virtual/opengl SLOT=0 SRC_URI=http://logstalgia.googlecode.com/files/logstalgia-1.0.3.tar.gz -_md5_=83c2901f874edc416ae5b30508576e57 +_md5_=f0a62e63b833bb1b548da7205b758478 diff --git a/metadata/md5-cache/app-admin/salt-0.13.1 b/metadata/md5-cache/app-admin/salt-0.13.1 index 8bf649c490c2..d09ad3112737 100644 --- a/metadata/md5-cache/app-admin/salt-0.13.1 +++ b/metadata/md5-cache/app-admin/salt-0.13.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/pyzmq-2.1.9 dev-python/msgpack dev-python/pyyaml dev-python/m2crypto dev-python/pycrypto dev-python/pycryptopp dev-python/jinja ldap? ( dev-python/python-ldap ) openssl? ( dev-python/pyopenssl ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo ) mysql? ( dev-python/mysql-python ) redis? ( dev-python/redis-py ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/s/salt/salt-0.13.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ca0f851d873afee9d51d9090ef124ec9 diff --git a/metadata/md5-cache/app-admin/salt-0.14.0 b/metadata/md5-cache/app-admin/salt-0.14.0 index c9c567ab3f5b..15d4618a1c42 100644 --- a/metadata/md5-cache/app-admin/salt-0.14.0 +++ b/metadata/md5-cache/app-admin/salt-0.14.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/pyzmq-2.1.9 dev-python/msgpack dev-python/pyyaml dev-python/m2crypto dev-python/pycrypto dev-python/pycryptopp dev-python/jinja ldap? ( dev-python/python-ldap ) openssl? ( dev-python/pyopenssl ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo ) mysql? ( dev-python/mysql-python ) redis? ( dev-python/redis-py ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/s/salt/salt-0.14.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8ab5b399db157a2154270d2010880040 diff --git a/metadata/md5-cache/app-admin/salt-9999 b/metadata/md5-cache/app-admin/salt-9999 index 81a18b380050..d0311b7d1377 100644 --- a/metadata/md5-cache/app-admin/salt-9999 +++ b/metadata/md5-cache/app-admin/salt-9999 @@ -7,5 +7,5 @@ IUSE=ldap libvirt mongodb mysql openssl redis test python_targets_python2_6 pyth LICENSE=Apache-2.0 RDEPEND=>=dev-python/pyzmq-2.1.9 dev-python/msgpack dev-python/pyyaml dev-python/m2crypto dev-python/pycrypto dev-python/pycryptopp dev-python/jinja ldap? ( dev-python/python-ldap ) openssl? ( dev-python/pyopenssl ) libvirt? ( app-emulation/libvirt[python] ) mongodb? ( dev-python/pymongo ) mysql? ( dev-python/mysql-python ) redis? ( dev-python/redis-py ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ab885adcaf1b50edca676487fbcbd046 diff --git a/metadata/md5-cache/app-admin/sudo-1.8.6_p7 b/metadata/md5-cache/app-admin/sudo-1.8.6_p7 index 3b438df3820c..27693c2dd5cc 100644 --- a/metadata/md5-cache/app-admin/sudo-1.8.6_p7 +++ b/metadata/md5-cache/app-admin/sudo-1.8.6_p7 @@ -4,11 +4,11 @@ DESCRIPTION=Allows users or groups to run commands as other users EAPI=4 HOMEPAGE=http://www.sudo.ws/ IUSE=ldap nls pam offensive selinux skey -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~sparc-solaris LICENSE=ISC BSD RDEPEND=pam? ( virtual/pam ) skey? ( >=sys-auth/skey-1.1.5-r1 ) ldap? ( >=net-nds/openldap-2.1.30-r1 dev-libs/cyrus-sasl ) sys-libs/zlib selinux? ( sec-policy/selinux-sudo ) ldap? ( dev-lang/perl ) pam? ( sys-auth/pambase ) >=app-misc/editor-wrapper-3 virtual/editor virtual/mta REQUIRED_USE=pam? ( !skey ) skey? ( !pam ) SLOT=0 SRC_URI=http://www.sudo.ws/sudo/dist/sudo-1.8.6p7.tar.gz ftp://ftp.sudo.ws/pub/sudo/sudo-1.8.6p7.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=88e4ca8e5c48333ab0d7e6e0a8a740db +_md5_=8b5fb4bff672643637a0cb0d91cbf533 diff --git a/metadata/md5-cache/app-admin/sysklogd-1.5-r2 b/metadata/md5-cache/app-admin/sysklogd-1.5-r2 index ff921a53c752..83cf0678c7ec 100644 --- a/metadata/md5-cache/app-admin/sysklogd-1.5-r2 +++ b/metadata/md5-cache/app-admin/sysklogd-1.5-r2 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile install unpack DESCRIPTION=Standard log daemons HOMEPAGE=http://www.infodrom.org/projects/sysklogd/ -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +KEYWORDS=~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc x86 LICENSE=BSD RDEPEND=dev-lang/perl sys-apps/debianutils RESTRICT=test SLOT=0 SRC_URI=http://www.infodrom.org/projects/sysklogd/download/sysklogd-1.5.tar.gz mirror://debian/pool/main/s/sysklogd/sysklogd_1.5-6.diff.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9f4c3351d450fa2f8ceaaa9e5b9a3e5a +_md5_=8402e76febb1723fd1afb88d25d31fd3 diff --git a/metadata/md5-cache/app-admin/system-config-printer-common-1.3.12 b/metadata/md5-cache/app-admin/system-config-printer-common-1.3.12 index 24c1132d1bfb..74ada81db1e9 100644 --- a/metadata/md5-cache/app-admin/system-config-printer-common-1.3.12 +++ b/metadata/md5-cache/app-admin/system-config-printer-common-1.3.12 @@ -4,11 +4,11 @@ DESCRIPTION=Common modules of Red Hat's printer administration tool EAPI=4 HOMEPAGE=http://cyberelk.net/tim/software/system-config-printer/ IUSE=doc policykit -KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh sparc x86 +KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 sh sparc x86 LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2 dev-libs/libxml2[python] dev-python/dbus-python >=dev-python/pycups-1.9.60 dev-python/pycurl >=dev-python/pygobject-2.21.5:2 net-print/cups[dbus] >=virtual/udev-172 virtual/libusb:1 !=sys-auth/polkit-0.104-r1 ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) RESTRICT=test SLOT=0 SRC_URI=http://cyberelk.net/tim/data/system-config-printer/1.3/system-config-printer-1.3.12.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=84112d32b26f6a73ab8e27222e6d4af1 +_md5_=693001de3ceb80782e0634dae06efd59 diff --git a/metadata/md5-cache/app-admin/system-config-printer-gnome-1.3.12 b/metadata/md5-cache/app-admin/system-config-printer-gnome-1.3.12 index 997508148806..4549f7c1a342 100644 --- a/metadata/md5-cache/app-admin/system-config-printer-gnome-1.3.12 +++ b/metadata/md5-cache/app-admin/system-config-printer-gnome-1.3.12 @@ -4,11 +4,11 @@ DESCRIPTION=GNOME frontend for a Red Hat's printer administration tool EAPI=3 HOMEPAGE=http://cyberelk.net/tim/software/system-config-printer/ IUSE=gnome-keyring linguas_ar linguas_as linguas_bg linguas_bn_IN linguas_bn linguas_br linguas_bs linguas_ca linguas_cs linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_es linguas_et linguas_fa linguas_fi linguas_fr linguas_gu linguas_he linguas_hi linguas_hr linguas_hu linguas_hy linguas_id linguas_is linguas_it linguas_ja linguas_ka linguas_kn linguas_ko linguas_lo linguas_lv linguas_mai linguas_mk linguas_ml linguas_mr linguas_ms linguas_nb linguas_nl linguas_nn linguas_or linguas_pa linguas_pl linguas_pt_BR linguas_pt linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_sr@latin linguas_sr linguas_sv linguas_ta linguas_te linguas_th linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 LICENSE=GPL-2 RDEPEND=~app-admin/system-config-printer-common-1.3.12 dev-python/notify-python >=dev-python/pycups-1.9.60 >=dev-python/pygtk-2.4 gnome-keyring? ( dev-python/gnome-keyring-python ) =dev-lang/python-2* =dev-lang/python-2*[xml] RESTRICT=test SLOT=0 SRC_URI=http://cyberelk.net/tim/data/system-config-printer/1.3/system-config-printer-1.3.12.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e77ed31d2a1ffc0997450eeaf6a07d4d +_md5_=fd9a178c3d8eb2adf65d62cba40ffc13 diff --git a/metadata/md5-cache/app-admin/webapp-config-9999 b/metadata/md5-cache/app-admin/webapp-config-9999 index c234beb6fcbf..0e3751cf3120 100644 --- a/metadata/md5-cache/app-admin/webapp-config-9999 +++ b/metadata/md5-cache/app-admin/webapp-config-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4080e491059832727160111227ce0dc2 diff --git a/metadata/md5-cache/app-arch/gzip-1.5 b/metadata/md5-cache/app-arch/gzip-1.5 index b96e4a294c2a..43edad9d1101 100644 --- a/metadata/md5-cache/app-arch/gzip-1.5 +++ b/metadata/md5-cache/app-arch/gzip-1.5 @@ -7,5 +7,5 @@ KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64 LICENSE=GPL-3 SLOT=0 SRC_URI=mirror://gnu-alpha/gzip/gzip-1.5.tar.xz mirror://gnu/gzip/gzip-1.5.tar.xz mirror://gentoo/gzip-1.5.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a6203e65eabde664ff8a2fe3e39922ff diff --git a/metadata/md5-cache/app-arch/makeself-2.1.5-r1 b/metadata/md5-cache/app-arch/makeself-2.1.5-r1 index a3e975ca2cba..935ba18521d0 100644 --- a/metadata/md5-cache/app-arch/makeself-2.1.5-r1 +++ b/metadata/md5-cache/app-arch/makeself-2.1.5-r1 @@ -5,5 +5,5 @@ KEYWORDS=amd64 hppa ppc x86 ~amd64-linux ~x86-linux LICENSE=GPL-2 SLOT=0 SRC_URI=http://www.megastep.org/makeself/makeself-2.1.5.run -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=77dfc51d1088e17ee42610301ee39852 diff --git a/metadata/md5-cache/app-arch/upx-bin-3.07-r1 b/metadata/md5-cache/app-arch/upx-bin-3.07-r1 index 7e181ac9040f..334587cbfae5 100644 --- a/metadata/md5-cache/app-arch/upx-bin-3.07-r1 +++ b/metadata/md5-cache/app-arch/upx-bin-3.07-r1 @@ -8,5 +8,5 @@ RDEPEND=!app-arch/upx-ucl RESTRICT=strip SLOT=0 SRC_URI=x86? ( http://upx.sourceforge.net/download/upx-3.07-i386_linux.tar.bz2 ) amd64? ( http://upx.sourceforge.net/download/upx-3.07-amd64_linux.tar.bz2 ) ppc? ( http://upx.sourceforge.net/download/upx-3.07-powerpc_linux.tar.bz2 ) arm? ( http://upx.sourceforge.net/download/upx-3.07-armeb_linux.tar.bz2 ) mips? ( http://upx.sourceforge.net/download/upx-3.07-mipsel_linux.tar.bz2 ) -_eclasses_=pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=eeaa37357a4a6a42e565c8548fa0a153 diff --git a/metadata/md5-cache/app-arch/upx-bin-3.08 b/metadata/md5-cache/app-arch/upx-bin-3.08 index 7ea743dab89a..bd808dd1fbf2 100644 --- a/metadata/md5-cache/app-arch/upx-bin-3.08 +++ b/metadata/md5-cache/app-arch/upx-bin-3.08 @@ -8,5 +8,5 @@ RDEPEND=!app-arch/upx-ucl RESTRICT=strip SLOT=0 SRC_URI=x86? ( http://upx.sourceforge.net/download/upx-3.08-i386_linux.tar.bz2 ) amd64? ( http://upx.sourceforge.net/download/upx-3.08-amd64_linux.tar.bz2 ) ppc? ( http://upx.sourceforge.net/download/upx-3.08-powerpc_linux.tar.bz2 ) arm? ( http://upx.sourceforge.net/download/upx-3.08-armeb_linux.tar.bz2 ) mips? ( http://upx.sourceforge.net/download/upx-3.08-mipsel_linux.tar.bz2 ) -_eclasses_=pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=c10a391812a472b07db38bc4ab973ec8 diff --git a/metadata/md5-cache/app-arch/upx-bin-3.09 b/metadata/md5-cache/app-arch/upx-bin-3.09 index 5b03f204c8b3..3040e7a19147 100644 --- a/metadata/md5-cache/app-arch/upx-bin-3.09 +++ b/metadata/md5-cache/app-arch/upx-bin-3.09 @@ -8,5 +8,5 @@ RDEPEND=!app-arch/upx-ucl RESTRICT=strip SLOT=0 SRC_URI=x86? ( http://upx.sourceforge.net/download/upx-3.09-i386_linux.tar.bz2 ) amd64? ( http://upx.sourceforge.net/download/upx-3.09-amd64_linux.tar.bz2 ) ppc? ( http://upx.sourceforge.net/download/upx-3.09-powerpc_linux.tar.bz2 ) arm? ( http://upx.sourceforge.net/download/upx-3.09-armeb_linux.tar.bz2 ) mips? ( http://upx.sourceforge.net/download/upx-3.09-mipsel_linux.tar.bz2 ) -_eclasses_=pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=62b7d54074cdc7b5dd30d460b7404982 diff --git a/metadata/md5-cache/app-backup/amanda-3.3.3 b/metadata/md5-cache/app-backup/amanda-3.3.3 index d30e826654a1..818b51e61b93 100644 --- a/metadata/md5-cache/app-backup/amanda-3.3.3 +++ b/metadata/md5-cache/app-backup/amanda-3.3.3 @@ -10,4 +10,4 @@ RDEPEND=sys-libs/readline virtual/awk app-arch/tar >=dev-lang/perl-5.6 app-arch/ SLOT=0 SRC_URI=mirror://sourceforge/amanda/amanda-3.3.3.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e1c1133258bc2b704df85f64797ff07c +_md5_=7fdda2332cdb2303dc0790b6191a99ef diff --git a/metadata/md5-cache/app-backup/duplicity-0.6.21 b/metadata/md5-cache/app-backup/duplicity-0.6.21 index 45fd130a58cd..f27888159bb4 100644 --- a/metadata/md5-cache/app-backup/duplicity-0.6.21 +++ b/metadata/md5-cache/app-backup/duplicity-0.6.21 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=net-libs/librsync app-crypt/gnupg dev-python/paramiko[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/pexpect-2.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] s3? ( dev-python/boto[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 ) python_targets_python2_7? ( dev-lang/python: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=http://code.launchpad.net/duplicity/0.6-series/0.6.21/+download/duplicity-0.6.21.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c44786dd140ea0ac6863d3afdb2f4a0a diff --git a/metadata/md5-cache/app-backup/obnam-1.4 b/metadata/md5-cache/app-backup/obnam-1.4 index 1d53a3021636..ab821e78d44d 100644 --- a/metadata/md5-cache/app-backup/obnam-1.4 +++ b/metadata/md5-cache/app-backup/obnam-1.4 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python: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(-)] dev-python/cliapp >=dev-python/larch-1.20121216 dev-python/paramiko dev-python/tracing dev-python/ttystatus python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python: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(-)] SLOT=0 SRC_URI=http://code.liw.fi/debian/pool/main/o/obnam/obnam_1.4.orig.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b1a9ff4ea96a349146b7f78881672162 diff --git a/metadata/md5-cache/app-backup/spideroak-bin-4.1.9860 b/metadata/md5-cache/app-backup/spideroak-bin-4.1.9860 index 7e6706618a8a..246a08e8fec7 100644 --- a/metadata/md5-cache/app-backup/spideroak-bin-4.1.9860 +++ b/metadata/md5-cache/app-backup/spideroak-bin-4.1.9860 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.12.0 dbus? ( sys-apps/dbus ) >=sys-devel/gcc-4 >=sys-l RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=i386&revision=9860 -> spideroak-bin-4.1.9860_x86.deb ) amd64? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=x86_64&revision=9860 -> spideroak-bin-4.1.9860_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=94be92fb36eb350f27f0890c1979d5c8 diff --git a/metadata/md5-cache/app-backup/spideroak-bin-4.5.9941 b/metadata/md5-cache/app-backup/spideroak-bin-4.5.9941 index 9f553a5402ce..f024c6ebb8df 100644 --- a/metadata/md5-cache/app-backup/spideroak-bin-4.5.9941 +++ b/metadata/md5-cache/app-backup/spideroak-bin-4.5.9941 @@ -9,5 +9,5 @@ RDEPEND=dbus? ( sys-apps/dbus ) !headless? ( media-libs/fontconfig media-libs/fr RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=i386&revision=9941 -> spideroak-bin-4.5.9941_x86.deb ) amd64? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=x86_64&revision=9941 -> spideroak-bin-4.5.9941_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=68e50e00ebefe3d200236a20c6451a34 diff --git a/metadata/md5-cache/app-backup/spideroak-bin-4.6.9945 b/metadata/md5-cache/app-backup/spideroak-bin-4.6.9945 index e22b24aa55c3..a9757248630a 100644 --- a/metadata/md5-cache/app-backup/spideroak-bin-4.6.9945 +++ b/metadata/md5-cache/app-backup/spideroak-bin-4.6.9945 @@ -9,5 +9,5 @@ RDEPEND=dbus? ( sys-apps/dbus ) !headless? ( media-libs/fontconfig media-libs/fr RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=i386&revision=9945 -> spideroak-bin-4.6.9945_x86.deb ) amd64? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=x86_64&revision=9945 -> spideroak-bin-4.6.9945_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5e59aa1ad6ba4c5e85955f0065dc4f17 diff --git a/metadata/md5-cache/app-backup/spideroak-bin-4.7.9948 b/metadata/md5-cache/app-backup/spideroak-bin-4.7.9948 index 6c6120377dea..7d6b7d3d9acf 100644 --- a/metadata/md5-cache/app-backup/spideroak-bin-4.7.9948 +++ b/metadata/md5-cache/app-backup/spideroak-bin-4.7.9948 @@ -10,5 +10,5 @@ RDEPEND=dbus? ( sys-apps/dbus ) !headless? ( media-libs/fontconfig media-libs/fr RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=i386&revision=9948 -> spideroak-bin-4.7.9948_x86.deb ) amd64? ( https://spideroak.com/directdownload?platform=ubuntulucid&arch=x86_64&revision=9948 -> spideroak-bin-4.7.9948_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8429db12ec31844ecea641c6d6bb41d7 diff --git a/metadata/md5-cache/app-backup/spideroak-bin-4.8.3-r1 b/metadata/md5-cache/app-backup/spideroak-bin-4.8.3-r1 index 464ef6859380..7a87a9912d19 100644 --- a/metadata/md5-cache/app-backup/spideroak-bin-4.8.3-r1 +++ b/metadata/md5-cache/app-backup/spideroak-bin-4.8.3-r1 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/mit-krb5[keyutils] dbus? ( sys-apps/dbus ) !headless? ( media- RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( https://spideroak.com/getbuild?platform=ubuntu&arch=i386&version=4.8.3 -> spideroak-bin-4.8.3_x86.deb ) amd64? ( https://spideroak.com/getbuild?platform=ubuntu&arch=x86_64&version=4.8.3 -> spideroak-bin-4.8.3_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4291ceaab3e6b9a917a0c2c98b905272 diff --git a/metadata/md5-cache/app-backup/tsm-6.2.2.0-r2 b/metadata/md5-cache/app-backup/tsm-6.2.2.0-r2 index 406f6cc73aa5..3d99afdca7b2 100644 --- a/metadata/md5-cache/app-backup/tsm-6.2.2.0-r2 +++ b/metadata/md5-cache/app-backup/tsm-6.2.2.0-r2 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/libstdc++-v3 RESTRICT=strip SLOT=0 SRC_URI=ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/6.2.2.0-TIV-TSMBAC-LinuxX86.tar linguas_cs? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.CS_CZ.i386.rpm -> 6.2.2-TIVsm-msg.CS_CZ.i386.rpm ) linguas_de? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.DE_DE.i386.rpm -> 6.2.2-TIVsm-msg.DE_DE.i386.rpm ) linguas_es? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.ES_ES.i386.rpm -> 6.2.2-TIVsm-msg.ES_ES.i386.rpm ) linguas_fr? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.FR_FR.i386.rpm -> 6.2.2-TIVsm-msg.FR_FR.i386.rpm ) linguas_hu? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.HU_HU.i386.rpm -> 6.2.2-TIVsm-msg.HU_HU.i386.rpm ) linguas_it? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.IT_IT.i386.rpm -> 6.2.2-TIVsm-msg.IT_IT.i386.rpm ) linguas_ja? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.JA_JP.i386.rpm -> 6.2.2-TIVsm-msg.JA_JP.i386.rpm ) linguas_ko? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.KO_KR.i386.rpm -> 6.2.2-TIVsm-msg.KO_KR.i386.rpm ) linguas_pl? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.PL_PL.i386.rpm -> 6.2.2-TIVsm-msg.PL_PL.i386.rpm ) linguas_pt? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.PT_BR.i386.rpm -> 6.2.2-TIVsm-msg.PT_BR.i386.rpm ) linguas_ru? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.RU_RU.i386.rpm -> 6.2.2-TIVsm-msg.RU_RU.i386.rpm ) linguas_zh? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.ZH_CN.i386.rpm -> 6.2.2-TIVsm-msg.ZH_CN.i386.rpm ) linguas_zh_TW? ( ftp://ftp.software.ibm.com/storage/tivoli-storage-management/maintenance/client/v6r2/Linux/LinuxX86/v622/TIVsm-msg.ZH_TW.i386.rpm -> 6.2.2-TIVsm-msg.ZH_TW.i386.rpm ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 rpm b94b54b44f14d6bee3e966c8f5c86fba toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 rpm b94b54b44f14d6bee3e966c8f5c86fba toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a37a933f032a79f97a00a233f87f0b1d diff --git a/metadata/md5-cache/app-benchmarks/phoronix-test-suite-2.8.1-r1 b/metadata/md5-cache/app-benchmarks/phoronix-test-suite-2.8.1-r1 deleted file mode 100644 index bfbe16267ab4..000000000000 --- a/metadata/md5-cache/app-benchmarks/phoronix-test-suite-2.8.1-r1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile configure install prepare -DESCRIPTION=Phoronix's comprehensive, cross-platform testing and benchmark suite -EAPI=4 -HOMEPAGE=http://www.phoronix-test-suite.com -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=>=dev-lang/php-5.2[cli,curl,gd,posix,pcntl,pcre(+),truetype] app-arch/unzip dev-php/pecl-ps -SLOT=0 -SRC_URI=http://www.phoronix-test-suite.com/download.php?file=phoronix-test-suite-2.8.1 -> phoronix-test-suite-2.8.1.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=5fbfe61c9afab53eccea1e6e91f593cc diff --git a/metadata/md5-cache/app-benchmarks/phoronix-test-suite-3.2.1 b/metadata/md5-cache/app-benchmarks/phoronix-test-suite-3.2.1 deleted file mode 100644 index a8af36756b97..000000000000 --- a/metadata/md5-cache/app-benchmarks/phoronix-test-suite-3.2.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare -DESCRIPTION=Phoronix's comprehensive, cross-platform testing and benchmark suite -EAPI=4 -HOMEPAGE=http://www.phoronix-test-suite.com -IUSE=bash-completion -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -PDEPEND=bash-completion? ( app-shells/bash-completion ) -RDEPEND=dev-lang/php:5.3[cli,curl,gd,json,posix,pcntl,truetype,zip] dev-php/pecl-ps bash-completion? ( app-admin/eselect ) -SLOT=0 -SRC_URI=http://www.phoronix-test-suite.com/download.php?file=phoronix-test-suite-3.2.1 -> phoronix-test-suite-3.2.1.tar.gz -_eclasses_=bash-completion 003731da0df19d26955927bd534f3058 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c4937fff9ea066e2a8d41a4f1fa1c92f diff --git a/metadata/md5-cache/app-benchmarks/phoronix-test-suite-3.8.0 b/metadata/md5-cache/app-benchmarks/phoronix-test-suite-3.8.0 deleted file mode 100644 index a3f6e1af5247..000000000000 --- a/metadata/md5-cache/app-benchmarks/phoronix-test-suite-3.8.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare -DESCRIPTION=Phoronix's comprehensive, cross-platform testing and benchmark suite -EAPI=4 -HOMEPAGE=http://www.phoronix-test-suite.com -IUSE=bash-completion -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -PDEPEND=bash-completion? ( app-shells/bash-completion ) -RDEPEND=dev-lang/php:5.3[cli,curl,gd,json,posix,pcntl,truetype,zip] dev-php/pecl-ps bash-completion? ( app-admin/eselect ) -SLOT=0 -SRC_URI=http://www.phoronix-test-suite.com/download.php?file=phoronix-test-suite-3.8.0 -> phoronix-test-suite-3.8.0.tar.gz -_eclasses_=bash-completion 003731da0df19d26955927bd534f3058 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c9fb961e7edb1df47925a59f306beb2d diff --git a/metadata/md5-cache/app-benchmarks/phoronix-test-suite-4.4.1 b/metadata/md5-cache/app-benchmarks/phoronix-test-suite-4.4.1 new file mode 100644 index 000000000000..37c3b3abf880 --- /dev/null +++ b/metadata/md5-cache/app-benchmarks/phoronix-test-suite-4.4.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile configure install prepare +DESCRIPTION=Phoronix's comprehensive, cross-platform testing and benchmark suite +EAPI=4 +HOMEPAGE=http://www.phoronix-test-suite.com +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 +RDEPEND=dev-lang/php[cli,curl,gd,json,posix,pcntl,truetype,zip] dev-php/pecl-ps +SLOT=0 +SRC_URI=http://www.phoronix-test-suite.com/download.php?file=phoronix-test-suite-4.4.1 -> phoronix-test-suite-4.4.1.tar.gz +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=0080ef1e61423d77a1988827d7763af7 diff --git a/metadata/md5-cache/app-crypt/hashcat-bin-0.39 b/metadata/md5-cache/app-crypt/hashcat-bin-0.39 index 731b5e9a0f6c..c3a04b03045e 100644 --- a/metadata/md5-cache/app-crypt/hashcat-bin-0.39 +++ b/metadata/md5-cache/app-crypt/hashcat-bin-0.39 @@ -8,5 +8,5 @@ LICENSE=hashcat RESTRICT=strip SLOT=0 SRC_URI=http://hashcat.net/files/hashcat-0.39.7z -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=277a6c52ba56b2332992e9ef598b7583 diff --git a/metadata/md5-cache/app-crypt/hashcat-bin-0.40 b/metadata/md5-cache/app-crypt/hashcat-bin-0.40 index 230f9f937116..526446e63715 100644 --- a/metadata/md5-cache/app-crypt/hashcat-bin-0.40 +++ b/metadata/md5-cache/app-crypt/hashcat-bin-0.40 @@ -8,5 +8,5 @@ LICENSE=hashcat RESTRICT=strip SLOT=0 SRC_URI=http://hashcat.net/files/hashcat-0.40.7z -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4fd92ee34c22c7797c133481ad45a50c diff --git a/metadata/md5-cache/app-crypt/hashcat-bin-0.41 b/metadata/md5-cache/app-crypt/hashcat-bin-0.41 index 32713a2dafd5..5f8b8580264e 100644 --- a/metadata/md5-cache/app-crypt/hashcat-bin-0.41 +++ b/metadata/md5-cache/app-crypt/hashcat-bin-0.41 @@ -8,5 +8,5 @@ LICENSE=hashcat RESTRICT=strip SLOT=0 SRC_URI=http://hashcat.net/files/hashcat-0.41.7z -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7bc5d9d6cd8af05be9de1c98c1c7849a diff --git a/metadata/md5-cache/app-crypt/hashcat-bin-0.42 b/metadata/md5-cache/app-crypt/hashcat-bin-0.42 index 176a4f927582..2f8e8d044d5a 100644 --- a/metadata/md5-cache/app-crypt/hashcat-bin-0.42 +++ b/metadata/md5-cache/app-crypt/hashcat-bin-0.42 @@ -8,5 +8,5 @@ LICENSE=hashcat RESTRICT=strip SLOT=0 SRC_URI=http://hashcat.net/files/hashcat-0.42.7z -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=765e985206e2096dd07bda24dd8eccb0 diff --git a/metadata/md5-cache/app-crypt/heimdal-1.5.3 b/metadata/md5-cache/app-crypt/heimdal-1.5.3 index ee68ae54b389..8807e9d6f442 100644 --- a/metadata/md5-cache/app-crypt/heimdal-1.5.3 +++ b/metadata/md5-cache/app-crypt/heimdal-1.5.3 @@ -10,4 +10,4 @@ RDEPEND=ssl? ( dev-libs/openssl ) berkdb? ( sys-libs/db ) !berkdb? ( sys-libs/gd SLOT=0 SRC_URI=http://www.h5l.org/dist/src/heimdal-1.5.3.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 db-use 2f5d6a2718559b90a51648d8ff58be83 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=d3ef61546331f8fd66c02a1990ba7e30 +_md5_=9b6d967357d1065b7e07cdfa16f44dfb diff --git a/metadata/md5-cache/app-crypt/johntheripper-1.7.6-r1 b/metadata/md5-cache/app-crypt/johntheripper-1.7.6-r1 index ded32c6f9611..6af95744003d 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.6-r1 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.6-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) SLOT=0 SRC_URI=http://www.openwall.com/john/g/john-1.7.6.tar.gz !minimal? ( http://www.openwall.com/john/contrib/john-1.7.6-jumbo-4.diff.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cba22c2fd9cd1e315408088b31d55ff9 diff --git a/metadata/md5-cache/app-crypt/johntheripper-1.7.8 b/metadata/md5-cache/app-crypt/johntheripper-1.7.8 index d9a6b0f0b4a9..e508870db934 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.8 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.8 @@ -10,5 +10,5 @@ RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) REQUIRED_USE=openmp? ( !minimal ) SLOT=0 SRC_URI=http://www.openwall.com/john/g/john-1.7.8.tar.gz !minimal? ( http://www.openwall.com/john/g/john-1.7.8-jumbo-2.diff.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c469c2c6e522dfbad2df593e5d53a1eb diff --git a/metadata/md5-cache/app-crypt/johntheripper-1.7.9 b/metadata/md5-cache/app-crypt/johntheripper-1.7.9 index ed9c14a03232..6ea7ebc2365f 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.9 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.9 @@ -10,5 +10,5 @@ RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) REQUIRED_USE=openmp? ( !minimal ) SLOT=0 SRC_URI=http://www.openwall.com/john/g/john-1.7.9.tar.bz2 !minimal? ( http://www.openwall.com/john/g/john-1.7.9-jumbo-5.diff.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d5bd97bddd039a1b4c959213291fda5f diff --git a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r1 b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r1 index 56ad5d45cae1..55683f915939 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r1 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r1 @@ -10,5 +10,5 @@ RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) mpi? ( virtual/mpi ) REQUIRED_USE=openmp? ( !minimal ) mpi? ( !minimal ) SLOT=0 SRC_URI=http://www.openwall.com/john/g/john-1.7.9.tar.bz2 !minimal? ( http://www.openwall.com/john/g/john-1.7.9-jumbo-5.diff.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b3cb9f1b94aa7828544358fd6b33f0d2 diff --git a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r2 b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r2 index da672904916e..41aba4422aa2 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r2 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r2 @@ -10,5 +10,5 @@ RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) mpi? ( virtual/mpi ) REQUIRED_USE=openmp? ( !minimal ) mpi? ( !minimal ) SLOT=0 SRC_URI=http://www.openwall.com/john/g/john-1.7.9.tar.bz2 !minimal? ( http://www.openwall.com/john/g/john-1.7.9-jumbo-5.diff.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=059732c57d8750d5fa01fdbd15b6de62 diff --git a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r3 b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r3 index 6ca2ddb39b5e..a0a498469243 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r3 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r3 @@ -10,5 +10,5 @@ RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) mpi? ( virtual/mpi ) REQUIRED_USE=openmp? ( !minimal ) mpi? ( !minimal ) SLOT=0 SRC_URI=http://www.openwall.com/john/g/john-1.7.9.tar.bz2 !minimal? ( http://www.openwall.com/john/g/john-1.7.9-jumbo-6.diff.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f35c91bb4c3acf7868034b4c53e86dc1 diff --git a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r4 b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r4 index 1263007f22db..1ea2a35b00ca 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r4 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r4 @@ -10,5 +10,5 @@ RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) mpi? ( virtual/mpi ) cuda? ( x1 REQUIRED_USE=openmp? ( !minimal ) mpi? ( !minimal ) cuda? ( !minimal ) opencl? ( !minimal ) SLOT=0 SRC_URI=http://www.openwall.com/john/g/john-1.7.9.tar.bz2 !minimal? ( http://www.openwall.com/john/g/john-1.7.9-jumbo-6.diff.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=72c65651dc72fcb80d2cc8b6240b3ce5 diff --git a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r5 b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r5 index ec4fe64d35b9..33434ad82254 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r5 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r5 @@ -10,5 +10,5 @@ RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) mpi? ( virtual/mpi ) cuda? ( x1 REQUIRED_USE=openmp? ( !minimal ) mpi? ( !minimal ) cuda? ( !minimal ) opencl? ( !minimal ) SLOT=0 SRC_URI=http://www.openwall.com/john/g/john-1.7.9.tar.bz2 !minimal? ( http://www.openwall.com/john/g/john-1.7.9-jumbo-7.diff.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5636658a158346aed500cbe5af094b78 diff --git a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r6 b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r6 index cb05be39dbcb..c4d73b1480ce 100644 --- a/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r6 +++ b/metadata/md5-cache/app-crypt/johntheripper-1.7.9-r6 @@ -10,5 +10,5 @@ RDEPEND=!minimal? ( >=dev-libs/openssl-0.9.7:0 ) mpi? ( virtual/mpi ) cuda? ( x1 REQUIRED_USE=openmp? ( !minimal ) mpi? ( !minimal ) cuda? ( !minimal ) opencl? ( !minimal ) SLOT=0 SRC_URI=http://www.openwall.com/john/g/john-1.7.9.tar.bz2 !minimal? ( http://www.openwall.com/john/g/john-1.7.9-jumbo-7.diff.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c49a4fbb34a98ce362aa77f31f940d07 diff --git a/metadata/md5-cache/app-crypt/oclhashcat-lite-bin-0.14 b/metadata/md5-cache/app-crypt/oclhashcat-lite-bin-0.14 index 25670da76722..ddc197356cff 100644 --- a/metadata/md5-cache/app-crypt/oclhashcat-lite-bin-0.14 +++ b/metadata/md5-cache/app-crypt/oclhashcat-lite-bin-0.14 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-310.32 RESTRICT=strip SLOT=0 SRC_URI=http://hashcat.net/files/oclHashcat-lite-0.14.7z -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2b35f9c7b2fc86312ce4fa247da5cb93 diff --git a/metadata/md5-cache/app-crypt/oclhashcat-plus-bin-0.13 b/metadata/md5-cache/app-crypt/oclhashcat-plus-bin-0.13 index a9446dc2ef09..0c0c0fb70a40 100644 --- a/metadata/md5-cache/app-crypt/oclhashcat-plus-bin-0.13 +++ b/metadata/md5-cache/app-crypt/oclhashcat-plus-bin-0.13 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib video_cards_nvidia? ( >=x11-drivers/nvidia-drivers-310.32 RESTRICT=strip SLOT=0 SRC_URI=http://hashcat.net/files/oclHashcat-plus-0.13.7z -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aa0a238ac7ba48c43dd3c7c7e07c9b3c diff --git a/metadata/md5-cache/app-crypt/shishi-1.0.2 b/metadata/md5-cache/app-crypt/shishi-1.0.2 new file mode 100644 index 000000000000..ba0ac1e09379 --- /dev/null +++ b/metadata/md5-cache/app-crypt/shishi-1.0.2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install prepare +DEPEND=gnutls? ( net-libs/gnutls ) idn? ( net-dns/libidn ) dev-libs/libtasn1 dev-libs/libgcrypt dev-libs/libgpg-error virtual/libiconv virtual/libintl || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=A free implementation of the Kerberos 5 network security system +EAPI=5 +HOMEPAGE=https://www.gnu.org/software/shishi/ +IUSE=gnutls idn ipv6 nls pam +des +3des +aes +md +null +arcfour static-libs +KEYWORDS=~amd64 +LICENSE=GPL-3 +RDEPEND=gnutls? ( net-libs/gnutls ) idn? ( net-dns/libidn ) dev-libs/libtasn1 dev-libs/libgcrypt dev-libs/libgpg-error virtual/libiconv virtual/libintl +SLOT=0 +SRC_URI=mirror://gnu/shishi/shishi-1.0.2.tar.gz +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=1772cf844fd84461ed7a6adfbd71ff93 diff --git a/metadata/md5-cache/app-crypt/truecrypt-7.1a b/metadata/md5-cache/app-crypt/truecrypt-7.1a index 5ad2d5f0eae7..e98a15d18a25 100644 --- a/metadata/md5-cache/app-crypt/truecrypt-7.1a +++ b/metadata/md5-cache/app-crypt/truecrypt-7.1a @@ -1,14 +1,14 @@ DEFINED_PHASES=compile install nofetch postinst prepare setup test -DEPEND=|| ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) sys-fs/fuse x11-libs/wxGTK:2.8[X?] app-admin/sudo !ppc? ( dev-lang/nasm ) +DEPEND=>=sys-fs/lvm2-2.02.45 sys-fs/fuse x11-libs/wxGTK:2.8[X?] app-admin/sudo !ppc? ( dev-lang/nasm ) DESCRIPTION=Free open-source disk encryption software EAPI=4 HOMEPAGE=http://www.truecrypt.org/ IUSE=X +asm KEYWORDS=-* ~amd64 ~ppc ~x86 LICENSE=truecrypt-3.0 -RDEPEND=|| ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) sys-fs/fuse x11-libs/wxGTK:2.8[X?] app-admin/sudo +RDEPEND=>=sys-fs/lvm2-2.02.45 sys-fs/fuse x11-libs/wxGTK:2.8[X?] app-admin/sudo RESTRICT=mirror fetch bindist SLOT=0 SRC_URI=truecrypt-7.1a.tar.gz truecrypt-7.1a-pkcs11.h -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 wxwidgets fb1a306837717dfa2af841ecdf929565 -_md5_=a5245dc79d3c15f9f569954044d6f87c +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 wxwidgets fb1a306837717dfa2af841ecdf929565 +_md5_=3f4e90d3496b43aabf85401a7e95942c diff --git a/metadata/md5-cache/app-emacs/pymacs-0.25-r1 b/metadata/md5-cache/app-emacs/pymacs-0.25-r1 index 1f189e503cdb..ccc7d4e9c008 100644 --- a/metadata/md5-cache/app-emacs/pymacs-0.25-r1 +++ b/metadata/md5-cache/app-emacs/pymacs-0.25-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=virtual/emacs-21 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=https://github.com/pinard/Pymacs/tarball/v0.25 -> pymacs-0.25.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 elisp ae11b438eee6c692e6c94c9a86999514 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a elisp ae11b438eee6c692e6c94c9a86999514 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=b747d15e54d690e99bf53a9b24cdcbc5 diff --git a/metadata/md5-cache/app-emulation/crossover-bin-12.1.2 b/metadata/md5-cache/app-emulation/crossover-bin-12.1.2 index 3a3e4a766cc0..da7d13112d07 100644 --- a/metadata/md5-cache/app-emulation/crossover-bin-12.1.2 +++ b/metadata/md5-cache/app-emulation/crossover-bin-12.1.2 @@ -10,5 +10,5 @@ RDEPEND=dev-lang/perl app-arch/unzip !prefix? ( sys-libs/glibc ) >=dev-python/py RESTRICT=fetch test SLOT=0 SRC_URI=install-crossover-12.1.2.bin -_eclasses_=multilib ded93e450747134a079e647d888aa80b python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=e5a14c8fc2cfc1a3e30aa3c95d00e3c2 diff --git a/metadata/md5-cache/app-emulation/crossover-office-bin-6.0.0 b/metadata/md5-cache/app-emulation/crossover-office-bin-6.0.0 index e375981f1749..af9015ceadb1 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-bin-6.0.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-bin-6.0.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-standard-6.0.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=4a4cedab63e409bcb7d5fef8175c0bc3 diff --git a/metadata/md5-cache/app-emulation/crossover-office-bin-6.0.1 b/metadata/md5-cache/app-emulation/crossover-office-bin-6.0.1 index 2ff24872de19..0f8a927ea77d 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-bin-6.0.1 +++ b/metadata/md5-cache/app-emulation/crossover-office-bin-6.0.1 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-standard-6.0.1.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=526f853a691031eee1e8d878f68a6adb diff --git a/metadata/md5-cache/app-emulation/crossover-office-bin-6.1.0 b/metadata/md5-cache/app-emulation/crossover-office-bin-6.1.0 index 9452d7545c35..b0561490e18a 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-bin-6.1.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-bin-6.1.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-standard-6.1.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=0f5b40c7a51ab647c187ac62c1418d87 diff --git a/metadata/md5-cache/app-emulation/crossover-office-bin-6.2.0 b/metadata/md5-cache/app-emulation/crossover-office-bin-6.2.0 index d3d9efdda2ab..f6d2fb07d46c 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-bin-6.2.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-bin-6.2.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-standard-6.2.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=b278fb9f0686ded6825f29358abd51d6 diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.0 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.0 index 857b5d5e6948..6ee052aea992 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-5.0.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=6452a15984c5f723576bb4f5a850459e diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.1 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.1 index 9d3c18031d0d..2c4b91810bba 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.1 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.1 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-5.0.1.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=bd2fa83d382be6114c02866794a22019 diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.3 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.3 index ef8c4b86a464..6ac812b0deeb 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.3 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-5.0.3 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-5.0.3.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=bd26a3b3ec70d6f7786bd394734cde29 diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.0.0 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.0.0 index 83dab49342ad..deeba2c57664 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.0.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.0.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-6.0.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=76e9b33e8ade96d8047b8899810ae1db diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.1.0 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.1.0 index 7904bfed196e..4be5314d8747 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.1.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.1.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-6.1.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=37da0cf0dc806708fcb785b821dbe5f0 diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.2.0 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.2.0 index ae7d8e968814..ea97dc076100 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.2.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-6.2.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-6.2.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=601b162ef480b990db9ac070746ad61a diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-7.0.2 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-7.0.2 index c0e863467033..2a2ec618e19f 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-7.0.2 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-7.0.2 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-7.0.2.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=07299a5ae858f526a4030b2f9602ed11 diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-7.1.0 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-7.1.0 index 307fdf106a5e..453adf6a1bc8 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-7.1.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-7.1.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-7.1.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=ec46df322d7776a47c1b63df4266577d diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-8.0.0 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-8.0.0 index ca9a54080e93..87087bff7c7c 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-8.0.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-8.0.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-8.0.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=0064c0cb63783e9e416613af4e91a196 diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.0.0 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.0.0 index 59193710b634..f10b1f8f21fe 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.0.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.0.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-9.0.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=d2c0f1598df00ff47c29b52a5213a3ec diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.0.1 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.0.1 index d658a1d982fd..460da6050992 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.0.1 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.0.1 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-9.0.1.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=27aa970a2ec5fcfb24bdc9a3167b576c diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.1.0 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.1.0 index e7c82aad2453..22227ab0fb4a 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.1.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.1.0 @@ -9,5 +9,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-9.1.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=f771360b34a39eccaaefca55c1f621d7 diff --git a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.2.0 b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.2.0 index 6c080cd3c45b..7a6ed7dfd0ef 100644 --- a/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.2.0 +++ b/metadata/md5-cache/app-emulation/crossover-office-pro-bin-9.2.0 @@ -9,5 +9,5 @@ RDEPEND=sys-libs/glibc x11-libs/libXrandr x11-libs/libXi x11-libs/libXmu x11-lib RESTRICT=fetch strip SLOT=0 SRC_URI=install-crossover-pro-9.2.0.sh -_eclasses_=unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=unpacker 658a981a81fd7cb0767315a541bab01d _md5_=c429d285b4e96754730a5045f97a3334 diff --git a/metadata/md5-cache/app-emulation/e-uae-0.8.28-r3 b/metadata/md5-cache/app-emulation/e-uae-0.8.28-r3 index ccd788c22053..cdab02b6d5db 100644 --- a/metadata/md5-cache/app-emulation/e-uae-0.8.28-r3 +++ b/metadata/md5-cache/app-emulation/e-uae-0.8.28-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=X? ( x11-libs/libXt x11-libs/libxkbfile x11-libs/libXext dga? ( x11-libs/libXxf86dga x11-libs/libXxf86vm ) ) !X? ( sdl? ( media-libs/libsdl ) !sdl? ( sys-libs/ncurses ) ) alsa? ( media-libs/alsa-lib ) !alsa? ( sdl-sound? ( media-libs/sdl-sound ) ) gtk? ( x11-libs/gtk+:2 ) capslib? ( games-emulation/caps ) sys-libs/zlib virtual/cdrtools SLOT=0 SRC_URI=http://www.rcdrummond.net/uae/e-uae-0.8.28/e-uae-0.8.28.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0cb629128fcd55023859754affeafd02 diff --git a/metadata/md5-cache/app-emulation/e-uae-0.8.29_rc4-r2 b/metadata/md5-cache/app-emulation/e-uae-0.8.29_rc4-r2 index 050c516c1c1c..5cda4202dd94 100644 --- a/metadata/md5-cache/app-emulation/e-uae-0.8.29_rc4-r2 +++ b/metadata/md5-cache/app-emulation/e-uae-0.8.29_rc4-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=X? ( x11-libs/libXt x11-libs/libxkbfile x11-libs/libXext x11-misc/xkeyboard-config dga? ( x11-libs/libXxf86dga x11-libs/libXxf86vm ) ) !X? ( sdl? ( media-libs/libsdl ) !sdl? ( sys-libs/ncurses ) ) alsa? ( media-libs/alsa-lib ) !alsa? ( sdl-sound? ( media-libs/sdl-sound ) ) capslib? ( >=games-emulation/caps-20060612 ) sys-libs/zlib virtual/cdrtools SLOT=0 SRC_URI=http://www.rcdrummond.net/uae/e-uae-0.8.29-WIP4/e-uae-0.8.29-WIP4.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9f76874608002d8817d351d9cfc2af47 diff --git a/metadata/md5-cache/app-emulation/emul-linux-x86-java-1.6.0.41 b/metadata/md5-cache/app-emulation/emul-linux-x86-java-1.6.0.41 index 424c6fcaa40e..4cdd930be1c0 100644 --- a/metadata/md5-cache/app-emulation/emul-linux-x86-java-1.6.0.41 +++ b/metadata/md5-cache/app-emulation/emul-linux-x86-java-1.6.0.41 @@ -10,5 +10,5 @@ RDEPEND=X? ( app-emulation/emul-linux-x86-xlibs ) alsa? ( app-emulation/emul-lin RESTRICT=fetch strip SLOT=1.6 SRC_URI=jre-6u41-linux-i586.bin -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=cfb783b3693d361148d3b51582257ece diff --git a/metadata/md5-cache/app-emulation/emul-linux-x86-java-1.6.0.43 b/metadata/md5-cache/app-emulation/emul-linux-x86-java-1.6.0.43 index b97965bd5a7c..e6ace199ffcb 100644 --- a/metadata/md5-cache/app-emulation/emul-linux-x86-java-1.6.0.43 +++ b/metadata/md5-cache/app-emulation/emul-linux-x86-java-1.6.0.43 @@ -10,5 +10,5 @@ RDEPEND=X? ( app-emulation/emul-linux-x86-xlibs ) alsa? ( app-emulation/emul-lin RESTRICT=fetch strip SLOT=1.6 SRC_URI=jre-6u43-linux-i586.bin -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6cb4d019c9d24c15652e04b429f047e4 diff --git a/metadata/md5-cache/app-emulation/qemu-user-0.12.2 b/metadata/md5-cache/app-emulation/qemu-user-0.12.2 index a19938a36cae..9232e33a7520 100644 --- a/metadata/md5-cache/app-emulation/qemu-user-0.12.2 +++ b/metadata/md5-cache/app-emulation/qemu-user-0.12.2 @@ -8,5 +8,5 @@ LICENSE=GPL-2 LGPL-2.1 RESTRICT=test SLOT=0 SRC_URI=http://savannah.nongnu.org/download/qemu/qemu-0.12.2.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=be1d10b86d571bffda7fbb540fa74b4e diff --git a/metadata/md5-cache/app-emulation/qemu-user-1.0 b/metadata/md5-cache/app-emulation/qemu-user-1.0 index 54d5882220f4..00797d710645 100644 --- a/metadata/md5-cache/app-emulation/qemu-user-1.0 +++ b/metadata/md5-cache/app-emulation/qemu-user-1.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RESTRICT=test SLOT=0 SRC_URI=http://wiki.qemu.org/download/qemu-1.0.tar.gz http://dev.gentoo.org/~lu_zero/distfiles/qemu-1.0-patches.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3d5f2cf8911c327d25d1ff2c44027f6e diff --git a/metadata/md5-cache/app-emulation/qemu-user-1.1.0 b/metadata/md5-cache/app-emulation/qemu-user-1.1.0 index 34613a095dc9..e081f019938d 100644 --- a/metadata/md5-cache/app-emulation/qemu-user-1.1.0 +++ b/metadata/md5-cache/app-emulation/qemu-user-1.1.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RESTRICT=test SLOT=0 SRC_URI=http://wiki.qemu.org/download/qemu-1.1.0-1.tar.bz2 http://dev.gentoo.org/~lu_zero/distfiles/qemu-1.1.0-patches.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5d914c950be5cad47e35786cec397ef6 diff --git a/metadata/md5-cache/app-emulation/qemu-user-1.1.0-r1 b/metadata/md5-cache/app-emulation/qemu-user-1.1.0-r1 index 42ebeaf3c245..d56f78d50582 100644 --- a/metadata/md5-cache/app-emulation/qemu-user-1.1.0-r1 +++ b/metadata/md5-cache/app-emulation/qemu-user-1.1.0-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-lang/python-2* RESTRICT=test SLOT=0 SRC_URI=http://wiki.qemu.org/download/qemu-1.1.0-1.tar.bz2 http://dev.gentoo.org/~lu_zero/distfiles/qemu-1.1.0-r1-patches.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c622d2601dd7bd15be0e24dbfa7df9a4 diff --git a/metadata/md5-cache/app-emulation/qemu-user-1.2.2 b/metadata/md5-cache/app-emulation/qemu-user-1.2.2 index 26c3fc8a86bc..56407ef06a4e 100644 --- a/metadata/md5-cache/app-emulation/qemu-user-1.2.2 +++ b/metadata/md5-cache/app-emulation/qemu-user-1.2.2 @@ -10,5 +10,5 @@ RDEPEND==dev-lang/python-2* RESTRICT=test SLOT=0 SRC_URI=http://wiki.qemu.org/download/qemu-1.2.2.tar.bz2 http://dev.gentoo.org/~lu_zero/distfiles/qemu-1.2.2-patches.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ab0833d867c0a78cf13df92bf9165472 diff --git a/metadata/md5-cache/app-emulation/qemu-user-1.4.0 b/metadata/md5-cache/app-emulation/qemu-user-1.4.0 index 8d4ccd142508..5c24e16d788c 100644 --- a/metadata/md5-cache/app-emulation/qemu-user-1.4.0 +++ b/metadata/md5-cache/app-emulation/qemu-user-1.4.0 @@ -10,5 +10,5 @@ RDEPEND==dev-lang/python-2* RESTRICT=test SLOT=0 SRC_URI=http://wiki.qemu.org/download/qemu-1.4.0.tar.bz2 http://dev.gentoo.org/~lu_zero/distfiles/qemu-1.4.0-patches.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d647ec071fac850f8accc4e000ab75ac diff --git a/metadata/md5-cache/app-emulation/qemu-user-9999 b/metadata/md5-cache/app-emulation/qemu-user-9999 index 216a8b1530be..35cc329f99a2 100644 --- a/metadata/md5-cache/app-emulation/qemu-user-9999 +++ b/metadata/md5-cache/app-emulation/qemu-user-9999 @@ -7,5 +7,5 @@ IUSE=+qemu_user_targets_i386 +qemu_user_targets_x86_64 +qemu_user_targets_alpha LICENSE=GPL-2 LGPL-2.1 RESTRICT=test SLOT=0 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e7ea255195cff7a86ee8e64911907d2f 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 09596126415e..2175be02e122 100644 --- a/metadata/md5-cache/app-emulation/vboxgtk-0.8.2-r1 +++ b/metadata/md5-cache/app-emulation/vboxgtk-0.8.2-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=|| ( >=app-emulation/virtualbox-4.2.0[-headless,python,sdk] >=app-emulation/virtualbox-bin-4.2.0[python] ) dev-python/pygobject:3 x11-libs/gtk+:3[introspection] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://vboxgtk.googlecode.com/files/vboxgtk-0.8.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7f2dcda8faa6e8a8d974510cd558c148 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=365cd23b59bd1490bc6234d756b9f9f2 diff --git a/metadata/md5-cache/app-emulation/virtualbox-4.1.24 b/metadata/md5-cache/app-emulation/virtualbox-4.1.24 index ae10e6a57e6f..3d3ace0ac612 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-4.1.24 +++ b/metadata/md5-cache/app-emulation/virtualbox-4.1.24 @@ -11,5 +11,5 @@ RDEPEND=!app-emulation/virtualbox-bin ~app-emulation/virtualbox-modules-4.1.24 d REQUIRED_USE=java? ( sdk ) python? ( sdk ) vboxwebsrv? ( java ) SLOT=0 SRC_URI=http://download.virtualbox.org/virtualbox/4.1.24/VirtualBox-4.1.24.tar.bz2 http://dev.gentoo.org/~polynomial-c/virtualbox/patchsets/virtualbox-4.1.22-patches-01.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4b98e60646f910224368cb3daf4507f7 diff --git a/metadata/md5-cache/app-emulation/virtualbox-4.2.10 b/metadata/md5-cache/app-emulation/virtualbox-4.2.10 index 2fd63e79bffa..1d14f8fc2803 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-4.2.10 +++ b/metadata/md5-cache/app-emulation/virtualbox-4.2.10 @@ -11,5 +11,5 @@ RDEPEND=!app-emulation/virtualbox-bin ~app-emulation/virtualbox-modules-4.2.10 d REQUIRED_USE=java? ( sdk ) python? ( sdk ) vboxwebsrv? ( java ) SLOT=0 SRC_URI=http://download.virtualbox.org/virtualbox/4.2.10/VirtualBox-4.2.10.tar.bz2 http://dev.gentoo.org/~polynomial-c/virtualbox/patchsets/virtualbox-4.2.2-patches-01.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=69dd8950f9b7aabe45ec84e032b607e2 diff --git a/metadata/md5-cache/app-emulation/virtualbox-4.2.8 b/metadata/md5-cache/app-emulation/virtualbox-4.2.8 index 58e3706e1f58..51e1552552b7 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-4.2.8 +++ b/metadata/md5-cache/app-emulation/virtualbox-4.2.8 @@ -11,5 +11,5 @@ RDEPEND=!app-emulation/virtualbox-bin ~app-emulation/virtualbox-modules-4.2.8 de REQUIRED_USE=java? ( sdk ) python? ( sdk ) vboxwebsrv? ( java ) SLOT=0 SRC_URI=http://download.virtualbox.org/virtualbox/4.2.8/VirtualBox-4.2.8.tar.bz2 http://dev.gentoo.org/~polynomial-c/virtualbox/patchsets/virtualbox-4.2.2-patches-01.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=ae97a31f5db026315f8c5563ddd0124f diff --git a/metadata/md5-cache/app-emulation/virtualbox-9999 b/metadata/md5-cache/app-emulation/virtualbox-9999 index c1e20a395a89..e748d9da0c42 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-9999 +++ b/metadata/md5-cache/app-emulation/virtualbox-9999 @@ -7,5 +7,5 @@ IUSE=alsa headless pulseaudio python +qt4 sdk kernel_linux LICENSE=GPL-2 RDEPEND=!app-emulation/virtualbox-bin !app-emulation/virtualbox-additions !app-emulation/virtualbox-modules app-arch/makeself app-cdr/cdrtools dev-libs/libIDL >=dev-libs/libxslt-1.1.19 dev-libs/xalan-c dev-libs/xerces-c net-misc/curl sys-libs/libcap !headless? ( qt4? ( dev-qt/qtgui:4 dev-qt/qtcore:4 dev-qt/qtopengl:4 ) x11-libs/libXcursor x11-libs/libXinerama media-libs/libsdl[X] x11-libs/libXt media-libs/mesa ) sys-apps/usermode-utilities net-misc/bridge-utils kernel_linux? ( virtual/modutils ) SLOT=0 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 qt4-r2 f735f67b3de93a007dbdec708b481831 subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 qt4-r2 f735f67b3de93a007dbdec708b481831 subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=453d84302e5cb26fae1da922c81b4a77 diff --git a/metadata/md5-cache/app-emulation/virtualbox-bin-4.1.24-r1 b/metadata/md5-cache/app-emulation/virtualbox-bin-4.1.24-r1 index 7b1e8e49f2ad..5e59053b81e7 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-bin-4.1.24-r1 +++ b/metadata/md5-cache/app-emulation/virtualbox-bin-4.1.24-r1 @@ -10,5 +10,5 @@ RDEPEND=!!app-emulation/virtualbox !app-emulation/virtualbox-additions ~app-emul RESTRICT=mirror SLOT=0 SRC_URI=amd64? ( http://download.virtualbox.org/virtualbox/4.1.24/VirtualBox-4.1.24-82872-Linux_amd64.run ) x86? ( http://download.virtualbox.org/virtualbox/4.1.24/VirtualBox-4.1.24-82872-Linux_x86.run ) sdk? ( http://download.virtualbox.org/virtualbox/4.1.24/VirtualBoxSDK-4.1.24-82872.zip ) http://download.virtualbox.org/virtualbox/4.1.24/Oracle_VM_VirtualBox_Extension_Pack-4.1.24-82872.vbox-extpack -> Oracle_VM_VirtualBox_Extension_Pack-4.1.24-82872.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d2336700990a1535dc961b977a487ded diff --git a/metadata/md5-cache/app-emulation/virtualbox-bin-4.2.10 b/metadata/md5-cache/app-emulation/virtualbox-bin-4.2.10 index cdcf799e2f37..865165c79d3f 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-bin-4.2.10 +++ b/metadata/md5-cache/app-emulation/virtualbox-bin-4.2.10 @@ -10,5 +10,5 @@ RDEPEND=!!app-emulation/virtualbox !app-emulation/virtualbox-additions ~app-emul RESTRICT=mirror SLOT=0 SRC_URI=amd64? ( http://download.virtualbox.org/virtualbox/4.2.10/VirtualBox-4.2.10-84104-Linux_amd64.run ) x86? ( http://download.virtualbox.org/virtualbox/4.2.10/VirtualBox-4.2.10-84104-Linux_x86.run ) sdk? ( http://download.virtualbox.org/virtualbox/4.2.10/VirtualBoxSDK-4.2.10-84104.zip ) http://download.virtualbox.org/virtualbox/4.2.10/Oracle_VM_VirtualBox_Extension_Pack-4.2.10-84104.vbox-extpack -> Oracle_VM_VirtualBox_Extension_Pack-4.2.10-84104.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=98e595bcd0bf15782fffa69260c76a28 diff --git a/metadata/md5-cache/app-emulation/virtualbox-bin-4.2.8 b/metadata/md5-cache/app-emulation/virtualbox-bin-4.2.8 index 791ea03c96f6..e67eae67a2ab 100644 --- a/metadata/md5-cache/app-emulation/virtualbox-bin-4.2.8 +++ b/metadata/md5-cache/app-emulation/virtualbox-bin-4.2.8 @@ -10,5 +10,5 @@ RDEPEND=!!app-emulation/virtualbox !app-emulation/virtualbox-additions ~app-emul RESTRICT=mirror SLOT=0 SRC_URI=amd64? ( http://download.virtualbox.org/virtualbox/4.2.8/VirtualBox-4.2.8-83876-Linux_amd64.run ) x86? ( http://download.virtualbox.org/virtualbox/4.2.8/VirtualBox-4.2.8-83876-Linux_x86.run ) sdk? ( http://download.virtualbox.org/virtualbox/4.2.8/VirtualBoxSDK-4.2.8-83876.zip ) http://download.virtualbox.org/virtualbox/4.2.8/Oracle_VM_VirtualBox_Extension_Pack-4.2.8-83876.vbox-extpack -> Oracle_VM_VirtualBox_Extension_Pack-4.2.8-83876.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d774715d922d2949e0c4c7d58e53b7d0 diff --git a/metadata/md5-cache/app-emulation/vmware-player-4.0.4.744019-r1 b/metadata/md5-cache/app-emulation/vmware-player-4.0.4.744019-r1 index 2da400eb7d15..4a76ba7442bc 100644 --- a/metadata/md5-cache/app-emulation/vmware-player-4.0.4.744019-r1 +++ b/metadata/md5-cache/app-emulation/vmware-player-4.0.4.744019-r1 @@ -11,5 +11,5 @@ RDEPEND=dev-cpp/cairomm dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-cpp/libgnomecanva RESTRICT=strip SLOT=0 SRC_URI=x86? ( https://softwareupdate.vmware.com/cds/vmw-desktop/player/4.0.4/744019/linux/core/VMware-Player-4.0.4-744019.i386.bundle.tar ) amd64? ( https://softwareupdate.vmware.com/cds/vmw-desktop/player/4.0.4/744019/linux/core/VMware-Player-4.0.4-744019.x86_64.bundle.tar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vmware-bundle 23c070352c2722510704dae8063293e0 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vmware-bundle 23c070352c2722510704dae8063293e0 _md5_=7d341f79a1331356f7a2aed6248953c4 diff --git a/metadata/md5-cache/app-emulation/vmware-player-4.0.5.893925 b/metadata/md5-cache/app-emulation/vmware-player-4.0.5.893925 index 00d5028bfc43..df2ea8ee36c9 100644 --- a/metadata/md5-cache/app-emulation/vmware-player-4.0.5.893925 +++ b/metadata/md5-cache/app-emulation/vmware-player-4.0.5.893925 @@ -11,5 +11,5 @@ RDEPEND=dev-cpp/cairomm dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-cpp/libgnomecanva RESTRICT=strip SLOT=0 SRC_URI=x86? ( https://softwareupdate.vmware.com/cds/vmw-desktop/player/4.0.5/893925/linux/core/VMware-Player-4.0.5-893925.i386.bundle.tar ) amd64? ( https://softwareupdate.vmware.com/cds/vmw-desktop/player/4.0.5/893925/linux/core/VMware-Player-4.0.5-893925.x86_64.bundle.tar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vmware-bundle 23c070352c2722510704dae8063293e0 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vmware-bundle 23c070352c2722510704dae8063293e0 _md5_=da46988a988e79075cc2b4504cc44d1c diff --git a/metadata/md5-cache/app-emulation/vmware-player-5.0.2.1031769 b/metadata/md5-cache/app-emulation/vmware-player-5.0.2.1031769 index 8744fe8fcb49..98c92150d7b2 100644 --- a/metadata/md5-cache/app-emulation/vmware-player-5.0.2.1031769 +++ b/metadata/md5-cache/app-emulation/vmware-player-5.0.2.1031769 @@ -11,5 +11,5 @@ RDEPEND=dev-cpp/cairomm dev-cpp/glibmm:2 dev-cpp/gtkmm:2.4 dev-cpp/libgnomecanva RESTRICT=strip SLOT=0 SRC_URI=x86? ( https://softwareupdate.vmware.com/cds/vmw-desktop/player/5.0.2/1031769/linux/core/VMware-Player-5.0.2-1031769.i386.bundle.tar ) amd64? ( https://softwareupdate.vmware.com/cds/vmw-desktop/player/5.0.2/1031769/linux/core/VMware-Player-5.0.2-1031769.x86_64.bundle.tar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vmware-bundle 23c070352c2722510704dae8063293e0 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 vmware-bundle 23c070352c2722510704dae8063293e0 _md5_=1cfb372846ac7a42382ffe557ef2b95a diff --git a/metadata/md5-cache/app-emulation/wine-1.4 b/metadata/md5-cache/app-emulation/wine-1.4 index 336eb3a0f95d..82b697537c51 100644 --- a/metadata/md5-cache/app-emulation/wine-1.4 +++ b/metadata/md5-cache/app-emulation/wine-1.4 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.4.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.4/wine_gecko-1.4-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.4/wine_gecko-1.4-x86_64.msi ) ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=29d881e84cabac27efc55e9ae8162e20 diff --git a/metadata/md5-cache/app-emulation/wine-1.4.1 b/metadata/md5-cache/app-emulation/wine-1.4.1 index c244139d77bb..88e486245d47 100644 --- a/metadata/md5-cache/app-emulation/wine-1.4.1 +++ b/metadata/md5-cache/app-emulation/wine-1.4.1 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.4.1.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.4/wine_gecko-1.4-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.4/wine_gecko-1.4-x86_64.msi ) ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=22b1c3fc4c4fa5cd3bb3349d82b465ff diff --git a/metadata/md5-cache/app-emulation/wine-1.5.0 b/metadata/md5-cache/app-emulation/wine-1.5.0 index 1b260ade8715..db077518a502 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.0 +++ b/metadata/md5-cache/app-emulation/wine-1.5.0 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.0.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86_64.msi ) ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7b170c9f2d5a648a6f7cba7512cf4c6d diff --git a/metadata/md5-cache/app-emulation/wine-1.5.1 b/metadata/md5-cache/app-emulation/wine-1.5.1 index 4a8187ffa639..d555235aa8e3 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.1 +++ b/metadata/md5-cache/app-emulation/wine-1.5.1 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.1.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86_64.msi ) ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7495ecab0d4c44727e633d314f58c741 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.10-r1 b/metadata/md5-cache/app-emulation/wine-1.5.10-r1 index 3d3024d9cde2..67f73e18aeec 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.10-r1 +++ b/metadata/md5-cache/app-emulation/wine-1.5.10-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.10.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) http://source.winehq.org/patches/data/87234 -> winepulse-2012.06.15.patch -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9ff8d2dbc86ad3de58718a8d2130bfa2 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.11-r1 b/metadata/md5-cache/app-emulation/wine-1.5.11-r1 index a683cc2271e0..0e6201a383c5 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.11-r1 +++ b/metadata/md5-cache/app-emulation/wine-1.5.11-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.11.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) http://source.winehq.org/patches/data/87234 -> winepulse-2012.06.15.patch -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=77f2659e32f33682f672aa12cb13fbbd diff --git a/metadata/md5-cache/app-emulation/wine-1.5.12-r1 b/metadata/md5-cache/app-emulation/wine-1.5.12-r1 index 35ee174294d5..524769c672da 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.12-r1 +++ b/metadata/md5-cache/app-emulation/wine-1.5.12-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.12.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) http://source.winehq.org/patches/data/87234 -> winepulse-2012.06.15.patch -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bab035add044f68532f87406259f8611 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.13-r1 b/metadata/md5-cache/app-emulation/wine-1.5.13-r1 index 234519e4d56b..9ec1ad45f41d 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.13-r1 +++ b/metadata/md5-cache/app-emulation/wine-1.5.13-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.13.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) http://source.winehq.org/patches/data/87234 -> winepulse-2012.06.15.patch -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c19a7383819c18f94acb9ad28924c972 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.14-r1 b/metadata/md5-cache/app-emulation/wine-1.5.14-r1 index 627e1558a060..508d4ea5f620 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.14-r1 +++ b/metadata/md5-cache/app-emulation/wine-1.5.14-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.14.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.7/wine_gecko-1.7-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) http://source.winehq.org/patches/data/87234 -> winepulse-2012.06.15.patch -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=068640edc4bf2369689de0fb20e1ef7c diff --git a/metadata/md5-cache/app-emulation/wine-1.5.15-r2 b/metadata/md5-cache/app-emulation/wine-1.5.15-r2 index baec58f9a4e2..fd50750956a5 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.15-r2 +++ b/metadata/md5-cache/app-emulation/wine-1.5.15-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.15.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.15.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7b74d09c0ee95ea925aa448022c14cab diff --git a/metadata/md5-cache/app-emulation/wine-1.5.16-r1 b/metadata/md5-cache/app-emulation/wine-1.5.16-r1 index b05d328a3331..af2f4e709244 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.16-r1 +++ b/metadata/md5-cache/app-emulation/wine-1.5.16-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.16.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.16.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c2329ad5983bf90364361c7cb3d51698 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.17 b/metadata/md5-cache/app-emulation/wine-1.5.17 index 34bf111c703b..68429038670e 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.17 +++ b/metadata/md5-cache/app-emulation/wine-1.5.17 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.17.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.17.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6a0dfefea2fe5046cde39cba2b1ee3c2 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.18 b/metadata/md5-cache/app-emulation/wine-1.5.18 index 3bfcd5108290..3ec771243202 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.18 +++ b/metadata/md5-cache/app-emulation/wine-1.5.18 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.18.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.18.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ca061b6c9c4469a8432a8a746d33311f diff --git a/metadata/md5-cache/app-emulation/wine-1.5.19 b/metadata/md5-cache/app-emulation/wine-1.5.19 index 30df396efc16..c159e97064fd 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.19 +++ b/metadata/md5-cache/app-emulation/wine-1.5.19 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.19.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.19.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=de2fdadca270f63afb812ed8e5933b61 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.2 b/metadata/md5-cache/app-emulation/wine-1.5.2 index 1911e4e1f031..15961fa7c2f6 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.2 +++ b/metadata/md5-cache/app-emulation/wine-1.5.2 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.2.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86_64.msi ) ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6abd598c195f9604a9903dc72e0d0b19 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.20 b/metadata/md5-cache/app-emulation/wine-1.5.20 index c3af897a2a46..cc1ae8fa0d52 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.20 +++ b/metadata/md5-cache/app-emulation/wine-1.5.20 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.20.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.20_pre20121207.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=41404b00ef92f14bb3e86618f1b97845 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.21 b/metadata/md5-cache/app-emulation/wine-1.5.21 index 15ad730abd5c..f49090f3fe45 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.21 +++ b/metadata/md5-cache/app-emulation/wine-1.5.21 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.21.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.8/wine_gecko-1.8-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.21.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6d743f362110a85fbb6b825e4d781493 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.22 b/metadata/md5-cache/app-emulation/wine-1.5.22 index bd5d4bc9841f..3d9136784e8e 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.22 +++ b/metadata/md5-cache/app-emulation/wine-1.5.22 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.22.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.22.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=feb38c1864036db31397c51b78b8c3d4 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.23-r1 b/metadata/md5-cache/app-emulation/wine-1.5.23-r1 index b482c4bc203e..5e0ff70cbbbc 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.23-r1 +++ b/metadata/md5-cache/app-emulation/wine-1.5.23-r1 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.23.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.23.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4e2c2a7fcf7b9eb9e6f9c494f54e8954 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.24 b/metadata/md5-cache/app-emulation/wine-1.5.24 index e006838bd3f4..59840a100d3d 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.24 +++ b/metadata/md5-cache/app-emulation/wine-1.5.24 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) osmesa? ( op RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.24.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.23.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a8ef78b82e2bcd472b23432f94d00661 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.25 b/metadata/md5-cache/app-emulation/wine-1.5.25 index 647cbcfd60cc..24fcd2a2e6f3 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.25 +++ b/metadata/md5-cache/app-emulation/wine-1.5.25 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) test? ( abi_x86_32 ) elibc_glibc? ( th RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.25.tar.bz2 gecko? ( abi_x86_32? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86.msi ) abi_x86_64? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.25.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-multilib 3ca3ffaa40575becc8cfd0cc6aeb1080 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-multilib 3ca3ffaa40575becc8cfd0cc6aeb1080 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=621dfad718e8a1305de9e7cbd7b98028 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.26 b/metadata/md5-cache/app-emulation/wine-1.5.26 index 2d0a5bde9e61..27a9ab706958 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.26 +++ b/metadata/md5-cache/app-emulation/wine-1.5.26 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) test? ( abi_x86_32 ) elibc_glibc? ( th RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.26.tar.bz2 gecko? ( abi_x86_32? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86.msi ) abi_x86_64? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.25.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-multilib 3ca3ffaa40575becc8cfd0cc6aeb1080 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-multilib 3ca3ffaa40575becc8cfd0cc6aeb1080 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=93cdc8eb6a251954100f5ed2d7b213be diff --git a/metadata/md5-cache/app-emulation/wine-1.5.27 b/metadata/md5-cache/app-emulation/wine-1.5.27 index 518b7e3c6e3a..5d3f6c1451e0 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.27 +++ b/metadata/md5-cache/app-emulation/wine-1.5.27 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) test? ( abi_x86_32 ) elibc_glibc? ( th RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.27.tar.bz2 gecko? ( abi_x86_32? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86.msi ) abi_x86_64? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.25.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-multilib 3ca3ffaa40575becc8cfd0cc6aeb1080 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-multilib 3ca3ffaa40575becc8cfd0cc6aeb1080 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=011f05e7c4c9e20cc690965346e5c2d5 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.3 b/metadata/md5-cache/app-emulation/wine-1.5.3 index 5d0dc087bb21..0173f3bd4d5b 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.3 +++ b/metadata/md5-cache/app-emulation/wine-1.5.3 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.3.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86_64.msi ) ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c1a2c265529d5e501fd1bcd5e87273c4 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.4 b/metadata/md5-cache/app-emulation/wine-1.5.4 index 08a1dff4b092..47bcd1cce6f1 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.4 +++ b/metadata/md5-cache/app-emulation/wine-1.5.4 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.4.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86_64.msi ) ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38a77a2903b439d414f3b54fd61d3893 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.5 b/metadata/md5-cache/app-emulation/wine-1.5.5 index 58793730fcf9..5cb9957c753e 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.5 +++ b/metadata/md5-cache/app-emulation/wine-1.5.5 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.5.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86_64.msi ) ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e468b82079eb9ee173f64600f1efa37c diff --git a/metadata/md5-cache/app-emulation/wine-1.5.6 b/metadata/md5-cache/app-emulation/wine-1.5.6 index ff7e5246197a..4c73ef2e3daf 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.6 +++ b/metadata/md5-cache/app-emulation/wine-1.5.6 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.6.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.5/wine_gecko-1.5-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dbc8a38e7f8a5c822eed710569da21e1 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.7 b/metadata/md5-cache/app-emulation/wine-1.5.7 index 7ea95bfc390a..cd7c5f66eb14 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.7 +++ b/metadata/md5-cache/app-emulation/wine-1.5.7 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.7.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.6/wine_gecko-1.6-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.6/wine_gecko-1.6-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) http://source.winehq.org/patches/data/87234 -> winepulse-2012.06.15.patch -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a39da05f2a2f85018b5e2766e193af30 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.8 b/metadata/md5-cache/app-emulation/wine-1.5.8 index f2c976e18a31..ca96f1286d06 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.8 +++ b/metadata/md5-cache/app-emulation/wine-1.5.8 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.8.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.6/wine_gecko-1.6-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.6/wine_gecko-1.6-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) http://source.winehq.org/patches/data/87234 -> winepulse-2012.06.15.patch -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=70ccd94aa6af5d4c66ed3fb825b548b5 diff --git a/metadata/md5-cache/app-emulation/wine-1.5.9 b/metadata/md5-cache/app-emulation/wine-1.5.9 index 99e14025523c..bc0c9315e925 100644 --- a/metadata/md5-cache/app-emulation/wine-1.5.9 +++ b/metadata/md5-cache/app-emulation/wine-1.5.9 @@ -11,5 +11,5 @@ REQUIRED_USE=elibc_glibc? ( threads ) mono? ( || ( win32 !win64 ) ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/wine/Source/wine-1.5.9.tar.bz2 gecko? ( mirror://sourceforge/wine/Wine%20Gecko/1.6/wine_gecko-1.6-x86.msi win64? ( mirror://sourceforge/wine/Wine%20Gecko/1.6/wine_gecko-1.6-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.4/wine-mono-0.0.4.msi ) http://source.winehq.org/patches/data/87234 -> winepulse-2012.06.15.patch -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=745e82fad2ee0f07acf43a82d5213865 diff --git a/metadata/md5-cache/app-emulation/wine-9999 b/metadata/md5-cache/app-emulation/wine-9999 index 009b5b073611..c0f2945d4a80 100644 --- a/metadata/md5-cache/app-emulation/wine-9999 +++ b/metadata/md5-cache/app-emulation/wine-9999 @@ -10,5 +10,5 @@ REQUIRED_USE=|| ( abi_x86_32 abi_x86_64 ) test? ( abi_x86_32 ) elibc_glibc? ( th RESTRICT=test SLOT=0 SRC_URI=gecko? ( abi_x86_32? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86.msi ) abi_x86_64? ( mirror://sourceforge/wine/Wine%20Gecko/1.9/wine_gecko-1.9-x86_64.msi ) ) mono? ( mirror://sourceforge/wine/Wine%20Mono/0.0.8/wine-mono-0.0.8.msi ) http://dev.gentoo.org/~tetromino/distfiles/wine/winepulse-patches-1.5.25.tar.bz2 http://dev.gentoo.org/~tetromino/distfiles/wine/wine-gentoo-2012.11.24.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-multilib 3ca3ffaa40575becc8cfd0cc6aeb1080 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-multilib 3ca3ffaa40575becc8cfd0cc6aeb1080 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multilib-build 64d8186c893b4ba109fe29c632a72a58 multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=e1587edf8ad591971cf00f88f5f312a6 diff --git a/metadata/md5-cache/app-i18n/cstools-3.42 b/metadata/md5-cache/app-i18n/cstools-3.42 index cb23c74a8172..967878148f04 100644 --- a/metadata/md5-cache/app-i18n/cstools-3.42 +++ b/metadata/md5-cache/app-i18n/cstools-3.42 @@ -3,10 +3,10 @@ DEPEND=dev-perl/MIME-tools dev-lang/perl[-build] DESCRIPTION=A charset conversion tool cstocs and two convenience Perl modules for Czech language EAPI=5 HOMEPAGE=http://www.adelton.com/perl/Cstools/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=Artistic RDEPEND=dev-perl/MIME-tools dev-lang/perl[-build] SLOT=0 SRC_URI=http://www.adelton.com/perl/Cstools/Cstools-3.42.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-app 20b0a51a72b6d2c8ac53ccab1605737f perl-module 825d3d7654c88c5c4dec7400d3612578 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=942b9dffad6baca245dad84321748841 +_md5_=aa716d8a76a2a8d2eac8bd530aed6fce diff --git a/metadata/md5-cache/app-misc/binwalk-1.0 b/metadata/md5-cache/app-misc/binwalk-1.0 index 5b69621e59e5..6ab014e13912 100644 --- a/metadata/md5-cache/app-misc/binwalk-1.0 +++ b/metadata/md5-cache/app-misc/binwalk-1.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=sys-apps/file[python] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://binwalk.googlecode.com/files/binwalk-1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0d4be56d25cdc953796a1cdb4d9b4ef0 diff --git a/metadata/md5-cache/app-misc/binwalk-1.1 b/metadata/md5-cache/app-misc/binwalk-1.1 index adeb2a18b48b..d449b0fe9c3d 100644 --- a/metadata/md5-cache/app-misc/binwalk-1.1 +++ b/metadata/md5-cache/app-misc/binwalk-1.1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=sys-apps/file[python] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://binwalk.googlecode.com/files/binwalk-1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2a71b2db422dbbbd47ec343bdbe1c2cd diff --git a/metadata/md5-cache/app-misc/binwalk-1.2 b/metadata/md5-cache/app-misc/binwalk-1.2 index 7d9e3e0e3588..34f83b574b93 100644 --- a/metadata/md5-cache/app-misc/binwalk-1.2 +++ b/metadata/md5-cache/app-misc/binwalk-1.2 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=sys-apps/file[python] graph? ( dev-python/matplotlib[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 ) python_targets_python2_7? ( dev-lang/python: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=http://binwalk.googlecode.com/files/binwalk-1.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=35083601b39e1ac876982a5b5f516ba6 diff --git a/metadata/md5-cache/app-misc/ca-certificates-20130119 b/metadata/md5-cache/app-misc/ca-certificates-20130119 index 52762dbdebcd..28915c324dbf 100644 --- a/metadata/md5-cache/app-misc/ca-certificates-20130119 +++ b/metadata/md5-cache/app-misc/ca-certificates-20130119 @@ -8,5 +8,5 @@ LICENSE=MPL-1.1 RDEPEND=kernel_AIX? ( app-arch/deb2targz ) !=net-libs/dslib-3.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 ) python_targets_python2_7? ( dev-lang/python: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=http://www.nic.cz/public_media/datove_schranky/releases/src/datovka-3.0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=25080b3d793cac093a29b3c66a2ddefc diff --git a/metadata/md5-cache/app-misc/esekeyd-1.2.7 b/metadata/md5-cache/app-misc/esekeyd-1.2.7 new file mode 100644 index 000000000000..a2548f4a1e94 --- /dev/null +++ b/metadata/md5-cache/app-misc/esekeyd-1.2.7 @@ -0,0 +1,9 @@ +DEFINED_PHASES=- +DESCRIPTION=Multimedia key daemon that uses the Linux event interface +EAPI=5 +HOMEPAGE=http://freshmeat.net/projects/esekeyd/ +KEYWORDS=~amd64 ~arm ~ppc ~x86 +LICENSE=GPL-3 +SLOT=0 +SRC_URI=http://www.burghardt.pl/files/esekeyd-1.2.7.tar.gz +_md5_=3480749156fd218e24dff5e36e11a004 diff --git a/metadata/md5-cache/app-misc/fixdos-1.3.1-r1 b/metadata/md5-cache/app-misc/fixdos-1.3.1-r1 new file mode 100644 index 000000000000..336eba87b6fb --- /dev/null +++ b/metadata/md5-cache/app-misc/fixdos-1.3.1-r1 @@ -0,0 +1,10 @@ +DEFINED_PHASES=install prepare +DESCRIPTION=Set of utilities such as crlf which converts files between UNIX and DOS newlines +EAPI=5 +HOMEPAGE=http://e.co.za/marius/ +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +SLOT=0 +SRC_URI=http://e.co.za/marius/downloads/misc/fixDos-1.3.1.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=98872a803f16754247fae32d9ee67418 diff --git a/metadata/md5-cache/app-misc/fslint-2.42 b/metadata/md5-cache/app-misc/fslint-2.42 index f6d51dd671df..809546c584f2 100644 --- a/metadata/md5-cache/app-misc/fslint-2.42 +++ b/metadata/md5-cache/app-misc/fslint-2.42 @@ -10,4 +10,4 @@ RDEPEND=dev-python/pygtk:2 =dev-lang/python-2* SLOT=0 SRC_URI=http://www.pixelbeat.org/fslint/fslint-2.42.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=59b24ba80f64a4787ec13f99743bff21 +_md5_=695e06f7956c0dd085f48d4ca111f5b7 diff --git a/metadata/md5-cache/app-misc/glcdprocdriver-0.0.6 b/metadata/md5-cache/app-misc/glcdprocdriver-0.0.6 index a5422d1d03bb..392866c3a40e 100644 --- a/metadata/md5-cache/app-misc/glcdprocdriver-0.0.6 +++ b/metadata/md5-cache/app-misc/glcdprocdriver-0.0.6 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile install -DEPEND=>=app-misc/graphlcd-base-0.1.3 +DEPEND=>=app-misc/graphlcd-base-0.1.3 sys-libs/glibc DESCRIPTION=Glue library for the glcdlib LCDproc driver based on GraphLCD EAPI=5 HOMEPAGE=http://www.muresan.de/graphlcd/lcdproc/ KEYWORDS=~amd64 ~ppc ~x86 LICENSE=GPL-2 -RDEPEND=>=app-misc/graphlcd-base-0.1.3 +RDEPEND=>=app-misc/graphlcd-base-0.1.3 sys-libs/glibc SLOT=0 SRC_URI=http://www.muresan.de/graphlcd/lcdproc/glcdprocdriver-0.0.6.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a7c6f2e6ddca77a6f8d81d1b493d63b5 +_md5_=b0ed247fa9c66befe2a6fa7fcb7aff7a diff --git a/metadata/md5-cache/app-misc/grabcartoons-2.4 b/metadata/md5-cache/app-misc/grabcartoons-2.4 index 0ddcbf522c23..96a37d927ece 100644 --- a/metadata/md5-cache/app-misc/grabcartoons-2.4 +++ b/metadata/md5-cache/app-misc/grabcartoons-2.4 @@ -1,10 +1,10 @@ -DEFINED_PHASES=install +DEFINED_PHASES=install test DESCRIPTION=Comic-summarizing utility EAPI=5 HOMEPAGE=http://grabcartoons.sourceforge.net/ KEYWORDS=~amd64 ~x86 LICENSE=BSD -RDEPEND=dev-lang/perl +RDEPEND=dev-lang/perl virtual/perl-Getopt-Long SLOT=0 SRC_URI=mirror://sourceforge/grabcartoons/grabcartoons-2.4.tar.gz -_md5_=1d08894479dad0590a611cd75aef0de4 +_md5_=e510ebb3daa3a33d0e12a58a117f9d0f diff --git a/metadata/md5-cache/app-misc/lcdproc-0.5.6 b/metadata/md5-cache/app-misc/lcdproc-0.5.6 index 959be09c3501..866cd7c4427e 100644 --- a/metadata/md5-cache/app-misc/lcdproc-0.5.6 +++ b/metadata/md5-cache/app-misc/lcdproc-0.5.6 @@ -11,4 +11,4 @@ REQUIRED_USE=lcd_devices_mdm166a? ( hid ) SLOT=0 SRC_URI=mirror://sourceforge/lcdproc/lcdproc-0.5.6.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=be02e2cb62b71a3f2357797aeeea2289 +_md5_=38a9cf50304058a009071d71e75cf232 diff --git a/metadata/md5-cache/app-misc/nut-18.6 b/metadata/md5-cache/app-misc/nut-18.7 similarity index 73% rename from metadata/md5-cache/app-misc/nut-18.6 rename to metadata/md5-cache/app-misc/nut-18.7 index f7eafaff11be..8c9018f1b47b 100644 --- a/metadata/md5-cache/app-misc/nut-18.6 +++ b/metadata/md5-cache/app-misc/nut-18.7 @@ -1,10 +1,10 @@ -DEFINED_PHASES=compile install +DEFINED_PHASES=compile install prepare DESCRIPTION=Record what you eat and analyze your nutrient levels EAPI=5 HOMEPAGE=http://nut.sourceforge.net/ KEYWORDS=~alpha ~amd64 ~arm ~ppc ~x86 LICENSE=GPL-2 SLOT=0 -SRC_URI=mirror://sourceforge/nut/nut-18.6.tar.gz +SRC_URI=mirror://sourceforge/nut/nut-18.7.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ea49db4623b6550d299558c5788120b5 +_md5_=70e4a0d97501c9c141e3466582b329ff diff --git a/metadata/md5-cache/app-misc/pax-utils-0.2.3 b/metadata/md5-cache/app-misc/pax-utils-0.2.3 index f76d37b7a07c..06fe607304a1 100644 --- a/metadata/md5-cache/app-misc/pax-utils-0.2.3 +++ b/metadata/md5-cache/app-misc/pax-utils-0.2.3 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=caps? ( sys-libs/libcap ) SLOT=0 SRC_URI=mirror://gentoo/pax-utils-0.2.3.tar.xz http://dev.gentoo.org/~solar/pax/pax-utils-0.2.3.tar.xz http://dev.gentoo.org/~vapier/dist/pax-utils-0.2.3.tar.xz -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=d940130409e59f2c6766d5122f63aeec diff --git a/metadata/md5-cache/app-misc/pax-utils-0.3.0 b/metadata/md5-cache/app-misc/pax-utils-0.3.0 index 9c24136c3969..f75d00c94f7f 100644 --- a/metadata/md5-cache/app-misc/pax-utils-0.3.0 +++ b/metadata/md5-cache/app-misc/pax-utils-0.3.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=caps? ( sys-libs/libcap ) SLOT=0 SRC_URI=mirror://gentoo/pax-utils-0.3.0.tar.xz http://dev.gentoo.org/~solar/pax/pax-utils-0.3.0.tar.xz http://dev.gentoo.org/~vapier/dist/pax-utils-0.3.0.tar.xz -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=8861ecc4efe31741180a69de59e8bf2d diff --git a/metadata/md5-cache/app-misc/pax-utils-0.4 b/metadata/md5-cache/app-misc/pax-utils-0.4 index ab4da7120475..956b7ff59678 100644 --- a/metadata/md5-cache/app-misc/pax-utils-0.4 +++ b/metadata/md5-cache/app-misc/pax-utils-0.4 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=caps? ( sys-libs/libcap ) SLOT=0 SRC_URI=mirror://gentoo/pax-utils-0.4.tar.xz http://dev.gentoo.org/~solar/pax/pax-utils-0.4.tar.xz http://dev.gentoo.org/~vapier/dist/pax-utils-0.4.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3f03b4b0b5d5cefd4fca8a4081a9ddb6 diff --git a/metadata/md5-cache/app-misc/pax-utils-0.5 b/metadata/md5-cache/app-misc/pax-utils-0.5 index 3f3df2ec6226..2ef29dcbfe7c 100644 --- a/metadata/md5-cache/app-misc/pax-utils-0.5 +++ b/metadata/md5-cache/app-misc/pax-utils-0.5 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=caps? ( sys-libs/libcap ) SLOT=0 SRC_URI=mirror://gentoo/pax-utils-0.5.tar.xz http://dev.gentoo.org/~solar/pax/pax-utils-0.5.tar.xz http://dev.gentoo.org/~vapier/dist/pax-utils-0.5.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bd0a9c37a7a33602a293efc3b483622a diff --git a/metadata/md5-cache/app-misc/pax-utils-0.6 b/metadata/md5-cache/app-misc/pax-utils-0.6 index ee9094081620..0b53ff5973f9 100644 --- a/metadata/md5-cache/app-misc/pax-utils-0.6 +++ b/metadata/md5-cache/app-misc/pax-utils-0.6 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=caps? ( sys-libs/libcap ) python? ( dev-python/pyelftools ) SLOT=0 SRC_URI=mirror://gentoo/pax-utils-0.6.tar.xz http://dev.gentoo.org/~solar/pax/pax-utils-0.6.tar.xz http://dev.gentoo.org/~vapier/dist/pax-utils-0.6.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e0eb0d0acfeabdc15d7ff18f67283fb5 diff --git a/metadata/md5-cache/app-misc/pax-utils-0.7 b/metadata/md5-cache/app-misc/pax-utils-0.7 index 8b5720fc731d..576667715418 100644 --- a/metadata/md5-cache/app-misc/pax-utils-0.7 +++ b/metadata/md5-cache/app-misc/pax-utils-0.7 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=caps? ( sys-libs/libcap ) python? ( dev-python/pyelftools ) SLOT=0 SRC_URI=mirror://gentoo/pax-utils-0.7.tar.xz http://dev.gentoo.org/~solar/pax/pax-utils-0.7.tar.xz http://dev.gentoo.org/~vapier/dist/pax-utils-0.7.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15bd64ee0b7d4ddc951ec4d788912fb0 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 14b8d8109c8d..07ce3c45c2ab 100644 --- a/metadata/md5-cache/app-misc/ranger-1.5.5-r1 +++ b/metadata/md5-cache/app-misc/ranger-1.5.5-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=virtual/pager python_targets_python2_6? ( dev-lang/python:2.6[ncurses] ) python_targets_python2_7? ( dev-lang/python:2.7[ncurses] ) python_targets_python3_1? ( dev-lang/python:3.1[ncurses] ) python_targets_python3_2? ( dev-lang/python:3.2[ncurses] ) python_targets_python3_3? ( dev-lang/python:3.3[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://nongnu.org/ranger/ranger-1.5.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3ef35416ec242c35e876e1252042c909 diff --git a/metadata/md5-cache/app-misc/ranger-1.6.0 b/metadata/md5-cache/app-misc/ranger-1.6.0 index 2bdecd27fa2a..71a0bcd49709 100644 --- a/metadata/md5-cache/app-misc/ranger-1.6.0 +++ b/metadata/md5-cache/app-misc/ranger-1.6.0 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=virtual/pager python_targets_python2_6? ( dev-lang/python:2.6[ncurses] ) python_targets_python2_7? ( dev-lang/python:2.7[ncurses] ) python_targets_python3_1? ( dev-lang/python:3.1[ncurses] ) python_targets_python3_2? ( dev-lang/python:3.2[ncurses] ) python_targets_python3_3? ( dev-lang/python:3.3[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://nongnu.org/ranger/ranger-1.6.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e03bc952ddeac7d3d2ddb29fd2317b17 diff --git a/metadata/md5-cache/app-misc/ranger-9999 b/metadata/md5-cache/app-misc/ranger-9999 index a8f8a2c14263..46103a5e241f 100644 --- a/metadata/md5-cache/app-misc/ranger-9999 +++ b/metadata/md5-cache/app-misc/ranger-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 LICENSE=GPL-3 RDEPEND=virtual/pager python_targets_python2_6? ( dev-lang/python:2.6[ncurses] ) python_targets_python2_7? ( dev-lang/python:2.7[ncurses] ) python_targets_python3_1? ( dev-lang/python:3.1[ncurses] ) python_targets_python3_2? ( dev-lang/python:3.2[ncurses] ) python_targets_python3_3? ( dev-lang/python:3.3[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8beea771fcd17eb1f4be5a7ca8ec5ef6 diff --git a/metadata/md5-cache/app-misc/task-2.2.0 b/metadata/md5-cache/app-misc/task-2.2.0 new file mode 100644 index 000000000000..fa9cddc0fcd5 --- /dev/null +++ b/metadata/md5-cache/app-misc/task-2.2.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=Taskwarrior is a command-line todo list manager +EAPI=5 +HOMEPAGE=http://taskwarrior.org/projects/show/taskwarrior/ +IUSE=vim-syntax zsh-completion +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +SLOT=0 +SRC_URI=http://taskwarrior.org/download/task-2.2.0.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=bd726c7564065f77ca2e522ca36bbad5 diff --git a/metadata/md5-cache/app-misc/terminal-colors-1.5 b/metadata/md5-cache/app-misc/terminal-colors-1.5 new file mode 100644 index 000000000000..12199b1a09b3 --- /dev/null +++ b/metadata/md5-cache/app-misc/terminal-colors-1.5 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install prepare setup +DESCRIPTION=A tool to display color charts for 8, 16, 88, and 256 color terminals +EAPI=5 +HOMEPAGE=http://zhar.net/projects/shell/terminal-colors +IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_single_target_python2_6 python_single_target_python2_7 python_single_target_python3_1 python_single_target_python3_2 python_single_target_python3_3 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3+ +SLOT=0 +SRC_URI=http://dev.gentoo.org/~radhermit/distfiles/terminal-colors-1.5.bz2 +_eclasses_=multilib ded93e450747134a079e647d888aa80b python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=140cc0e6f94a2be306556fa92edbfd0b diff --git a/metadata/md5-cache/app-misc/tracker-0.14.4 b/metadata/md5-cache/app-misc/tracker-0.14.4 deleted file mode 100644 index 058288a59f92..000000000000 --- a/metadata/md5-cache/app-misc/tracker-0.14.4 +++ /dev/null @@ -1,16 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[threadsafe(+)] >=dev-libs/glib-2.28:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux applet? ( >=gnome-base/gnome-panel-2.91.6 >=x11-libs/gdk-pixbuf-2.12:2 >=x11-libs/gtk+-3:3 ) cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) flickr? ( net-libs/rest:0.7 ) gif? ( media-libs/giflib ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.26 ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( >=media-libs/gstreamer-0.10.31:0.10 >=media-libs/gst-plugins-base-0.10.31:0.10 ) gtk? ( >=dev-libs/libgee-0.3:0 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( dev-libs/totem-pl-parser ) rss? ( net-libs/libgrss ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.5:1.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) >=dev-util/gtk-doc-am-1.8 >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig gtk? ( >=dev-libs/libgee-0.3 ) doc? ( app-office/dia media-gfx/graphviz ) test? ( >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) app-arch/xz-utils >=sys-apps/sed-4 || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) -DESCRIPTION=A tagging metadata database, search tool and indexer -EAPI=5 -HOMEPAGE=http://projects.gnome.org/tracker/ -IUSE=applet cue doc eds elibc_glibc exif firefox-bookmarks flac flickr gif gnome-keyring gsf gstreamer gtk iptc +iso +jpeg laptop +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps nautilus test -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2+ LGPL-2.1+ -PDEPEND=nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.14 ) -RDEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[threadsafe(+)] >=dev-libs/glib-2.28:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux applet? ( >=gnome-base/gnome-panel-2.91.6 >=x11-libs/gdk-pixbuf-2.12:2 >=x11-libs/gtk+-3:3 ) cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) flickr? ( net-libs/rest:0.7 ) gif? ( media-libs/giflib ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.26 ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( >=media-libs/gstreamer-0.10.31:0.10 >=media-libs/gst-plugins-base-0.10.31:0.10 ) gtk? ( >=dev-libs/libgee-0.3:0 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( dev-libs/totem-pl-parser ) rss? ( net-libs/libgrss ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.5:1.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) -REQUIRED_USE=^^ ( gstreamer xine ) cue? ( gstreamer ) upnp-av? ( gstreamer ) !miner-fs? ( !cue !exif !flac !gif !gsf !iptc !iso !jpeg !mp3 !pdf !playlist !tiff !vorbis !xml !xmp !xps ) -RESTRICT=test -SLOT=0 -SRC_URI=mirror://gnome/sources/tracker/0.14/tracker-0.14.4.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=65f4f8b8be57d3135412fa3a439671e6 diff --git a/metadata/md5-cache/app-misc/tracker-0.14.5 b/metadata/md5-cache/app-misc/tracker-0.14.5 index 093d5f22b465..5642e9fcb495 100644 --- a/metadata/md5-cache/app-misc/tracker-0.14.5 +++ b/metadata/md5-cache/app-misc/tracker-0.14.5 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[threadsafe(+)] >=dev-libs/glib-2.28:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux applet? ( >=gnome-base/gnome-panel-2.91.6 >=x11-libs/gdk-pixbuf-2.12:2 >=x11-libs/gtk+-3:3 ) cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) flickr? ( net-libs/rest:0.7 ) gif? ( media-libs/giflib ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.26 ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( >=media-libs/gstreamer-0.10.31:0.10 >=media-libs/gst-plugins-base-0.10.31:0.10 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( dev-libs/totem-pl-parser ) rss? ( net-libs/libgrss ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.5:1.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) || ( dev-lang/python:2.7 dev-lang/python:2.6 ) >=dev-util/gtk-doc-am-1.8 >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig gtk? ( >=dev-libs/libgee-0.3 ) test? ( >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[fts3(+),threadsafe(+)] >=dev-libs/glib-2.28:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux applet? ( >=gnome-base/gnome-panel-2.91.6 >=x11-libs/gdk-pixbuf-2.12:2 >=x11-libs/gtk+-3:3 ) cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) flickr? ( net-libs/rest:0.7 ) gif? ( media-libs/giflib ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.26 ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( >=media-libs/gstreamer-0.10.31:0.10 >=media-libs/gst-plugins-base-0.10.31:0.10 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( >=dev-libs/totem-pl-parser-3 ) rss? ( net-libs/libgrss:0 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.5:1.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) || ( dev-lang/python:2.7 dev-lang/python:2.6 ) >=dev-util/gtk-doc-am-1.8 >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig gtk? ( >=dev-libs/libgee-0.3 ) test? ( >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=A tagging metadata database, search tool and indexer EAPI=5 HOMEPAGE=http://projects.gnome.org/tracker/ -IUSE=applet cue doc eds elibc_glibc exif firefox-bookmarks flac flickr gif gnome-keyring gsf gstreamer gtk iptc +iso +jpeg laptop +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps nautilus test +IUSE=applet cue eds elibc_glibc exif firefox-bookmarks flac flickr gif gnome-keyring gsf gstreamer gtk iptc +iso +jpeg laptop +miner-fs mp3 nautilus networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps test KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2+ LGPL-2.1+ PDEPEND=nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.14 ) -RDEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[threadsafe(+)] >=dev-libs/glib-2.28:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux applet? ( >=gnome-base/gnome-panel-2.91.6 >=x11-libs/gdk-pixbuf-2.12:2 >=x11-libs/gtk+-3:3 ) cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) flickr? ( net-libs/rest:0.7 ) gif? ( media-libs/giflib ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.26 ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( >=media-libs/gstreamer-0.10.31:0.10 >=media-libs/gst-plugins-base-0.10.31:0.10 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( dev-libs/totem-pl-parser ) rss? ( net-libs/libgrss ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.5:1.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) +RDEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[fts3(+),threadsafe(+)] >=dev-libs/glib-2.28:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux applet? ( >=gnome-base/gnome-panel-2.91.6 >=x11-libs/gdk-pixbuf-2.12:2 >=x11-libs/gtk+-3:3 ) cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) flickr? ( net-libs/rest:0.7 ) gif? ( media-libs/giflib ) gnome-keyring? ( >=gnome-base/gnome-keyring-2.26 ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( >=media-libs/gstreamer-0.10.31:0.10 >=media-libs/gst-plugins-base-0.10.31:0.10 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( >=dev-libs/totem-pl-parser-3 ) rss? ( net-libs/libgrss:0 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.5:1.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) REQUIRED_USE=^^ ( gstreamer xine ) cue? ( gstreamer ) upnp-av? ( gstreamer ) !miner-fs? ( !cue !exif !flac !gif !gsf !iptc !iso !jpeg !mp3 !pdf !playlist !tiff !vorbis !xml !xmp !xps ) SLOT=0/14 SRC_URI=mirror://gnome/sources/tracker/0.14/tracker-0.14.5.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=e8d4d3b0c45049c9dce2ff702b8c8c0b +_md5_=50f9229cbf32f4b818e404ec4ac1cfd5 diff --git a/metadata/md5-cache/app-misc/tracker-0.16.0 b/metadata/md5-cache/app-misc/tracker-0.16.0 index fdfec3251004..844f532d662f 100644 --- a/metadata/md5-cache/app-misc/tracker-0.16.0 +++ b/metadata/md5-cache/app-misc/tracker-0.16.0 @@ -1,15 +1,15 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[threadsafe(+)] >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) gif? ( media-libs/giflib ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) libsecret? ( >=app-crypt/libsecret-0.5 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( dev-libs/totem-pl-parser ) rss? ( >=net-libs/libgrss-0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.9.4:2.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) || ( dev-lang/python:2.7 dev-lang/python:2.6 ) >=dev-util/gtk-doc-am-1.8 >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig gtk? ( >=dev-libs/libgee-0.3 ) test? ( >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.16:= >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) gif? ( media-libs/giflib ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) libsecret? ( >=app-crypt/libsecret-0.5 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( >=dev-libs/totem-pl-parser-3 ) rss? ( net-libs/libgrss:0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.9.4:2.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) || ( dev-lang/python:2.7 dev-lang/python:2.6 ) >=dev-util/gtk-doc-am-1.8 >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig gtk? ( >=dev-libs/libgee-0.3 ) test? ( >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=A tagging metadata database, search tool and indexer EAPI=5 HOMEPAGE=http://projects.gnome.org/tracker/ -IUSE=cue doc eds elibc_glibc exif firefox-bookmarks flac gif gsf gstreamer gtk iptc +iso +jpeg laptop libsecret +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps nautilus test +IUSE=cue eds elibc_glibc exif firefox-bookmarks flac gif gsf gstreamer gtk iptc +iso +jpeg laptop libsecret +miner-fs mp3 nautilus networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps test KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2+ LGPL-2.1+ -PDEPEND=nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.14 ) -RDEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[threadsafe(+)] >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) gif? ( media-libs/giflib ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) libsecret? ( >=app-crypt/libsecret-0.5 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( dev-libs/totem-pl-parser ) rss? ( >=net-libs/libgrss-0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.9.4:2.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) +PDEPEND=nautilus? ( >=gnome-extra/nautilus-tracker-tags-0.16 ) +RDEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.16:= >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) gif? ( media-libs/giflib ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) libsecret? ( >=app-crypt/libsecret-0.5 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( >=dev-libs/totem-pl-parser-3 ) rss? ( net-libs/libgrss:0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.9.4:2.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) REQUIRED_USE=^^ ( gstreamer xine ) cue? ( gstreamer ) upnp-av? ( gstreamer ) !miner-fs? ( !cue !exif !flac !gif !gsf !iptc !iso !jpeg !mp3 !pdf !playlist !tiff !vorbis !xml !xmp !xps ) SLOT=0/16 SRC_URI=mirror://gnome/sources/tracker/0.16/tracker-0.16.0.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=255acdec771948d5c9ef6abd797ca22d +_md5_=8224d2c0de60d47a61e5e1d3ca8a4445 diff --git a/metadata/md5-cache/app-misc/tracker-9999 b/metadata/md5-cache/app-misc/tracker-9999 index a5d983438f2c..d7f7366c11f1 100644 --- a/metadata/md5-cache/app-misc/tracker-9999 +++ b/metadata/md5-cache/app-misc/tracker-9999 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[threadsafe(+)] >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) gif? ( media-libs/giflib ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) libsecret? ( >=app-crypt/libsecret-0.5 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( dev-libs/totem-pl-parser ) rss? ( >=net-libs/libgrss-0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.9.4:2.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) || ( dev-lang/python:2.7 dev-lang/python:2.6 ) >=dev-util/gtk-doc-am-1.8 >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig gtk? ( >=dev-libs/libgee-0.3 ) test? ( >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) doc? ( media-gfx/graphviz ) >=dev-util/gtk-doc-1.8 || ( dev-lang/vala:0.20 dev-lang/vala:0.18 dev-lang/vala:0.16 dev-lang/vala:0.14 ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/git app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.16:= >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) gif? ( media-libs/giflib ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) libsecret? ( >=app-crypt/libsecret-0.5 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( >=dev-libs/totem-pl-parser-3 ) rss? ( net-libs/libgrss:0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.9.4:2.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) || ( dev-lang/python:2.7 dev-lang/python:2.6 ) >=dev-util/gtk-doc-am-1.8 >=dev-util/intltool-0.40 >=sys-devel/gettext-0.17 virtual/pkgconfig gtk? ( >=dev-libs/libgee-0.3 ) test? ( >=dev-libs/dbus-glib-0.82-r1 >=sys-apps/dbus-1.3.1[X] ) doc? ( >=dev-util/gtk-doc-1.8 media-gfx/graphviz ) || ( dev-lang/vala:0.20 dev-lang/vala:0.18 dev-lang/vala:0.16 dev-lang/vala:0.14 ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/git app-arch/xz-utils >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) DESCRIPTION=A tagging metadata database, search tool and indexer EAPI=5 HOMEPAGE=http://projects.gnome.org/tracker/ -IUSE=cue doc eds elibc_glibc exif firefox-bookmarks flac gif gsf gstreamer gtk iptc +iso +jpeg laptop libsecret +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps doc test +IUSE=cue eds elibc_glibc exif firefox-bookmarks flac gif gsf gstreamer gtk iptc +iso +jpeg laptop libsecret +miner-fs mp3 networkmanager pdf playlist rss test thunderbird +tiff upnp-av +vorbis xine +xml xmp xps doc test LICENSE=GPL-2+ LGPL-2.1+ -RDEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.14:=[threadsafe(+)] >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) gif? ( media-libs/giflib ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) libsecret? ( >=app-crypt/libsecret-0.5 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( dev-libs/totem-pl-parser ) rss? ( >=net-libs/libgrss-0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.9.4:2.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) +RDEPEND=>=app-i18n/enca-1.9 >=dev-db/sqlite-3.7.16:= >=dev-libs/glib-2.35.1:2 >=dev-libs/gobject-introspection-0.9.5 >=dev-libs/icu-4:= || ( >=media-gfx/imagemagick-5.2.1[png,jpeg=] media-gfx/graphicsmagick[imagemagick,png,jpeg=] ) >=media-libs/libpng-1.2:0= >=x11-libs/pango-1:= sys-apps/util-linux cue? ( media-libs/libcue ) eds? ( >=mail-client/evolution-3.3.5:= >=gnome-extra/evolution-data-server-3.3.5:= =sys-libs/glibc-2.12 ) exif? ( >=media-libs/libexif-0.6 ) firefox-bookmarks? ( || ( >=www-client/firefox-4.0 >=www-client/firefox-bin-4.0 ) ) flac? ( >=media-libs/flac-1.2.1 ) gif? ( media-libs/giflib ) gsf? ( >=gnome-extra/libgsf-1.13 ) gstreamer? ( media-libs/gstreamer:1.0 media-libs/gst-plugins-base:1.0 ) gtk? ( >=dev-libs/libgee-0.3:0.8 >=x11-libs/gtk+-3:3 ) iptc? ( media-libs/libiptcdata ) iso? ( >=sys-libs/libosinfo-0.0.2:= ) jpeg? ( virtual/jpeg:0 ) laptop? ( >=sys-power/upower-0.9 ) libsecret? ( >=app-crypt/libsecret-0.5 ) mp3? ( >=media-libs/taglib-1.6 gtk? ( x11-libs/gdk-pixbuf:2 ) ) networkmanager? ( >=net-misc/networkmanager-0.8 ) pdf? ( >=x11-libs/cairo-1:= >=app-text/poppler-0.16:=[cairo,utils] >=x11-libs/gtk+-2.12:2 ) playlist? ( >=dev-libs/totem-pl-parser-3 ) rss? ( net-libs/libgrss:0.5 ) thunderbird? ( || ( >=mail-client/thunderbird-5.0 >=mail-client/thunderbird-bin-5.0 ) ) tiff? ( media-libs/tiff ) upnp-av? ( >=media-libs/gupnp-dlna-0.9.4:2.0 ) vorbis? ( >=media-libs/libvorbis-0.22 ) xine? ( >=media-libs/xine-lib-1 ) xml? ( >=dev-libs/libxml2-2.6 ) xmp? ( >=media-libs/exempi-2.1 ) xps? ( app-text/libgxps ) !gstreamer? ( !xine? ( || ( media-video/totem media-video/mplayer ) ) ) REQUIRED_USE=^^ ( gstreamer xine ) cue? ( gstreamer ) upnp-av? ( gstreamer ) !miner-fs? ( !cue !exif !flac !gif !gsf !iptc !iso !jpeg !mp3 !pdf !playlist !tiff !vorbis !xml !xmp !xps ) SLOT=0/16 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa git-2 e92e09651292b1bef5656592364550f7 gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=766435cda22cd477784516b867407ca8 +_md5_=876925b63bf0afffb5cf47ea72af8c55 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 ecfbbeb9c89b..2bd100fb9603 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 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://github.com/andreafrancia/trash-cli/tarball/0.12.9.14 -> trash-cli-0.12.9.14.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=7e4529d17192500668c5f27bf9d3c13e diff --git a/metadata/md5-cache/app-office/gtg-0.3 b/metadata/md5-cache/app-office/gtg-0.3 index ef56473a431d..462da0c490d9 100644 --- a/metadata/md5-cache/app-office/gtg-0.3 +++ b/metadata/md5-cache/app-office/gtg-0.3 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/liblarch[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/configobj[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/dbus-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] 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[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/pyxdg[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] 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 ) python_targets_python2_7? ( dev-lang/python: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=http://launchpad.net/gtg/0.3/0.3/+download/gtg-0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=020703ae0eebccdd28603bffefc62335 diff --git a/metadata/md5-cache/app-office/libreoffice-3.6.4.3 b/metadata/md5-cache/app-office/libreoffice-3.6.4.3 index f2afb0b8d161..52dcff2689c1 100644 --- a/metadata/md5-cache/app-office/libreoffice-3.6.4.3 +++ b/metadata/md5-cache/app-office/libreoffice-3.6.4.3 @@ -11,5 +11,5 @@ RDEPEND=app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes REQUIRED_USE=gnome? ( gtk ) eds? ( gnome ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.6.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-core-3.6.4.3.tar.xz binfilter? ( http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-binfilter-3.6.4.3.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-3.6.4.3.tar.xz http://download.documentfoundation.org/libreoffice/src/3.6.4//libreoffice-core-3.6.4.3.tar.xz binfilter? ( http://download.documentfoundation.org/libreoffice/src/3.6.4//libreoffice-binfilter-3.6.4.3.tar.xz ) http://download.documentfoundation.org/libreoffice/src/3.6.4//libreoffice-help-3.6.4.3.tar.xz http://download.documentfoundation.org/libreoffice/old/3.6.4.3//libreoffice-core-3.6.4.3.tar.xz binfilter? ( http://download.documentfoundation.org/libreoffice/old/3.6.4.3//libreoffice-binfilter-3.6.4.3.tar.xz ) http://download.documentfoundation.org/libreoffice/old/3.6.4.3//libreoffice-help-3.6.4.3.tar.xz http://dev-www.libreoffice.org/src//ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) java? ( http://dev-www.libreoffice.org/src//ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=761e9307bbedf883d72e7d1330094902 diff --git a/metadata/md5-cache/app-office/libreoffice-3.6.6.2 b/metadata/md5-cache/app-office/libreoffice-3.6.6.2 new file mode 100644 index 000000000000..e5bb05f7359a --- /dev/null +++ b/metadata/md5-cache/app-office/libreoffice-3.6.6.2 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend setup test unpack +DEPEND=python_single_target_python2_5? ( dev-lang/python:2.5[threads,xml] ) python_single_target_python2_6? ( dev-lang/python:2.6[threads,xml] ) python_single_target_python2_7? ( dev-lang/python:2.7[threads,xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_5(+)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libexttextcat-3.2 app-text/libwpd:0.9[tools] app-text/libwpg:0.2 >=app-text/libwps-0.2.2 >=dev-cpp/clucene-2.3.3.4-r2 >=dev-cpp/libcmis-0.2:0.2 dev-db/unixODBC dev-libs/expat >=dev-libs/glib-2.28 >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d >=dev-libs/redland-1.0.14[ssl] gnome-base/librsvg media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 media-libs/lcms:2 >=media-libs/libpng-1.4 >=media-libs/libcdr-0.0.5 media-libs/libvisio >=net-misc/curl-7.21.4 sci-mathematics/lpsolve >=sys-libs/db-4.8 virtual/jpeg >=x11-libs/cairo-1.10.0[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( gnome-extra/evolution-data-server ) gnome? ( gnome-base/gconf:2 ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gstreamer? ( >=media-libs/gstreamer-0.10:0.10 >=media-libs/gst-plugins-base-0.10:0.10 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_pdfimport? ( >=app-text/poppler-0.16:=[xpdf-headers(+),cxx] ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) libreoffice_extensions_wiki-publisher? ( dev-java/commons-codec:0 dev-java/commons-httpclient:3 dev-java/commons-lang:2.1 dev-java/commons-logging:0 dev-java/tomcat-servlet-api:3.0 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) opengl? ( virtual/glu virtual/opengl ) postgres? ( >=dev-db/postgresql-base-9.0[kerberos] ) webdav? ( net-libs/neon ) >=dev-libs/boost-1.46 >=dev-libs/libxml2-2.7.8 dev-libs/libxslt dev-perl/Archive-Zip dev-util/cppunit >=dev-util/gperf-3 dev-util/intltool dev-util/mdds virtual/pkgconfig net-misc/npapi-sdk >=sys-apps/findutils-4.4.2 sys-devel/bison sys-apps/coreutils sys-devel/flex sys-devel/gettext >=sys-devel/make-3.82 sys-libs/zlib x11-libs/libXt x11-libs/libXtst x11-proto/randrproto x11-proto/xextproto x11-proto/xineramaproto x11-proto/xproto java? ( >=virtual/jdk-1.6 >=dev-java/ant-core-1.7 ) odk? ( app-doc/doxygen ) test? ( dev-util/cppunit ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool java? ( >=dev-java/java-config-2.1.9-r1 ) >=sys-apps/sed-4 kde? ( dev-util/automoc virtual/pkgconfig !aqua? ( >=x11-libs/libXtst-1.1.0 x11-proto/xf86vidmodeproto ) ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/qtgui-4.7.4:4[accessibility,dbus] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4: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=LibreOffice, a full office productivity suite. +EAPI=5 +HOMEPAGE=http://www.libreoffice.org +IUSE=binfilter binfilterdebug +branding +cups dbus eds gnome gstreamer +gtk jemalloc kde mysql odk opengl postgres test +vba +webdav libreoffice_extensions_nlpsolver libreoffice_extensions_pdfimport libreoffice_extensions_presenter-console libreoffice_extensions_presenter-minimizer libreoffice_extensions_scripting-beanshell libreoffice_extensions_scripting-javascript libreoffice_extensions_wiki-publisher elibc_FreeBSD java aqua kde python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_single_target_python2_5 python_single_target_python2_6 python_single_target_python2_7 +KEYWORDS=~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux +LICENSE=|| ( LGPL-3 MPL-1.1 ) +PDEPEND==app-office/libreoffice-l10n-3.6* +RDEPEND=python_single_target_python2_5? ( dev-lang/python:2.5[threads,xml] ) python_single_target_python2_6? ( dev-lang/python:2.6[threads,xml] ) python_single_target_python2_7? ( dev-lang/python:2.7[threads,xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_5(+)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] app-arch/zip app-arch/unzip >=app-text/hunspell-1.3.2-r3 app-text/mythes >=app-text/libexttextcat-3.2 app-text/libwpd:0.9[tools] app-text/libwpg:0.2 >=app-text/libwps-0.2.2 >=dev-cpp/clucene-2.3.3.4-r2 >=dev-cpp/libcmis-0.2:0.2 dev-db/unixODBC dev-libs/expat >=dev-libs/glib-2.28 >=dev-libs/hyphen-2.7.1 >=dev-libs/icu-4.8.1.1 >=dev-libs/nspr-4.8.8 >=dev-libs/nss-3.12.9 >=dev-lang/perl-5.0 >=dev-libs/openssl-1.0.0d >=dev-libs/redland-1.0.14[ssl] gnome-base/librsvg media-gfx/graphite2 >=media-libs/fontconfig-2.8.0 media-libs/freetype:2 media-libs/lcms:2 >=media-libs/libpng-1.4 >=media-libs/libcdr-0.0.5 media-libs/libvisio >=net-misc/curl-7.21.4 sci-mathematics/lpsolve >=sys-libs/db-4.8 virtual/jpeg >=x11-libs/cairo-1.10.0[X] x11-libs/libXinerama x11-libs/libXrandr x11-libs/libXrender cups? ( net-print/cups ) dbus? ( >=dev-libs/dbus-glib-0.92 ) eds? ( gnome-extra/evolution-data-server ) gnome? ( gnome-base/gconf:2 ) gtk? ( x11-libs/gdk-pixbuf[X] >=x11-libs/gtk+-2.24:2 ) gstreamer? ( >=media-libs/gstreamer-0.10:0.10 >=media-libs/gst-plugins-base-0.10:0.10 ) jemalloc? ( dev-libs/jemalloc ) libreoffice_extensions_pdfimport? ( >=app-text/poppler-0.16:=[xpdf-headers(+),cxx] ) libreoffice_extensions_scripting-beanshell? ( >=dev-java/bsh-2.0_beta4 ) libreoffice_extensions_scripting-javascript? ( dev-java/rhino:1.6 ) libreoffice_extensions_wiki-publisher? ( dev-java/commons-codec:0 dev-java/commons-httpclient:3 dev-java/commons-lang:2.1 dev-java/commons-logging:0 dev-java/tomcat-servlet-api:3.0 ) mysql? ( >=dev-db/mysql-connector-c++-1.1.0 ) opengl? ( virtual/glu virtual/opengl ) postgres? ( >=dev-db/postgresql-base-9.0[kerberos] ) webdav? ( net-libs/neon ) !app-office/libreoffice-bin !app-office/libreoffice-bin-debug !=virtual/jre-1.6 ) java? ( >=dev-java/java-config-2.1.9-r1 ) kde? ( >=kde-base/oxygen-icons-4.4:4[aqua=] ) kde? ( dev-lang/perl >=dev-qt/qt3support-4.7.4:4[accessibility] >=dev-qt/qtcore-4.7.4:4[qt3support,ssl] >=dev-qt/qtdbus-4.7.4:4 >=dev-qt/qtgui-4.7.4:4[accessibility,dbus] >=dev-qt/qtscript-4.7.4:4 >=dev-qt/qtsql-4.7.4:4[qt3support] >=dev-qt/qtsvg-4.7.4:4 >=dev-qt/qttest-4.7.4:4 >=dev-qt/qtwebkit-4.7.4: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=gnome? ( gtk ) eds? ( gnome ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) +SLOT=0 +SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.6.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-core-3.6.6.2.tar.xz binfilter? ( http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-binfilter-3.6.6.2.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-3.6.6.2.tar.xz http://download.documentfoundation.org/libreoffice/src/3.6.6//libreoffice-core-3.6.6.2.tar.xz binfilter? ( http://download.documentfoundation.org/libreoffice/src/3.6.6//libreoffice-binfilter-3.6.6.2.tar.xz ) http://download.documentfoundation.org/libreoffice/src/3.6.6//libreoffice-help-3.6.6.2.tar.xz http://download.documentfoundation.org/libreoffice/old/3.6.6.2//libreoffice-core-3.6.6.2.tar.xz binfilter? ( http://download.documentfoundation.org/libreoffice/old/3.6.6.2//libreoffice-binfilter-3.6.6.2.tar.xz ) http://download.documentfoundation.org/libreoffice/old/3.6.6.2//libreoffice-help-3.6.6.2.tar.xz http://dev-www.libreoffice.org/src//ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) java? ( http://dev-www.libreoffice.org/src//ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=9a7ec7fed50c45bdac665d69f7c28de3 diff --git a/metadata/md5-cache/app-office/libreoffice-3.6.9999 b/metadata/md5-cache/app-office/libreoffice-3.6.9999 index 5d96926909f6..323dcfbbddef 100644 --- a/metadata/md5-cache/app-office/libreoffice-3.6.9999 +++ b/metadata/md5-cache/app-office/libreoffice-3.6.9999 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_5? ( dev-lang/python:2.5[threads,xml] ) pyt REQUIRED_USE=gnome? ( gtk ) eds? ( gnome ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.6.tar.xz ) http://dev-www.libreoffice.org/src//ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) java? ( http://dev-www.libreoffice.org/src//ada24d37d8d638b3d8a9985e80bc2978-source-9.0.0.7-bj.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=ad82a09664d9ea299ed3b5d0fc40faa2 diff --git a/metadata/md5-cache/app-office/libreoffice-4.0.2.2 b/metadata/md5-cache/app-office/libreoffice-4.0.2.2 index ec6ec164e97e..fbf96720020a 100644 --- a/metadata/md5-cache/app-office/libreoffice-4.0.2.2 +++ b/metadata/md5-cache/app-office/libreoffice-4.0.2.2 @@ -11,5 +11,5 @@ RDEPEND=python_single_target_python2_7? ( dev-lang/python:2.7[threads,xml] ) pyt REQUIRED_USE=bluetooth? ( dbus ) gnome? ( gtk ) eds? ( gnome ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.7.tar.xz ) http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-4.0.2.2.tar.xz http://dev-builds.libreoffice.org/pre-releases/src/libreoffice-help-4.0.2.2.tar.xz http://download.documentfoundation.org/libreoffice/src/4.0.2//libreoffice-4.0.2.2.tar.xz http://download.documentfoundation.org/libreoffice/src/4.0.2//libreoffice-help-4.0.2.2.tar.xz http://download.documentfoundation.org/libreoffice/old/4.0.2.2//libreoffice-4.0.2.2.tar.xz http://download.documentfoundation.org/libreoffice/old/4.0.2.2//libreoffice-help-4.0.2.2.tar.xz http://dev-www.libreoffice.org/src//ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=69461386b23e0ae0c75402ba548defa4 diff --git a/metadata/md5-cache/app-office/libreoffice-4.0.9999 b/metadata/md5-cache/app-office/libreoffice-4.0.9999 index 29f8b421b21c..1239a7fd1895 100644 --- a/metadata/md5-cache/app-office/libreoffice-4.0.9999 +++ b/metadata/md5-cache/app-office/libreoffice-4.0.9999 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_7? ( dev-lang/python:2.7[threads,xml] ) pyt REQUIRED_USE=bluetooth? ( dbus ) gnome? ( gtk ) eds? ( gnome ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.7.tar.xz ) http://dev-www.libreoffice.org/src//ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=d48c783734a65420f509060467651163 diff --git a/metadata/md5-cache/app-office/libreoffice-9999-r2 b/metadata/md5-cache/app-office/libreoffice-9999-r2 index 0c067e48a85f..74cb9539ef46 100644 --- a/metadata/md5-cache/app-office/libreoffice-9999-r2 +++ b/metadata/md5-cache/app-office/libreoffice-9999-r2 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python2_7? ( dev-lang/python:2.7[threads,xml] ) pyt REQUIRED_USE=bluetooth? ( dbus ) gnome? ( gtk ) eds? ( gnome ) libreoffice_extensions_nlpsolver? ( java ) libreoffice_extensions_scripting-beanshell? ( java ) libreoffice_extensions_scripting-javascript? ( java ) libreoffice_extensions_wiki-publisher? ( java ) SLOT=0 SRC_URI=branding? ( http://dev.gentoo.org/~dilfridge/distfiles/libreoffice-branding-gentoo-0.7.tar.xz ) http://dev-www.libreoffice.org/src//ea91f2fb4212a21d708aced277e6e85a-vigra1.4.0.tar.gz http://dev-www.libreoffice.org/src//1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz java? ( http://dev-www.libreoffice.org/src//17410483b5b5f267aa18b7e00b65e6e0-hsqldb_1_8_0.zip ) libreoffice_extensions_wiki-publisher? ( http://dev-www.libreoffice.org/src//a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip ) libreoffice_extensions_scripting-javascript? ( http://dev-www.libreoffice.org/src//35c94d2df8893241173de1d16b6034c0-swingExSrc.zip ) odk? ( http://download.go-oo.org/extern/185d60944ea767075d27247c3162b3bc-unowinreg.dll ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=c4bd5ce0659601bedcbb4864b38143bf diff --git a/metadata/md5-cache/app-office/libreoffice-bin-3.6.4.3 b/metadata/md5-cache/app-office/libreoffice-bin-3.6.4.3 index 1eaa05443d67..2649859c26e9 100644 --- a/metadata/md5-cache/app-office/libreoffice-bin-3.6.4.3 +++ b/metadata/md5-cache/app-office/libreoffice-bin-3.6.4.3 @@ -12,5 +12,5 @@ REQUIRED_USE=kde? ( !gnome ) gnome? ( !kde ) RESTRICT=test strip SLOT=0 SRC_URI=amd64? ( kde? ( !java? ( mirror://gentoo/amd64-bin-libreoffice-kde-3.6.4.3.tar.xz ) java? ( mirror://gentoo/amd64-bin-libreoffice-kde-java-3.6.4.3.tar.xz ) ) gnome? ( !java? ( mirror://gentoo/amd64-bin-libreoffice-gnome-3.6.4.3.tar.xz ) java? ( mirror://gentoo/amd64-bin-libreoffice-gnome-java-3.6.4.3.tar.xz ) ) !kde? ( !gnome? ( !java? ( mirror://gentoo/amd64-bin-libreoffice-base-3.6.4.3.tar.xz ) java? ( mirror://gentoo/amd64-bin-libreoffice-base-java-3.6.4.3.tar.xz ) ) ) ) x86? ( kde? ( !java? ( mirror://gentoo/x86-bin-libreoffice-kde-3.6.4.3.tar.xz ) java? ( mirror://gentoo/x86-bin-libreoffice-kde-java-3.6.4.3.tar.xz ) ) gnome? ( !java? ( mirror://gentoo/x86-bin-libreoffice-gnome-3.6.4.3.tar.xz ) java? ( mirror://gentoo/x86-bin-libreoffice-gnome-java-3.6.4.3.tar.xz ) ) !kde? ( !gnome? ( !java? ( mirror://gentoo/x86-bin-libreoffice-base-3.6.4.3.tar.xz ) java? ( mirror://gentoo/x86-bin-libreoffice-base-java-3.6.4.3.tar.xz ) ) ) ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=9decceb46846d506175641a38df57414 diff --git a/metadata/md5-cache/app-office/libreoffice-l10n-3.6.4.3 b/metadata/md5-cache/app-office/libreoffice-l10n-3.6.4.3 index 2262251349f1..c60accea4eb4 100644 --- a/metadata/md5-cache/app-office/libreoffice-l10n-3.6.4.3 +++ b/metadata/md5-cache/app-office/libreoffice-l10n-3.6.4.3 @@ -11,4 +11,4 @@ RESTRICT=strip SLOT=0 SRC_URI=linguas_ast? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_ast.tar.gz ) ) linguas_bg? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_bg.tar.gz ) ) linguas_bn_IN? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_bn-IN.tar.gz ) ) linguas_bn? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_bn.tar.gz ) ) linguas_bo? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_bo.tar.gz ) ) linguas_bs? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_bs.tar.gz ) ) linguas_ca_XV? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_ca-XV.tar.gz ) ) linguas_ca? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_ca.tar.gz ) ) linguas_cs? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_cs.tar.gz ) ) linguas_da? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_da.tar.gz ) ) linguas_de? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_de.tar.gz ) ) linguas_dz? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_dz.tar.gz ) ) linguas_el? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_el.tar.gz ) ) linguas_en_GB? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_en-GB.tar.gz ) ) linguas_en? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_en-US.tar.gz ) ) linguas_en_ZA? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_en-ZA.tar.gz ) ) linguas_eo? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_eo.tar.gz ) ) linguas_es? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_es.tar.gz ) ) linguas_et? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_et.tar.gz ) ) linguas_eu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_eu.tar.gz ) ) linguas_fi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_fi.tar.gz ) ) linguas_fr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_fr.tar.gz ) ) linguas_gl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_gl.tar.gz ) ) linguas_gu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_gu.tar.gz ) ) linguas_he? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_he.tar.gz ) ) linguas_hi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_hi.tar.gz ) ) linguas_hr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_hr.tar.gz ) ) linguas_hu? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_hu.tar.gz ) ) linguas_id? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_id.tar.gz ) ) linguas_is? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_is.tar.gz ) ) linguas_it? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_it.tar.gz ) ) linguas_ja? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_ja.tar.gz ) ) linguas_ka? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_ka.tar.gz ) ) linguas_km? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_km.tar.gz ) ) linguas_ko? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_ko.tar.gz ) ) linguas_lb? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_lb.tar.gz ) ) linguas_mk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_mk.tar.gz ) ) linguas_nb? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_nb.tar.gz ) ) linguas_ne? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_ne.tar.gz ) ) linguas_nl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_nl.tar.gz ) ) linguas_nn? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_nn.tar.gz ) ) linguas_om? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_om.tar.gz ) ) linguas_pl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_pl.tar.gz ) ) linguas_pt_BR? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_pt-BR.tar.gz ) ) linguas_pt? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_pt.tar.gz ) ) linguas_ru? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_ru.tar.gz ) ) linguas_si? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_si.tar.gz ) ) linguas_sk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_sk.tar.gz ) ) linguas_sl? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_sl.tar.gz ) ) linguas_sq? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_sq.tar.gz ) ) linguas_sv? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_sv.tar.gz ) ) linguas_tg? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_tg.tar.gz ) ) linguas_tr? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_tr.tar.gz ) ) linguas_ug? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_ug.tar.gz ) ) linguas_uk? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_uk.tar.gz ) ) linguas_vi? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_vi.tar.gz ) ) linguas_zh_CN? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_zh-CN.tar.gz ) ) linguas_zh_TW? ( offlinehelp? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_helppack-rpm_zh-TW.tar.gz ) ) linguas_ast? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ast.tar.gz ) linguas_bg? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_bg.tar.gz ) linguas_bn_IN? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_bn-IN.tar.gz ) linguas_bn? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_bn.tar.gz ) linguas_bo? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_bo.tar.gz ) linguas_bs? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_bs.tar.gz ) linguas_ca_XV? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ca-XV.tar.gz ) linguas_ca? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ca.tar.gz ) linguas_cs? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_cs.tar.gz ) linguas_da? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_da.tar.gz ) linguas_de? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_de.tar.gz ) linguas_dz? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_dz.tar.gz ) linguas_el? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_el.tar.gz ) linguas_en_GB? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_en-GB.tar.gz ) linguas_en_ZA? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_en-ZA.tar.gz ) linguas_eo? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_eo.tar.gz ) linguas_es? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_es.tar.gz ) linguas_et? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_et.tar.gz ) linguas_eu? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_eu.tar.gz ) linguas_fi? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_fi.tar.gz ) linguas_fr? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_fr.tar.gz ) linguas_gl? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_gl.tar.gz ) linguas_gu? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_gu.tar.gz ) linguas_he? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_he.tar.gz ) linguas_hi? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_hi.tar.gz ) linguas_hr? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_hr.tar.gz ) linguas_hu? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_hu.tar.gz ) linguas_id? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_id.tar.gz ) linguas_is? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_is.tar.gz ) linguas_it? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_it.tar.gz ) linguas_ja? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ja.tar.gz ) linguas_ka? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ka.tar.gz ) linguas_km? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_km.tar.gz ) linguas_ko? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ko.tar.gz ) linguas_lb? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_lb.tar.gz ) linguas_mk? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_mk.tar.gz ) linguas_nb? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_nb.tar.gz ) linguas_ne? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ne.tar.gz ) linguas_nl? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_nl.tar.gz ) linguas_nn? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_nn.tar.gz ) linguas_om? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_om.tar.gz ) linguas_pl? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_pl.tar.gz ) linguas_pt_BR? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_pt-BR.tar.gz ) linguas_pt? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_pt.tar.gz ) linguas_ru? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ru.tar.gz ) linguas_si? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_si.tar.gz ) linguas_sk? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sk.tar.gz ) linguas_sl? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sl.tar.gz ) linguas_sq? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sq.tar.gz ) linguas_sv? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sv.tar.gz ) linguas_tg? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_tg.tar.gz ) linguas_tr? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_tr.tar.gz ) linguas_ug? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ug.tar.gz ) linguas_uk? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_uk.tar.gz ) linguas_vi? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_vi.tar.gz ) linguas_zh_CN? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_zh-CN.tar.gz ) linguas_zh_TW? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_zh-TW.tar.gz ) linguas_af? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_af.tar.gz ) linguas_am? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_am.tar.gz ) linguas_ar? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ar.tar.gz ) linguas_as? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_as.tar.gz ) linguas_be? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_be.tar.gz ) linguas_br? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_br.tar.gz ) linguas_brx? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_brx.tar.gz ) linguas_cy? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_cy.tar.gz ) linguas_dgo? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_dgo.tar.gz ) linguas_fa? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_fa.tar.gz ) linguas_ga? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ga.tar.gz ) linguas_gd? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_gd.tar.gz ) linguas_kk? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_kk.tar.gz ) linguas_kn? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_kn.tar.gz ) linguas_kok? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_kok.tar.gz ) linguas_ks? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ks.tar.gz ) linguas_ku? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ku.tar.gz ) linguas_lo? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_lo.tar.gz ) linguas_lt? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_lt.tar.gz ) linguas_lv? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_lv.tar.gz ) linguas_mai? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_mai.tar.gz ) linguas_ml? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ml.tar.gz ) linguas_mn? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_mn.tar.gz ) linguas_mni? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_mni.tar.gz ) linguas_mr? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_mr.tar.gz ) linguas_my? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_my.tar.gz ) linguas_nr? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_nr.tar.gz ) linguas_nso? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_nso.tar.gz ) linguas_oc? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_oc.tar.gz ) linguas_or? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_or.tar.gz ) linguas_pa_IN? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_pa-IN.tar.gz ) linguas_ro? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ro.tar.gz ) linguas_rw? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_rw.tar.gz ) linguas_sa_IN? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sa-IN.tar.gz ) linguas_sat? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sat.tar.gz ) linguas_sd? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sd.tar.gz ) linguas_sh? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sh.tar.gz ) linguas_sr? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sr.tar.gz ) linguas_ss? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ss.tar.gz ) linguas_st? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_st.tar.gz ) linguas_sw_TZ? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_sw-TZ.tar.gz ) linguas_ta? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ta.tar.gz ) linguas_te? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_te.tar.gz ) linguas_th? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_th.tar.gz ) linguas_tn? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_tn.tar.gz ) linguas_ts? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ts.tar.gz ) linguas_tt? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_tt.tar.gz ) linguas_uz? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_uz.tar.gz ) linguas_ve? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_ve.tar.gz ) linguas_xh? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_xh.tar.gz ) linguas_zu? ( http://download.documentfoundation.org/libreoffice/stable/3.6.4/rpm/x86/LibO_3.6.4_Linux_x86_langpack-rpm_zu.tar.gz ) _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b rpm b94b54b44f14d6bee3e966c8f5c86fba toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=9052f04776c64f9a9af88eeb675840fa +_md5_=387c3384610f9c7b10adde785732a6b2 diff --git a/metadata/md5-cache/app-office/libreoffice-l10n-3.6.6.2 b/metadata/md5-cache/app-office/libreoffice-l10n-3.6.6.2 new file mode 100644 index 000000000000..9128d5e602ee --- /dev/null +++ b/metadata/md5-cache/app-office/libreoffice-l10n-3.6.6.2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare unpack +DEPEND=>=app-arch/rpm2targz-9.0.0.3g +DESCRIPTION=Translations for the Libreoffice suite. +EAPI=4 +HOMEPAGE=http://www.libreoffice.org +IUSE=offlinehelp linguas_ast linguas_bg linguas_bn_IN linguas_bn linguas_bo linguas_bs linguas_ca_XV linguas_ca linguas_cs linguas_da linguas_de linguas_dz linguas_el linguas_en_GB linguas_en linguas_en_ZA linguas_eo linguas_es linguas_et linguas_eu linguas_fi linguas_fr linguas_gl linguas_gu linguas_he linguas_hi linguas_hr linguas_hu linguas_id linguas_is linguas_it linguas_ja linguas_ka linguas_km linguas_ko linguas_lb linguas_mk linguas_nb linguas_ne linguas_nl linguas_nn linguas_om linguas_pl linguas_pt_BR linguas_pt linguas_ru linguas_si linguas_sk linguas_sl linguas_sq linguas_sv linguas_tg linguas_tr linguas_ug linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW linguas_af linguas_am linguas_ar linguas_as linguas_be linguas_br linguas_brx linguas_cy linguas_dgo linguas_fa linguas_ga linguas_gd linguas_kk linguas_kn linguas_kok linguas_ks linguas_ku linguas_lo linguas_lt linguas_lv linguas_mai linguas_ml linguas_mn linguas_mni linguas_mr linguas_my linguas_nr linguas_nso linguas_oc linguas_or linguas_pa_IN linguas_ro linguas_rw linguas_sa_IN linguas_sat linguas_sd linguas_sh linguas_sr linguas_ss linguas_st linguas_sw_TZ linguas_ta linguas_te linguas_th linguas_tn linguas_ts linguas_tt linguas_uz linguas_ve linguas_xh linguas_zu +KEYWORDS=~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux +LICENSE=|| ( LGPL-3 MPL-1.1 ) +RDEPEND=app-text/hunspell !=dev-libs/glib-2.28.5 >=dev-libs/libxml2-2.7.7 >=dev-util/anjuta-2.91 >=media-libs/libgpod-0.7.0 >=media-libs/libid3tag-0.15 >=x11-libs/gtk+-3.0.8:3 aac? ( media-libs/faad2 ) clutter? ( media-libs/clutter-gtk:1.0 ) curl? ( >=net-misc/curl-7.10 ) cdr? ( >=app-cdr/brasero-3 media-libs/musicbrainz:3 ) flac? ( media-libs/flac ) gstreamer? ( >=media-libs/gst-plugins-base-0.10.25:0.10 ) mp3? ( media-sound/lame ) vorbis? ( media-libs/libvorbis media-sound/vorbis-tools ) webkit? ( >=net-libs/webkit-gtk-1.3:3 ) dev-util/intltool sys-devel/flex sys-devel/gettext virtual/os-headers virtual/pkgconfig >=sys-apps/sed-4 -DESCRIPTION=A graphical user interface to the Apple productline -EAPI=4 -HOMEPAGE=http://gtkpod.sourceforge.net/ -IUSE=aac clutter curl cdr flac gstreamer mp3 vorbis webkit -KEYWORDS=amd64 x86 -LICENSE=GPL-2 FDL-1.2 -RDEPEND=dev-libs/gdl:3 >=dev-libs/glib-2.28.5 >=dev-libs/libxml2-2.7.7 >=dev-util/anjuta-2.91 >=media-libs/libgpod-0.7.0 >=media-libs/libid3tag-0.15 >=x11-libs/gtk+-3.0.8:3 aac? ( media-libs/faad2 ) clutter? ( media-libs/clutter-gtk:1.0 ) curl? ( >=net-misc/curl-7.10 ) cdr? ( >=app-cdr/brasero-3 media-libs/musicbrainz:3 ) flac? ( media-libs/flac ) gstreamer? ( >=media-libs/gst-plugins-base-0.10.25:0.10 ) mp3? ( media-sound/lame ) vorbis? ( media-libs/libvorbis media-sound/vorbis-tools ) webkit? ( >=net-libs/webkit-gtk-1.3:3 ) gstreamer? ( media-plugins/gst-plugins-meta:0.10 ) -SLOT=0 -SRC_URI=mirror://sourceforge/gtkpod/gtkpod-2.1.2.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=822b00ead83f6c5599c43bcc6fd39fa4 diff --git a/metadata/md5-cache/app-pda/gtkpod-2.1.3-r1 b/metadata/md5-cache/app-pda/gtkpod-2.1.3-r1 index 11e56410b0fb..9b72f8b3ec07 100644 --- a/metadata/md5-cache/app-pda/gtkpod-2.1.3-r1 +++ b/metadata/md5-cache/app-pda/gtkpod-2.1.3-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install postinst postrm preinst prepare -DEPEND=dev-libs/gdl:3 >=dev-libs/glib-2.28.5 >=dev-libs/libxml2-2.7.7 >=dev-util/anjuta-2.91 >=media-libs/libgpod-0.7.0 >=media-libs/libid3tag-0.15 >=x11-libs/gtk+-3.0.8:3 aac? ( media-libs/faad2 ) clutter? ( media-libs/clutter-gtk:1.0 ) curl? ( >=net-misc/curl-7.10 ) cdr? ( >=app-cdr/brasero-3 media-libs/musicbrainz:3 ) flac? ( media-libs/flac ) gstreamer? ( >=media-libs/gst-plugins-base-0.10.25:0.10 ) mp3? ( media-sound/lame ) vorbis? ( media-libs/libvorbis media-sound/vorbis-tools ) webkit? ( >=net-libs/webkit-gtk-1.3:3 ) dev-util/intltool sys-devel/flex sys-devel/gettext virtual/os-headers virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 +DEPEND=>=dev-libs/gdl-3.6:3 >=dev-libs/glib-2.28.5 >=dev-libs/libxml2-2.7.7 >=dev-util/anjuta-2.91 >=media-libs/libgpod-0.7.0 >=media-libs/libid3tag-0.15 >=x11-libs/gtk+-3.0.8:3 aac? ( media-libs/faad2 ) clutter? ( media-libs/clutter-gtk:1.0 ) curl? ( >=net-misc/curl-7.10 ) cdr? ( >=app-cdr/brasero-3 media-libs/musicbrainz:3 ) flac? ( media-libs/flac ) gstreamer? ( >=media-libs/gst-plugins-base-0.10.25:0.10 ) mp3? ( media-sound/lame ) vorbis? ( media-libs/libvorbis media-sound/vorbis-tools ) webkit? ( >=net-libs/webkit-gtk-1.3:3 ) dev-util/intltool media-libs/gstreamer sys-devel/flex sys-devel/gettext virtual/os-headers virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 DESCRIPTION=A graphical user interface to the Apple productline -EAPI=4 +EAPI=5 HOMEPAGE=http://gtkpod.sourceforge.net/ IUSE=aac clutter curl cdr flac gstreamer mp3 vorbis webkit -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 FDL-1.2 -RDEPEND=dev-libs/gdl:3 >=dev-libs/glib-2.28.5 >=dev-libs/libxml2-2.7.7 >=dev-util/anjuta-2.91 >=media-libs/libgpod-0.7.0 >=media-libs/libid3tag-0.15 >=x11-libs/gtk+-3.0.8:3 aac? ( media-libs/faad2 ) clutter? ( media-libs/clutter-gtk:1.0 ) curl? ( >=net-misc/curl-7.10 ) cdr? ( >=app-cdr/brasero-3 media-libs/musicbrainz:3 ) flac? ( media-libs/flac ) gstreamer? ( >=media-libs/gst-plugins-base-0.10.25:0.10 ) mp3? ( media-sound/lame ) vorbis? ( media-libs/libvorbis media-sound/vorbis-tools ) webkit? ( >=net-libs/webkit-gtk-1.3:3 ) gstreamer? ( media-plugins/gst-plugins-meta:0.10 ) +RDEPEND=>=dev-libs/gdl-3.6:3 >=dev-libs/glib-2.28.5 >=dev-libs/libxml2-2.7.7 >=dev-util/anjuta-2.91 >=media-libs/libgpod-0.7.0 >=media-libs/libid3tag-0.15 >=x11-libs/gtk+-3.0.8:3 aac? ( media-libs/faad2 ) clutter? ( media-libs/clutter-gtk:1.0 ) curl? ( >=net-misc/curl-7.10 ) cdr? ( >=app-cdr/brasero-3 media-libs/musicbrainz:3 ) flac? ( media-libs/flac ) gstreamer? ( >=media-libs/gst-plugins-base-0.10.25:0.10 ) mp3? ( media-sound/lame ) vorbis? ( media-libs/libvorbis media-sound/vorbis-tools ) webkit? ( >=net-libs/webkit-gtk-1.3:3 ) gstreamer? ( media-plugins/gst-plugins-meta:0.10 ) SLOT=0 SRC_URI=mirror://sourceforge/gtkpod/gtkpod-2.1.3.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=31b28ca2d34902be2e5b49fffc2d428a +_md5_=1f401429afe613399ae7c7af9a6e445b 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 1666589c4a33..2c602987cf1b 100644 --- a/metadata/md5-cache/app-portage/diffmask-0.3.3-r2 +++ b/metadata/md5-cache/app-portage/diffmask-0.3.3-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=sys-apps/portage-2.1.8.3 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/diffmask/downloads/diffmask-0.3.3.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7d329495b16fb1582382759cc9e5f4a6 diff --git a/metadata/md5-cache/app-portage/diffmask-9999 b/metadata/md5-cache/app-portage/diffmask-9999 index 481f798b3ddf..5cde3f3abc08 100644 --- a/metadata/md5-cache/app-portage/diffmask-9999 +++ b/metadata/md5-cache/app-portage/diffmask-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 LICENSE=BSD RDEPEND=>=sys-apps/portage-2.1.8.3 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4baca293872cf280d34c623f248d4ef7 diff --git a/metadata/md5-cache/app-portage/flaggie-0.2-r2 b/metadata/md5-cache/app-portage/flaggie-0.2-r2 index 6592648dd9f6..2568257cfd4b 100644 --- a/metadata/md5-cache/app-portage/flaggie-0.2-r2 +++ b/metadata/md5-cache/app-portage/flaggie-0.2-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=sys-apps/portage-2.1.8.3 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/flaggie/downloads/flaggie-0.2.tar.bz2 -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9e7776d9a18949831ec0401cf923ceb0 diff --git a/metadata/md5-cache/app-portage/flaggie-0.2-r3 b/metadata/md5-cache/app-portage/flaggie-0.2-r3 index 40a5ed3cf7b9..f18e160e4158 100644 --- a/metadata/md5-cache/app-portage/flaggie-0.2-r3 +++ b/metadata/md5-cache/app-portage/flaggie-0.2-r3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=sys-apps/portage-2.1.8.3 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/flaggie/downloads/flaggie-0.2.tar.bz2 -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a68e710daf1dc34e16633eed16d93316 diff --git a/metadata/md5-cache/app-portage/flaggie-9999 b/metadata/md5-cache/app-portage/flaggie-9999 index 8c257102b84f..31c57185483c 100644 --- a/metadata/md5-cache/app-portage/flaggie-9999 +++ b/metadata/md5-cache/app-portage/flaggie-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 LICENSE=BSD RDEPEND=>=sys-apps/portage-2.1.8.3 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=afc34036c8e94fa3649ddc143941d4a8 diff --git a/metadata/md5-cache/app-portage/gentoolkit-9999 b/metadata/md5-cache/app-portage/gentoolkit-9999 index c38b342b7845..16b2f566d056 100644 --- a/metadata/md5-cache/app-portage/gentoolkit-9999 +++ b/metadata/md5-cache/app-portage/gentoolkit-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 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_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) python_targets_python3_1? ( dev-lang/python:3.1[xml] ) python_targets_python3_2? ( dev-lang/python:3.2[xml] ) python_targets_python3_3? ( dev-lang/python:3.3[xml] ) python_targets_pypy1_9? ( dev-python/pypy:1.9[xml] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eca1ce1cb50ba715e952134174777746 diff --git a/metadata/md5-cache/app-portage/gentoopm-0.2.6 b/metadata/md5-cache/app-portage/gentoopm-0.2.6 index 8762eb386376..3e543caa474b 100644 --- a/metadata/md5-cache/app-portage/gentoopm-0.2.6 +++ b/metadata/md5-cache/app-portage/gentoopm-0.2.6 @@ -10,5 +10,5 @@ PDEPEND=app-admin/eselect-package-manager RDEPEND=|| ( sys-apps/pkgcore >=sys-apps/portage-2.1.10.3 >=sys-apps/paludis-0.64.2[python-bindings] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/gentoopm/downloads/gentoopm-0.2.6.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9bebabe40d9a10f6e9492a454be5ed39 diff --git a/metadata/md5-cache/app-portage/gentoopm-0.2.7 b/metadata/md5-cache/app-portage/gentoopm-0.2.7 index 9882f26e5b07..59e83464b017 100644 --- a/metadata/md5-cache/app-portage/gentoopm-0.2.7 +++ b/metadata/md5-cache/app-portage/gentoopm-0.2.7 @@ -10,5 +10,5 @@ PDEPEND=app-admin/eselect-package-manager RDEPEND=|| ( sys-apps/pkgcore >=sys-apps/portage-2.1.10.3 >=sys-apps/paludis-0.64.2[python-bindings] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/gentoopm/downloads/gentoopm-0.2.7.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d6fade64e0113b6dc44591aae846f4b2 diff --git a/metadata/md5-cache/app-portage/gentoopm-0.2.8 b/metadata/md5-cache/app-portage/gentoopm-0.2.8 index 92f8bf398af0..4370c6f7df81 100644 --- a/metadata/md5-cache/app-portage/gentoopm-0.2.8 +++ b/metadata/md5-cache/app-portage/gentoopm-0.2.8 @@ -10,5 +10,5 @@ PDEPEND=app-admin/eselect-package-manager RDEPEND=|| ( sys-apps/pkgcore >=sys-apps/portage-2.1.10.3 >=sys-apps/paludis-0.64.2[python-bindings] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/gentoopm/downloads/gentoopm-0.2.8.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6624b34406393351188e20fa921dc2d6 diff --git a/metadata/md5-cache/app-portage/gentoopm-9999 b/metadata/md5-cache/app-portage/gentoopm-9999 index ebf9768a454b..bac2e1e86512 100644 --- a/metadata/md5-cache/app-portage/gentoopm-9999 +++ b/metadata/md5-cache/app-portage/gentoopm-9999 @@ -8,5 +8,5 @@ LICENSE=BSD-2 PDEPEND=app-admin/eselect-package-manager RDEPEND=|| ( sys-apps/pkgcore >=sys-apps/portage-2.1.10.3 >=sys-apps/paludis-0.64.2[python-bindings] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cc7203fcf2600ad143a6b108c92f5cb1 diff --git a/metadata/md5-cache/app-portage/install-mask-0.0.2-r2 b/metadata/md5-cache/app-portage/install-mask-0.0.2-r2 index bff6460a4319..3fc4ee9d363d 100644 --- a/metadata/md5-cache/app-portage/install-mask-0.0.2-r2 +++ b/metadata/md5-cache/app-portage/install-mask-0.0.2-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-portage/flaggie[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/install-mask/downloads/install-mask-0.0.2.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=418ef37f3eee3d913211144400644571 diff --git a/metadata/md5-cache/app-portage/install-mask-9999 b/metadata/md5-cache/app-portage/install-mask-9999 index 8891965f45dc..097135e3179b 100644 --- a/metadata/md5-cache/app-portage/install-mask-9999 +++ b/metadata/md5-cache/app-portage/install-mask-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 LICENSE=BSD RDEPEND=app-portage/flaggie[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/lxml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8479948b0bdbd6feba561008f7d40176 diff --git a/metadata/md5-cache/app-portage/pfl-2.3-r3 b/metadata/md5-cache/app-portage/pfl-2.3-r3 index f67cf531e7f3..d3d8ac22cbe7 100644 --- a/metadata/md5-cache/app-portage/pfl-2.3-r3 +++ b/metadata/md5-cache/app-portage/pfl-2.3-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=net-misc/curl sys-apps/portage python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python: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(-)] SLOT=0 SRC_URI=http://files.portagefilelist.de/pfl-2.3.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d5544ccf2c5c782638bf6b78c2462f80 diff --git a/metadata/md5-cache/app-portage/smart-live-rebuild-1.2.5 b/metadata/md5-cache/app-portage/smart-live-rebuild-1.2.5 index 2e60112e2f0b..478dfde48aae 100644 --- a/metadata/md5-cache/app-portage/smart-live-rebuild-1.2.5 +++ b/metadata/md5-cache/app-portage/smart-live-rebuild-1.2.5 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=app-portage/gentoopm-0.2.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/smart-live-rebuild/downloads/smart-live-rebuild-1.2.5.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=636e09ec50539a4dedc7be6a900afccc 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 c4adce9ab634..bd77b478ad2a 100644 --- a/metadata/md5-cache/app-portage/smart-live-rebuild-1.3 +++ b/metadata/md5-cache/app-portage/smart-live-rebuild-1.3 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=>=app-portage/gentoopm-0.2.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/smart-live-rebuild/downloads/smart-live-rebuild-1.3.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=740a4e6d99070cb91036a3241d3fd3da diff --git a/metadata/md5-cache/app-portage/smart-live-rebuild-9999 b/metadata/md5-cache/app-portage/smart-live-rebuild-9999 index 2b6faec8f50a..55054993dda6 100644 --- a/metadata/md5-cache/app-portage/smart-live-rebuild-9999 +++ b/metadata/md5-cache/app-portage/smart-live-rebuild-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 LICENSE=BSD-2 RDEPEND=>=app-portage/gentoopm-0.2.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8ffb3cfff3abcd20c6452cfb42f4139c diff --git a/metadata/md5-cache/app-shells/mksh-40f b/metadata/md5-cache/app-shells/mksh-40f index 3d7059bc3143..ae876eb8aac9 100644 --- a/metadata/md5-cache/app-shells/mksh-40f +++ b/metadata/md5-cache/app-shells/mksh-40f @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD SLOT=0 SRC_URI=http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R40f.cpio.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a66e2c02849a57abdbc8fdc69ad69b0c diff --git a/metadata/md5-cache/app-shells/mksh-41 b/metadata/md5-cache/app-shells/mksh-41 index af31aa30955b..f338a4379c5c 100644 --- a/metadata/md5-cache/app-shells/mksh-41 +++ b/metadata/md5-cache/app-shells/mksh-41 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD SLOT=0 SRC_URI=http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R41.tgz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=82bc0eba9b967df6da4b687ec89ff665 diff --git a/metadata/md5-cache/app-shells/mksh-41b b/metadata/md5-cache/app-shells/mksh-41b index 26917cb7fe44..7c435552f21a 100644 --- a/metadata/md5-cache/app-shells/mksh-41b +++ b/metadata/md5-cache/app-shells/mksh-41b @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD SLOT=0 SRC_URI=http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R41b.tgz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=98c8eff3528b360c26c4c0ffcfba9eb7 diff --git a/metadata/md5-cache/app-shells/mksh-41c b/metadata/md5-cache/app-shells/mksh-41c index ff54ba718191..59a9ba71b9ba 100644 --- a/metadata/md5-cache/app-shells/mksh-41c +++ b/metadata/md5-cache/app-shells/mksh-41c @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD SLOT=0 SRC_URI=http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R41c.tgz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=82fa792b82fe978ef5f100023e5d68c9 diff --git a/metadata/md5-cache/app-shells/mksh-42 b/metadata/md5-cache/app-shells/mksh-42 index 90291c38c714..14a0e049fa28 100644 --- a/metadata/md5-cache/app-shells/mksh-42 +++ b/metadata/md5-cache/app-shells/mksh-42 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD SLOT=0 SRC_URI=http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R42.tgz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6d1d158bfc4b28ae532a49af00dc53e7 diff --git a/metadata/md5-cache/app-shells/mksh-43 b/metadata/md5-cache/app-shells/mksh-43 index 5aba6d8287ac..2a0bdb7733e5 100644 --- a/metadata/md5-cache/app-shells/mksh-43 +++ b/metadata/md5-cache/app-shells/mksh-43 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD SLOT=0 SRC_URI=http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R43.tgz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=43e676f5b335c735d84a8fec125f93af diff --git a/metadata/md5-cache/app-shells/mksh-44 b/metadata/md5-cache/app-shells/mksh-44 index 17cda209ff96..70b73826781a 100644 --- a/metadata/md5-cache/app-shells/mksh-44 +++ b/metadata/md5-cache/app-shells/mksh-44 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD SLOT=0 SRC_URI=http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R44.tgz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=800702c54594800de9341f3b4f8b7842 diff --git a/metadata/md5-cache/app-shells/mksh-44-r1 b/metadata/md5-cache/app-shells/mksh-44-r1 index e78b51acff84..518a1abe7da4 100644 --- a/metadata/md5-cache/app-shells/mksh-44-r1 +++ b/metadata/md5-cache/app-shells/mksh-44-r1 @@ -8,5 +8,5 @@ KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux LICENSE=BSD SLOT=0 SRC_URI=http://www.mirbsd.org/MirOS/dist/mir/mksh/mksh-R44.tgz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=01e955b05bed8bf43e58cce4b11d69ad diff --git a/metadata/md5-cache/app-text/djvusmooth-0.2.14 b/metadata/md5-cache/app-text/djvusmooth-0.2.14 index 0a721e861c52..1ecd5b555a5e 100644 --- a/metadata/md5-cache/app-text/djvusmooth-0.2.14 +++ b/metadata/md5-cache/app-text/djvusmooth-0.2.14 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/python-djvulibre[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/wxpython:2.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] x11-themes/hicolor-icon-theme python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/d/djvusmooth/djvusmooth-0.2.14.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2bb729b46eca1fb46a0f83cd101cda6 diff --git a/metadata/md5-cache/app-text/dvisvgm-1.2.1 b/metadata/md5-cache/app-text/dvisvgm-1.2.1 new file mode 100644 index 000000000000..6238a0d3dd62 --- /dev/null +++ b/metadata/md5-cache/app-text/dvisvgm-1.2.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=- +DEPEND=virtual/tex-base app-text/ghostscript-gpl >=media-gfx/potrace-1.10-r1 media-libs/freetype:2 sys-libs/zlib virtual/pkgconfig test? ( dev-cpp/gtest ) +DESCRIPTION=Converts DVI files to SVG +EAPI=4 +HOMEPAGE=http://dvisvgm.sourceforge.net/ +IUSE=test +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos +LICENSE=GPL-3 +RDEPEND=virtual/tex-base app-text/ghostscript-gpl >=media-gfx/potrace-1.10-r1 media-libs/freetype:2 sys-libs/zlib +RESTRICT=test +SLOT=0 +SRC_URI=mirror://sourceforge/dvisvgm/dvisvgm-1.2.1.tar.gz +_md5_=0e2cb91faedf586e0e1c9a1f43124391 diff --git a/metadata/md5-cache/app-text/fbless-0.2.2 b/metadata/md5-cache/app-text/fbless-0.2.2 deleted file mode 100644 index 56d849747791..000000000000 --- a/metadata/md5-cache/app-text/fbless-0.2.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test -DEPEND=dev-lang/python:2.7[ncurses,xml] !=media-libs/libpng-1.4:0 media-libs/tiff:0 sys-libs/zlib SLOT=0 SRC_URI=mirror://sourceforge/podofo/podofo-0.9.2.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=50f978aeb970e8e233bd503cb0902205 +_md5_=607de637eedc5cc973d844a073a72117 diff --git a/metadata/md5-cache/app-text/rarian-0.8.1-r2 b/metadata/md5-cache/app-text/rarian-0.8.1-r2 index 817ab8595265..a1d7239185b9 100644 --- a/metadata/md5-cache/app-text/rarian-0.8.1-r2 +++ b/metadata/md5-cache/app-text/rarian-0.8.1-r2 @@ -4,10 +4,10 @@ DESCRIPTION=A documentation metadata library EAPI=4 HOMEPAGE=http://rarian.freedesktop.org/ IUSE=static-libs -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1 RDEPEND=dev-libs/libxslt || ( sys-apps/util-linux app-misc/getopt ) SLOT=0 SRC_URI=http://rarian.freedesktop.org/Releases/rarian-0.8.1.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1996bcd5947a8ab768ce9c00cb9d3030 +_md5_=7ccc5c64f8a0e297dc65f1946f300be1 diff --git a/metadata/md5-cache/app-vim/taglist-4.6 b/metadata/md5-cache/app-vim/taglist-4.6 index 0d799e9e5431..54c09aa3e6bd 100644 --- a/metadata/md5-cache/app-vim/taglist-4.6 +++ b/metadata/md5-cache/app-vim/taglist-4.6 @@ -3,10 +3,10 @@ DEPEND=|| ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) DESCRIPTION=vim plugin: ctags-based source code browser EAPI=5 HOMEPAGE=http://vim-taglist.sourceforge.net/ -KEYWORDS=~alpha amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris +KEYWORDS=~alpha amd64 hppa ~ia64 ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris LICENSE=vim RDEPEND=dev-util/ctags || ( >=app-editors/vim-7.0 >=app-editors/gvim-7.0 ) SLOT=0 SRC_URI=mirror://gentoo/taglist-4.6.tar.bz2 http://dev.gentoo.org/~radhermit/vim/taglist-4.6.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vim-doc 1c18baeec98cec3287524cbf2fee2bd2 vim-plugin 3e2b8e3b7a061cd56a91f1583248b89f -_md5_=0224e584573cf94374df3b6c64de103a +_md5_=715f2a405f6df927cf8ba0757709f1cc diff --git a/metadata/md5-cache/dev-ada/asis-gcc-3.4.6 b/metadata/md5-cache/dev-ada/asis-gcc-3.4.6 index fc2616e1d8aa..cd8d91dcf53e 100644 --- a/metadata/md5-cache/dev-ada/asis-gcc-3.4.6 +++ b/metadata/md5-cache/dev-ada/asis-gcc-3.4.6 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND==dev-lang/gnat-gcc-3.4.6* app-admin/eselect-gnat SLOT=3.4 SRC_URI=http://dev.gentoo.org/~george/src/asis-3.4.4.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=7757963a5476a94f2308af0d03687564 diff --git a/metadata/md5-cache/dev-ada/asis-gcc-4.1.2 b/metadata/md5-cache/dev-ada/asis-gcc-4.1.2 index 891ad44eee94..0b6f8045aca1 100644 --- a/metadata/md5-cache/dev-ada/asis-gcc-4.1.2 +++ b/metadata/md5-cache/dev-ada/asis-gcc-4.1.2 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND==dev-lang/gnat-gcc-4.1.2* app-admin/eselect-gnat SLOT=4.1 SRC_URI=http://dev.gentoo.org/~george/src/asis-gcc-4.1.1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=652f4647b7b17c11414d1c00084c08ba diff --git a/metadata/md5-cache/dev-ada/asis-gcc-4.1.2-r1 b/metadata/md5-cache/dev-ada/asis-gcc-4.1.2-r1 index 502a60e9b5f2..a4d11031e3f1 100644 --- a/metadata/md5-cache/dev-ada/asis-gcc-4.1.2-r1 +++ b/metadata/md5-cache/dev-ada/asis-gcc-4.1.2-r1 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND==dev-lang/gnat-gcc-4.1.2* app-admin/eselect-gnat SLOT=4.1 SRC_URI=http://dev.gentoo.org/~george/src/asis-gcc-4.1.2.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=ab7ccddf3e19ac4321d3b8564be435d6 diff --git a/metadata/md5-cache/dev-ada/asis-gcc-4.2.2 b/metadata/md5-cache/dev-ada/asis-gcc-4.2.2 index 03cf12d6caad..579ecd58a59e 100644 --- a/metadata/md5-cache/dev-ada/asis-gcc-4.2.2 +++ b/metadata/md5-cache/dev-ada/asis-gcc-4.2.2 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND==dev-lang/gnat-gcc-4.2* app-admin/eselect-gnat SLOT=4.2 SRC_URI=http://dev.gentoo.org/~george/src/asis-gcc-4.2.2.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=38a0146e93d72053d86a69757406240b diff --git a/metadata/md5-cache/dev-ada/asis-gcc-4.3.0_pre132166 b/metadata/md5-cache/dev-ada/asis-gcc-4.3.0_pre132166 index f019e24cda8b..e36359db0e50 100644 --- a/metadata/md5-cache/dev-ada/asis-gcc-4.3.0_pre132166 +++ b/metadata/md5-cache/dev-ada/asis-gcc-4.3.0_pre132166 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND==dev-lang/gnat-gcc-4.3* app-admin/eselect-gnat SLOT=4.3 SRC_URI=http://dev.gentoo.org/~george/src/asis-gcc-4.3.0_pre132166.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=68840231d513338f53b79c966d540c62 diff --git a/metadata/md5-cache/dev-ada/asis-gcc-4.3.1 b/metadata/md5-cache/dev-ada/asis-gcc-4.3.1 index f13e82156e44..f9630bc087f1 100644 --- a/metadata/md5-cache/dev-ada/asis-gcc-4.3.1 +++ b/metadata/md5-cache/dev-ada/asis-gcc-4.3.1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND==dev-lang/gnat-gcc-4.3* app-admin/eselect-gnat SLOT=4.3 SRC_URI=http://dev.gentoo.org/~george/src/asis-gpl-2009-src.tgz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c2ca0059f8b393b745173d436bb62235 diff --git a/metadata/md5-cache/dev-ada/asis-gcc-4.3.1-r1 b/metadata/md5-cache/dev-ada/asis-gcc-4.3.1-r1 index 77c4d2d9e386..68a822b1030b 100644 --- a/metadata/md5-cache/dev-ada/asis-gcc-4.3.1-r1 +++ b/metadata/md5-cache/dev-ada/asis-gcc-4.3.1-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND==dev-lang/gnat-gcc-4.3* app-admin/eselect-gnat SLOT=4.3 SRC_URI=http://dev.gentoo.org/~george/src/asis-gpl-2009-src.tgz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=05de62c1a3652ae0e15a94edacc01de8 diff --git a/metadata/md5-cache/dev-ada/asis-gcc-4.4 b/metadata/md5-cache/dev-ada/asis-gcc-4.4 index bb2ee35e9822..2bbd9a16511b 100644 --- a/metadata/md5-cache/dev-ada/asis-gcc-4.4 +++ b/metadata/md5-cache/dev-ada/asis-gcc-4.4 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND==dev-lang/gnat-gcc-4.4* app-admin/eselect-gnat SLOT=4.4 SRC_URI=http://dev.gentoo.org/~george/src/asis-gpl-2010-src.tgz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b5d66ed2bd60327e867699e0d75b3bbd diff --git a/metadata/md5-cache/dev-ada/asis-gpl-3.4.6.2006 b/metadata/md5-cache/dev-ada/asis-gpl-3.4.6.2006 index 5340fd09c6c4..0e72856a3164 100644 --- a/metadata/md5-cache/dev-ada/asis-gpl-3.4.6.2006 +++ b/metadata/md5-cache/dev-ada/asis-gpl-3.4.6.2006 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND==dev-lang/gnat-gpl-3.4.6.2006* app-admin/eselect-gnat SLOT=3.4 SRC_URI=mirror://gentoo/asis-gpl-2006.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5fac33cb5a302c38f7ec86e84f537d81 diff --git a/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2007-r1 b/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2007-r1 index 834c56154d03..2596f935ea15 100644 --- a/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2007-r1 +++ b/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2007-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND==dev-lang/gnat-gpl-4.1.3.2007* app-admin/eselect-gnat SLOT=4.1 SRC_URI=mirror://gentoo/asis-gpl-2007-src.tgz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=dd7df46d08b59cba75d34e13d56b743d diff --git a/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2007-r2 b/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2007-r2 index 82de952f548c..e3fb69809b60 100644 --- a/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2007-r2 +++ b/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2007-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND==dev-lang/gnat-gpl-4.1.3.2007* app-admin/eselect-gnat SLOT=4.1 SRC_URI=mirror://gentoo/asis-gpl-2007-src.tgz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a5c34e3a423656e567c79b58bc8ac6b8 diff --git a/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2008 b/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2008 index 000d1543e7de..83ea13fb8ce3 100644 --- a/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2008 +++ b/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2008 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND==dev-lang/gnat-gpl-4.1.3.2008* app-admin/eselect-gnat SLOT=4.1 SRC_URI=mirror://gentoo/asis-gpl-2008-src.tgz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=9adde28aa9de3413e8c8186c5b6a5b54 diff --git a/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2008-r1 b/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2008-r1 index 90d501b0894c..1471a79c5ca5 100644 --- a/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2008-r1 +++ b/metadata/md5-cache/dev-ada/asis-gpl-4.1.3.2008-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND==dev-lang/gnat-gpl-4.1.3.2008* app-admin/eselect-gnat SLOT=4.1-2008 SRC_URI=mirror://gentoo/asis-gpl-2008-src.tgz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=18773019f90bb6d18d89b69e2f4c1e36 diff --git a/metadata/md5-cache/dev-cpp/gtkmm-3.4.2 b/metadata/md5-cache/dev-cpp/gtkmm-3.4.2 index 02093af3eecd..3de5bf80a43d 100644 --- a/metadata/md5-cache/dev-cpp/gtkmm-3.4.2 +++ b/metadata/md5-cache/dev-cpp/gtkmm-3.4.2 @@ -4,11 +4,11 @@ DESCRIPTION=C++ interface for GTK+ EAPI=4 HOMEPAGE=http://www.gtkmm.org IUSE=aqua doc examples test wayland +X -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris LICENSE=LGPL-2.1+ RDEPEND=>=dev-cpp/glibmm-2.32.0:2 >=x11-libs/gtk+-3.4.0:3[aqua?,wayland?,X?] >=x11-libs/gdk-pixbuf-2.22.1:2 >=dev-cpp/atkmm-2.22.2 >=dev-cpp/cairomm-1.9.2.2 >=dev-cpp/pangomm-2.27.1:1.4 dev-libs/libsigc++:2 REQUIRED_USE=|| ( aqua wayland X ) SLOT=3.0 SRC_URI=mirror://gnome/sources/gtkmm/3.4/gtkmm-3.4.2.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f1d303e50d0ab45e7f2f5fb3fcadd036 +_md5_=3a9244b6d2febb696d4a94da0105c20f diff --git a/metadata/md5-cache/dev-cpp/libassa-3.5.1 b/metadata/md5-cache/dev-cpp/libassa-3.5.1 deleted file mode 100644 index fafd2f0ae354..000000000000 --- a/metadata/md5-cache/dev-cpp/libassa-3.5.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=configure install prepare -DEPEND=net-libs/libtirpc doc? ( app-doc/doxygen ) -DESCRIPTION=A networking library based on Adaptive Communication Patterns -EAPI=4 -HOMEPAGE=http://libassa.sourceforge.net/ -IUSE=doc static-libs -KEYWORDS=amd64 x86 -LICENSE=LGPL-2 -RDEPEND=net-libs/libtirpc -SLOT=0 -SRC_URI=mirror://sourceforge/libassa/libassa-3.5.1.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e86df5af55baf522fa859398b8b442f4 diff --git a/metadata/md5-cache/dev-cpp/libgnomemm-2.30.0 b/metadata/md5-cache/dev-cpp/libgnomemm-2.30.0 index 2f5e4aa6b5d1..9d7fadfa9dfc 100644 --- a/metadata/md5-cache/dev-cpp/libgnomemm-2.30.0 +++ b/metadata/md5-cache/dev-cpp/libgnomemm-2.30.0 @@ -4,10 +4,10 @@ DESCRIPTION=C++ bindings for libgnome EAPI=4 HOMEPAGE=http://www.gtkmm.org IUSE=debug -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd LICENSE=LGPL-2.1 RDEPEND=>=dev-cpp/gtkmm-2.8:2.4 >=gnome-base/libgnome-2.6 SLOT=2.6 SRC_URI=mirror://gnome/sources/libgnomemm/2.30/libgnomemm-2.30.0.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=e468e5d454693949bb75ed44b2cf04a0 +_md5_=96d7cb27c079d48934fbbf960d82bebb diff --git a/metadata/md5-cache/dev-cpp/mm-common-0.9.6 b/metadata/md5-cache/dev-cpp/mm-common-0.9.6 index 8b0ccae0d76c..f8e8fbbb2400 100644 --- a/metadata/md5-cache/dev-cpp/mm-common-0.9.6 +++ b/metadata/md5-cache/dev-cpp/mm-common-0.9.6 @@ -3,9 +3,9 @@ DEPEND=app-arch/xz-utils >=sys-apps/sed-4 DESCRIPTION=Build infrastructure and utilities for GNOME C++ bindings EAPI=4 HOMEPAGE=http://www.gtkmm.org/ -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gnome/sources/mm-common/0.9/mm-common-0.9.6.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=06dfb50edcd2c12b6dcaa8cc28b56c51 +_md5_=58b96fefbc5638833c8514c702943f59 diff --git a/metadata/md5-cache/dev-db/libiodbc-3.52.8 b/metadata/md5-cache/dev-db/libiodbc-3.52.8 index a3c75bb0982c..924f765f1262 100644 --- a/metadata/md5-cache/dev-db/libiodbc-3.52.8 +++ b/metadata/md5-cache/dev-db/libiodbc-3.52.8 @@ -10,4 +10,4 @@ RDEPEND=>=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 gtk? ( x11-libs/gtk+:2 ) SLOT=0 SRC_URI=https://github.com/openlink/iODBC/archive/v3.52.8.zip -> libiodbc-3.52.8.zip _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=981271668479817f0d74ff86bd6fecbf +_md5_=30956f2ab0b932c42873167f79d7421d diff --git a/metadata/md5-cache/dev-db/libiodbc-3.52.8-r1 b/metadata/md5-cache/dev-db/libiodbc-3.52.8-r1 new file mode 100644 index 000000000000..5bb32eb09d30 --- /dev/null +++ b/metadata/md5-cache/dev-db/libiodbc-3.52.8-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install prepare +DEPEND=>=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 gtk? ( x11-libs/gtk+:2 ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=ODBC Interface for Linux. +EAPI=5 +HOMEPAGE=http://www.iodbc.org/ +IUSE=gtk +KEYWORDS=~amd64 ~x86 +LICENSE=|| ( LGPL-2 BSD ) +RDEPEND=>=sys-libs/readline-4.1 >=sys-libs/ncurses-5.2 gtk? ( x11-libs/gtk+:2 ) +SLOT=0 +SRC_URI=https://github.com/openlink/iODBC/archive/v3.52.8.zip -> libiodbc-3.52.8.zip +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=7b1921b9da6445b73810a2a1461ba7f0 diff --git a/metadata/md5-cache/dev-db/mongodb-2.0.7-r1 b/metadata/md5-cache/dev-db/mongodb-2.0.7-r1 index 239d54380730..2438391e6dee 100644 --- a/metadata/md5-cache/dev-db/mongodb-2.0.7-r1 +++ b/metadata/md5-cache/dev-db/mongodb-2.0.7-r1 @@ -10,5 +10,5 @@ PDEPEND=mms-agent? ( dev-python/pymongo ) RDEPEND=v8? ( dev-lang/v8 ) =dev-libs/boost-1.50 dev-libs/libpcre[cxx] net-libs/libpcap app-arch/snappy SLOT=0 SRC_URI=http://downloads.mongodb.org/src/mongodb-src-r2.0.7.tar.gz mms-agent? ( http://dev.gentoo.org/~ultrabug/20120514-10gen-mms-agent.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=eb7944580ccfa38dbcdf05f6d4095303 diff --git a/metadata/md5-cache/dev-db/mongodb-2.0.8-r1 b/metadata/md5-cache/dev-db/mongodb-2.0.8-r1 index 77f86f540290..4ab6f8b73496 100644 --- a/metadata/md5-cache/dev-db/mongodb-2.0.8-r1 +++ b/metadata/md5-cache/dev-db/mongodb-2.0.8-r1 @@ -10,5 +10,5 @@ PDEPEND=mms-agent? ( dev-python/pymongo ) RDEPEND=v8? ( dev-lang/v8 ) =dev-libs/boost-1.50 dev-libs/libpcre[cxx] net-libs/libpcap app-arch/snappy SLOT=0 SRC_URI=http://downloads.mongodb.org/src/mongodb-src-r2.0.8.tar.gz mms-agent? ( http://dev.gentoo.org/~ultrabug/20120514-10gen-mms-agent.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0928d67c4c3e4eaea456df8dd0cad54d diff --git a/metadata/md5-cache/dev-db/mongodb-2.2.0-r1 b/metadata/md5-cache/dev-db/mongodb-2.2.0-r1 index c46fd832b711..b7d8566bc858 100644 --- a/metadata/md5-cache/dev-db/mongodb-2.2.0-r1 +++ b/metadata/md5-cache/dev-db/mongodb-2.2.0-r1 @@ -10,5 +10,5 @@ PDEPEND=mms-agent? ( dev-python/pymongo ) RDEPEND=v8? ( dev-lang/v8 ) =dev-libs/boost-1.50 dev-libs/libpcre[cxx] dev-util/google-perftools net-libs/libpcap app-arch/snappy SLOT=0 SRC_URI=http://downloads.mongodb.org/src/mongodb-src-r2.2.0.tar.gz mms-agent? ( http://dev.gentoo.org/~ultrabug/20120830-10gen-mms-agent.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=597757e01f23112da4da8fed0ad4cfa6 diff --git a/metadata/md5-cache/dev-db/mongodb-2.2.3-r1 b/metadata/md5-cache/dev-db/mongodb-2.2.3-r1 index 21b473960ea6..38b5b081f672 100644 --- a/metadata/md5-cache/dev-db/mongodb-2.2.3-r1 +++ b/metadata/md5-cache/dev-db/mongodb-2.2.3-r1 @@ -10,5 +10,5 @@ PDEPEND=mms-agent? ( dev-python/pymongo ) RDEPEND=v8? ( dev-lang/v8 ) >=dev-libs/boost-1.50[threads(+)] dev-libs/libpcre[cxx] dev-util/google-perftools net-libs/libpcap app-arch/snappy SLOT=0 SRC_URI=http://downloads.mongodb.org/src/mongodb-src-r2.2.3.tar.gz mms-agent? ( http://dev.gentoo.org/~ultrabug/20121128-10gen-mms-agent.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=ee448e017e8b6ca2d240a32f7bc69e0c diff --git a/metadata/md5-cache/dev-db/mongodb-2.2.4 b/metadata/md5-cache/dev-db/mongodb-2.2.4 index e1d0202030e5..091f25ff25ad 100644 --- a/metadata/md5-cache/dev-db/mongodb-2.2.4 +++ b/metadata/md5-cache/dev-db/mongodb-2.2.4 @@ -10,5 +10,5 @@ PDEPEND=mms-agent? ( dev-python/pymongo ) RDEPEND=v8? ( dev-lang/v8 ) >=dev-libs/boost-1.50[threads(+)] dev-libs/libpcre[cxx] dev-util/google-perftools net-libs/libpcap app-arch/snappy SLOT=0 SRC_URI=http://downloads.mongodb.org/src/mongodb-src-r2.2.4.tar.gz mms-agent? ( http://dev.gentoo.org/~ultrabug/20121128-10gen-mms-agent.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1409367503710f1bec711c5c1ba1eef9 diff --git a/metadata/md5-cache/dev-db/mongodb-2.4.1 b/metadata/md5-cache/dev-db/mongodb-2.4.1 index a6cbececfbd3..a3965ff2aeaf 100644 --- a/metadata/md5-cache/dev-db/mongodb-2.4.1 +++ b/metadata/md5-cache/dev-db/mongodb-2.4.1 @@ -10,5 +10,5 @@ PDEPEND=mms-agent? ( dev-python/pymongo ) RDEPEND=dev-lang/v8 >=dev-libs/boost-1.50[threads(+)] dev-libs/libpcre[cxx] dev-util/google-perftools net-libs/libpcap app-arch/snappy ssl? ( dev-libs/openssl ) SLOT=0 SRC_URI=http://downloads.mongodb.org/src/mongodb-src-r2.4.1.tar.gz mms-agent? ( http://dev.gentoo.org/~ultrabug/20130319-10gen-mms-agent.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c3220b54b3f0dfcd1724d3f23446d343 diff --git a/metadata/md5-cache/dev-db/oracle-instantclient-sqlplus-11.2.0.3-r1 b/metadata/md5-cache/dev-db/oracle-instantclient-sqlplus-11.2.0.3-r1 index 7a2e98db9124..ff9c0f4d3b10 100644 --- a/metadata/md5-cache/dev-db/oracle-instantclient-sqlplus-11.2.0.3-r1 +++ b/metadata/md5-cache/dev-db/oracle-instantclient-sqlplus-11.2.0.3-r1 @@ -9,5 +9,5 @@ RDEPEND=~dev-db/oracle-instantclient-basic-11.2.0.3 RESTRICT=fetch SLOT=0 SRC_URI=x86? ( instantclient-sqlplus-linux-11.2.0.3.0.zip ) amd64? ( instantclient-sqlplus-linux.x64-11.2.0.3.0.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=33a3ba9db3aa5ba920b8f7a0306396a9 diff --git a/metadata/md5-cache/dev-dotnet/dbus-sharp-0.7.0 b/metadata/md5-cache/dev-dotnet/dbus-sharp-0.7.0 deleted file mode 100644 index 0ca1a76c9bb6..000000000000 --- a/metadata/md5-cache/dev-dotnet/dbus-sharp-0.7.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=setup -DEPEND=dev-lang/mono sys-apps/dbus virtual/pkgconfig -DESCRIPTION=D-Bus for .NET -EAPI=4 -HOMEPAGE=https://github.com/mono/dbus-sharp -KEYWORDS=amd64 ppc x86 -LICENSE=MIT -RDEPEND=dev-lang/mono sys-apps/dbus -SLOT=0 -SRC_URI=mirror://github/mono/dbus-sharp/dbus-sharp-0.7.0.tar.gz -_eclasses_=mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=bebc6056a2079f72083c2e08e796d8fc diff --git a/metadata/md5-cache/dev-embedded/bitbake-1.17.0 b/metadata/md5-cache/dev-embedded/bitbake-1.17.0 index c81ce85a4d3e..a5a21e76a123 100644 --- a/metadata/md5-cache/dev-embedded/bitbake-1.17.0 +++ b/metadata/md5-cache/dev-embedded/bitbake-1.17.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/ply dev-python/progressbar python_targets_python2_5? ( dev-lang/python:2.5[sqlite] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=f0cc3a637008a5f6ff1c7eedd160d2ba diff --git a/metadata/md5-cache/dev-embedded/bitbake-9999 b/metadata/md5-cache/dev-embedded/bitbake-9999 index 28a57e8a78ac..b6495c210848 100644 --- a/metadata/md5-cache/dev-embedded/bitbake-9999 +++ b/metadata/md5-cache/dev-embedded/bitbake-9999 @@ -7,5 +7,5 @@ IUSE=doc python_targets_python2_5 python_targets_python2_6 python_targets_python LICENSE=GPL-2 RDEPEND=dev-python/ply dev-python/progressbar python_targets_python2_5? ( dev-lang/python:2.5[sqlite] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=2ae038f2af101942afb7230f04ddfef4 diff --git a/metadata/md5-cache/dev-embedded/msp430-binutils-2.21.1_p20120406 b/metadata/md5-cache/dev-embedded/msp430-binutils-2.21.1_p20120406 index 9411d8839572..39561e35a4c0 100644 --- a/metadata/md5-cache/dev-embedded/msp430-binutils-2.21.1_p20120406 +++ b/metadata/md5-cache/dev-embedded/msp430-binutils-2.21.1_p20120406 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-3-r2 >=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.21.1.tar.bz2 mirror://gentoo/binutils-2.21.1-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.21.1-patches-1.4.tar.bz2 http://dev.gentoo.org/~radhermit/distfiles/msp430-binutils-2.21.1_p20120406.patch.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=2f00260393912e3b027ac27695ec9711 diff --git a/metadata/md5-cache/dev-embedded/msp430-binutils-2.22_p20120911 b/metadata/md5-cache/dev-embedded/msp430-binutils-2.22_p20120911 index 2e6864935a95..313ff6c9f368 100644 --- a/metadata/md5-cache/dev-embedded/msp430-binutils-2.22_p20120911 +++ b/metadata/md5-cache/dev-embedded/msp430-binutils-2.22_p20120911 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-3-r2 >=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.22.tar.bz2 mirror://gentoo/binutils-2.22-patches-1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.22-patches-1.5.tar.bz2 http://dev.gentoo.org/~radhermit/dist/msp430-binutils-2.22_p20120911.patch.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=efda14598d660f0adeb08997f02e34ea diff --git a/metadata/md5-cache/dev-embedded/msp430-gcc-4.6.3_p20120406 b/metadata/md5-cache/dev-embedded/msp430-gcc-4.6.3_p20120406 index d24e0bcc205e..51f245430d12 100644 --- a/metadata/md5-cache/dev-embedded/msp430-gcc-4.6.3_p20120406 +++ b/metadata/md5-cache/dev-embedded/msp430-gcc-4.6.3_p20120406 @@ -11,5 +11,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.6 SRC_URI=mirror://gnu/gcc/gcc-4.6.3_p20120406/gcc-4.6.3.tar.bz2 mirror://gentoo/gcc-4.6.3-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.3-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.3-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.3-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.3-patches-1.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) http://dev.gentoo.org/~radhermit/distfiles/msp430-gcc-4.6.3_p20120406.patch.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=812f676b33d442d98af9c0ffa440d85c diff --git a/metadata/md5-cache/dev-embedded/msp430-gcc-4.7.0_p20120911 b/metadata/md5-cache/dev-embedded/msp430-gcc-4.7.0_p20120911 index a7e06165d5a7..4d4145c16efc 100644 --- a/metadata/md5-cache/dev-embedded/msp430-gcc-4.7.0_p20120911 +++ b/metadata/md5-cache/dev-embedded/msp430-gcc-4.7.0_p20120911 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.7 SRC_URI=mirror://gnu/gcc/gcc-4.7.0_p20120911/gcc-4.7.0.tar.bz2 mirror://gentoo/gcc-4.7.0-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.0-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.0-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.0-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.0-patches-1.1.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) http://dev.gentoo.org/~radhermit/dist/msp430-gcc-4.7.0_p20120911.patch.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=df1eeaed61e12996abc6fcb46df20146 diff --git a/metadata/md5-cache/dev-games/newton-2.36 b/metadata/md5-cache/dev-games/newton-2.36 index 3f0ddb6981e6..e2aa521fa28e 100644 --- a/metadata/md5-cache/dev-games/newton-2.36 +++ b/metadata/md5-cache/dev-games/newton-2.36 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=ZLIB SLOT=0 SRC_URI=http://newton-dynamics.googlecode.com/files/newton-dynamics-2.36.rar -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3baeee1bb94ae67360aa250a2a561d53 diff --git a/metadata/md5-cache/dev-games/quake4-sdk-1.4.2 b/metadata/md5-cache/dev-games/quake4-sdk-1.4.2 index 696d2ebeeadb..ffa2a556e868 100644 --- a/metadata/md5-cache/dev-games/quake4-sdk-1.4.2 +++ b/metadata/md5-cache/dev-games/quake4-sdk-1.4.2 @@ -6,5 +6,5 @@ LICENSE=QUAKE4 RESTRICT=strip SLOT=0 SRC_URI=mirror://idsoftware/quake4/source/linux/quake4-linux-1.4.2-sdk.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5fd5da19473dff7a3d9c9e209cac985b diff --git a/metadata/md5-cache/dev-haskell/haddock-2.10.0-r2 b/metadata/md5-cache/dev-haskell/haddock-2.10.0-r2 index b3b1233e15b9..d0bfd013efc2 100644 --- a/metadata/md5-cache/dev-haskell/haddock-2.10.0-r2 +++ b/metadata/md5-cache/dev-haskell/haddock-2.10.0-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-haskell/ghc-paths[profile?] =dev-haskell/xhtml-3000.2*[profile?] >=d RESTRICT=test SLOT=0 SRC_URI=mirror://hackage/packages/archive/haddock/2.10.0/haddock-2.10.0.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 ghc-package f8674c44668a01a8b05d66a7c140008b haskell-cabal a2a8de4cff4a18a175b08057c65a7c4d multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 ghc-package f8674c44668a01a8b05d66a7c140008b haskell-cabal a2a8de4cff4a18a175b08057c65a7c4d multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=613438edc1c17ebe244ee661e6db70ed diff --git a/metadata/md5-cache/dev-haskell/haddock-2.13.1-r2 b/metadata/md5-cache/dev-haskell/haddock-2.13.1-r2 index 48149d14b153..1127ee44b0fc 100644 --- a/metadata/md5-cache/dev-haskell/haddock-2.13.1-r2 +++ b/metadata/md5-cache/dev-haskell/haddock-2.13.1-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-haskell/ghc-paths:=[profile?] =dev-haskell/xhtml-3000.2*:=[profile?] RESTRICT=test SLOT=0/2.13.1 SRC_URI=mirror://hackage/packages/archive/haddock/2.13.1/haddock-2.13.1.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 ghc-package f8674c44668a01a8b05d66a7c140008b haskell-cabal a2a8de4cff4a18a175b08057c65a7c4d multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 ghc-package f8674c44668a01a8b05d66a7c140008b haskell-cabal a2a8de4cff4a18a175b08057c65a7c4d multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=156cc7e1d407f12663338b7149fa67d7 diff --git a/metadata/md5-cache/dev-haskell/haddock-2.6.1 b/metadata/md5-cache/dev-haskell/haddock-2.6.1 index 909e0e1b0382..024c8b9f3f73 100644 --- a/metadata/md5-cache/dev-haskell/haddock-2.6.1 +++ b/metadata/md5-cache/dev-haskell/haddock-2.6.1 @@ -8,5 +8,5 @@ LICENSE=BSD RDEPEND=>=dev-lang/ghc-6.12 =dev-java/java-config-2.1.9-r1 =dev-java/java-config-2* || ( app-admin/eselect-java =virtual/jdk-1.6 test? ( dev-java/ant-junit:0 dev-java/junit:4 ) >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) >=dev-java/ant-core-1.7.0 >=dev-java/javatoolkit-0.3.0-r2 >=dev-lang/python-2.4 +DESCRIPTION=Implementations of common encoders and decoders in Java. +EAPI=5 +HOMEPAGE=http://commons.apache.org/codec +IUSE=test elibc_FreeBSD doc source elibc_FreeBSD +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-macos +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) +SLOT=0 +SRC_URI=mirror://apache/commons/codec/source/commons-codec-1.7-src.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 java-ant-2 daa6d2d0a12ebb700a69d9f1d2f02c5c java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=18b37336c46ea622e4d76aacd707aba5 diff --git a/metadata/md5-cache/dev-java/commons-io-2.4 b/metadata/md5-cache/dev-java/commons-io-2.4 new file mode 100644 index 000000000000..7aa5a3a3d6d9 --- /dev/null +++ b/metadata/md5-cache/dev-java/commons-io-2.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=>=virtual/jdk-1.6 test? ( dev-java/ant-junit:0 dev-java/junit:4 ) >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) >=dev-java/ant-core-1.7.0 >=dev-java/javatoolkit-0.3.0-r2 >=dev-lang/python-2.4 +DESCRIPTION=Commons-IO contains utility classes, stream implementations, file filters, and endian classes. +EAPI=5 +HOMEPAGE=http://commons.apache.org/io/ +IUSE=test elibc_FreeBSD doc source elibc_FreeBSD +KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris +LICENSE=Apache-2.0 +RDEPEND=>=virtual/jre-1.6 >=dev-java/java-config-2.1.9-r1 source? ( app-arch/zip ) +SLOT=1 +SRC_URI=mirror://apache/commons/io/source/commons-io-2.4-src.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 java-ant-2 daa6d2d0a12ebb700a69d9f1d2f02c5c java-pkg-2 65bbb59987d777c1106ae8aa4bf36e7b java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=450c56dc2574a3c2c1698df7fd1047dc diff --git a/metadata/md5-cache/dev-java/diablo-jdk-1.6.0.07.02 b/metadata/md5-cache/dev-java/diablo-jdk-1.6.0.07.02 index 6ab802ee0f86..ad8e9140215e 100644 --- a/metadata/md5-cache/dev-java/diablo-jdk-1.6.0.07.02 +++ b/metadata/md5-cache/dev-java/diablo-jdk-1.6.0.07.02 @@ -10,5 +10,5 @@ RDEPEND=X? ( x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXau x11- RESTRICT=fetch SLOT=1.6 SRC_URI=x86-fbsd? ( diablo-caffe-freebsd7-i386-1.6.0_07-b02.tar.bz2 ) amd64-fbsd? ( diablo-caffe-freebsd7-amd64-1.6.0_07-b02.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=9cefd95120b5e44f9b1b6571cfc00094 diff --git a/metadata/md5-cache/dev-java/diablo-jre-bin-1.6.0.07.02 b/metadata/md5-cache/dev-java/diablo-jre-bin-1.6.0.07.02 index 480977a3e53f..03899fcfa201 100644 --- a/metadata/md5-cache/dev-java/diablo-jre-bin-1.6.0.07.02 +++ b/metadata/md5-cache/dev-java/diablo-jre-bin-1.6.0.07.02 @@ -9,5 +9,5 @@ RDEPEND=X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXp x11- RESTRICT=fetch SLOT=1.6 SRC_URI=diablo-latte-freebsd7-i386-1.6.0_07-b02.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=bc51923ba27bf258a24a1364a5e7314d diff --git a/metadata/md5-cache/dev-java/gcj-jdk-4.4.4-r1 b/metadata/md5-cache/dev-java/gcj-jdk-4.4.4-r1 index f48643afd27b..85fdef68e5f6 100644 --- a/metadata/md5-cache/dev-java/gcj-jdk-4.4.4-r1 +++ b/metadata/md5-cache/dev-java/gcj-jdk-4.4.4-r1 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=GPL-2 RDEPEND=~sys-devel/gcc-4.4.4[gcj] dev-java/ecj-gcj:3.5 =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6 >=media-libs/libpng-1.2 >=sys-libs/zlib-1.2.3 virtual/jpeg javascript? ( dev-java/rhino:1.6 ) nss? ( >=dev-libs/nss-3.12.5-r1 ) pulseaudio? ( >=media-sound/pulseaudio-0.9.11 ) systemtap? ( >=dev-util/systemtap-1 ) !dev-java/icedtea6 X? ( dev-libs/glib >=media-libs/freetype-2.3.5 >=x11-libs/gtk+-2.8:2 >=x11-libs/libX11-1.1.3 >=x11-libs/libXext-1.1.1 >=x11-libs/libXi-1.1.3 >=x11-libs/libXrender-0.9.4 >=x11-libs/libXtst-1.0.3 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts !ppc? ( !ppc64? ( media-fonts/lklug ) ) media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0 ) cups? ( >=net-print/cups-1.2.12 ) >=dev-java/java-config-2.1.9-r1 =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6 media-libs/lcms:2 >=media-libs/libpng-1.2 >=sys-libs/zlib-1.2.3 virtual/jpeg javascript? ( dev-java/rhino:1.6 ) nss? ( >=dev-libs/nss-3.12.5-r1 ) pulseaudio? ( >=media-sound/pulseaudio-0.9.11 ) systemtap? ( >=dev-util/systemtap-1 ) !dev-java/icedtea:0 X? ( >=net-print/cups-1.2.12 >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.26 media-libs/fontconfig >=media-libs/freetype-2.3.5 >=x11-libs/cairo-1.8.8 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-2.8:2 >=x11-libs/libX11-1.1.3 >=x11-libs/libXext-1.1.1 >=x11-libs/libXi-1.1.3 >=x11-libs/libXrender-0.9.4 >=x11-libs/libXtst-1.0.3 >=x11-libs/pango-1.24.5 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0 ) cups? ( >=net-print/cups-1.2.12 ) >=dev-java/java-config-2.1.9-r1 =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6-r1 >=media-libs/libpng-1.5 >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg nsplugin? ( >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=dev-libs/nspr-4.8 >=x11-libs/cairo-1.8.8 >=x11-libs/pango-1.24.5 ) X? ( dev-libs/glib >=media-libs/freetype-2.3.9:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXtst-1.1 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6-r1 =media-libs/libpng-1.5* >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg nsplugin? ( >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=dev-libs/nspr-4.8 >=x11-libs/cairo-1.8.8 >=x11-libs/pango-1.24.5 ) X? ( dev-libs/glib >=media-libs/freetype-2.3.9:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXtst-1.1 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6-r1 >=media-libs/libpng-1.5 >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg nsplugin? ( >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=dev-libs/nspr-4.8 >=x11-libs/cairo-1.8.8 >=x11-libs/pango-1.24.5 ) X? ( dev-libs/glib >=media-libs/freetype-2.3.9:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXtst-1.1 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6-r1 =media-libs/libpng-1.5* >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg nsplugin? ( >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=dev-libs/nspr-4.8 >=x11-libs/cairo-1.8.8 >=x11-libs/pango-1.24.5 ) X? ( dev-libs/glib >=media-libs/freetype-2.3.9:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 >=x11-libs/libXtst-1.1 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6-r1 media-libs/lcms:2 >=media-libs/libpng-1.5 >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg X? ( >=net-print/cups-1.4 >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=media-libs/fontconfig-2.6.0-r2:1.0 >=media-libs/freetype-2.3.9:2 >=x11-libs/cairo-1.8.8 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 x11-libs/libXrender >=x11-libs/libXtst-1.1 >=x11-libs/pango-1.24.5 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6-r1 media-libs/lcms:2 =media-libs/libpng-1.5* >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg X? ( >=net-print/cups-1.4 >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=media-libs/fontconfig-2.6.0-r2:1.0 >=media-libs/freetype-2.3.9:2 >=x11-libs/cairo-1.8.8 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 x11-libs/libXrender >=x11-libs/libXtst-1.1 >=x11-libs/pango-1.24.5 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6-r1 media-libs/lcms:2 >=media-libs/libpng-1.5 >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg X? ( >=net-print/cups-1.4 >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=media-libs/fontconfig-2.6.0-r2:1.0 >=media-libs/freetype-2.3.9:2 >=x11-libs/cairo-1.8.8 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 x11-libs/libXrender >=x11-libs/libXtst-1.1 >=x11-libs/pango-1.24.5 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java =media-libs/giflib-4.1.6-r1 media-libs/lcms:2 =media-libs/libpng-1.5* >=sys-devel/gcc-4.3 >=sys-libs/glibc-2.11.2 >=sys-libs/zlib-1.2.3-r1 virtual/jpeg X? ( >=net-print/cups-1.4 >=dev-libs/atk-1.30.0 >=dev-libs/glib-2.20.5:2 >=media-libs/fontconfig-2.6.0-r2:1.0 >=media-libs/freetype-2.3.9:2 >=x11-libs/cairo-1.8.8 x11-libs/gdk-pixbuf:2 >=x11-libs/gtk+-2.20.1:2 >=x11-libs/libX11-1.3 >=x11-libs/libXext-1.1 >=x11-libs/libXi-1.3 x11-libs/libXrender >=x11-libs/libXtst-1.1 >=x11-libs/pango-1.24.5 media-fonts/dejavu cjk? ( media-fonts/arphicfonts media-fonts/baekmuk-fonts media-fonts/lklug media-fonts/lohit-fonts media-fonts/sazanami ) ) alsa? ( >=media-libs/alsa-lib-1.0.20 ) cups? ( >=net-print/cups-1.4 ) =dev-java/java-config-2* || ( app-admin/eselect-java =dev-libs/glib-2.16 gtk2? ( !gtk3? ( >=x11-libs/gtk+-2.6:2 ) gtk3? ( x11-libs/gtk+:3 ) ) !gtk2? ( x11-libs/gtk+:3 ) ) >=dev-java/java-config-2.1.9-r1 =dev-java/java-config-2* || ( app-admin/eselect-java =dev-libs/glib-2.16 gtk2? ( !gtk3? ( >=x11-libs/gtk+-2.6:2 ) gtk3? ( x11-libs/gtk+:3 ) ) !gtk2? ( x11-libs/gtk+:3 ) ) >=dev-java/java-config-2.1.9-r1 =dev-java/java-config-2* || ( app-admin/eselect-java =dev-libs/glib-2.16 gtk2? ( !gtk3? ( >=x11-libs/gtk+-2.6:2 ) gtk3? ( x11-libs/gtk+:3 ) ) !gtk2? ( x11-libs/gtk+:3 ) ) >=dev-java/java-config-2.1.9-r1 =dev-java/java-config-2* || ( app-admin/eselect-java =dev-libs/glib-2.16 gtk2? ( !gtk3? ( >=x11-libs/gtk+-2.6:2 ) gtk3? ( x11-libs/gtk+:3 ) ) !gtk2? ( x11-libs/gtk+:3 ) ) >=dev-java/java-config-2.1.9-r1 =dev-java/java-config-2* || ( app-admin/eselect-java =dev-java/java-config-wrapper-0.15 !sys-apps/baselayout-java !app-admin RESTRICT=test SLOT=2 SRC_URI=mirror://gentoo/java-config-2.1.12.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9bad44da7d8c5802f65b167060b6d7e4 diff --git a/metadata/md5-cache/dev-java/java-config-2.2.0 b/metadata/md5-cache/dev-java/java-config-2.2.0 new file mode 100644 index 000000000000..17a9b49447f0 --- /dev/null +++ b/metadata/md5-cache/dev-java/java-config-2.2.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] +DESCRIPTION=Java environment configuration query tool +EAPI=5 +HOMEPAGE=http://www.gentoo.org/proj/en/java/ +IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy1_9 +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=>=dev-java/java-config-wrapper-0.15 sys-apps/baselayout-java sys-apps/portage python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] +SLOT=2 +SRC_URI=http://dev.gentoo.org/~sera/distfiles/java-config-2.2.0.tar.bz2 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=dcd0e73ebbd66d6b7920b95d902406d1 diff --git a/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.10 b/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.10 index a6507f3f4649..e9ff2a3ad50c 100644 --- a/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.10 +++ b/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.10 @@ -10,5 +10,5 @@ RDEPEND=X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXrender RESTRICT=fetch strip SLOT=1.7 SRC_URI=amd64? ( jdk-7u10-linux-x64.tar.gz examples? ( javafx_samples-2_2_4-linux.zip jdk-7u10-linux-x64-demos.tar.gz ) ) arm? ( jdk-7u10-linux-arm-sfp.tar.gz examples? ( javafx_samples-2_2_4-linux.zip jdk-7u10-linux-arm-sfp-demos.tar.gz ) ) x86? ( jdk-7u10-linux-i586.tar.gz examples? ( javafx_samples-2_2_4-linux.zip jdk-7u10-linux-i586-demos.tar.gz ) ) x64-solaris? ( jdk-7u10-solaris-i586.tar.gz jdk-7u10-solaris-x64.tar.gz examples? ( jdk-7u10-solaris-i586-demos.tar.gz jdk-7u10-solaris-x64-demos.tar.gz ) ) x86-solaris? ( jdk-7u10-solaris-i586.tar.gz examples? ( jdk-7u10-solaris-i586-demos.tar.gz ) ) sparc-solaris? ( jdk-7u10-solaris-sparc.tar.gz examples? ( jdk-7u10-solaris-sparc-demos.tar.gz ) ) sparc64-solaris? ( jdk-7u10-solaris-sparc.tar.gz jdk-7u10-solaris-sparcv9.tar.gz examples? ( jdk-7u10-solaris-sparc-demos.tar.gz jdk-7u10-solaris-sparcv9-demos.tar.gz ) ) jce? ( UnlimitedJCEPolicyJDK7.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a3d0005744225e7db302ee66cdbb0131 diff --git a/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.15 b/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.15 index 7178c68443be..239eb4d950b8 100644 --- a/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.15 +++ b/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.15 @@ -10,5 +10,5 @@ RDEPEND=X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXrender RESTRICT=fetch strip SLOT=1.7 SRC_URI=amd64? ( jdk-7u15-linux-x64.tar.gz examples? ( javafx_samples-2_2_7-linux.zip jdk-7u15-linux-x64-demos.tar.gz ) ) x86? ( jdk-7u15-linux-i586.tar.gz examples? ( javafx_samples-2_2_7-linux.zip jdk-7u15-linux-i586-demos.tar.gz ) ) x64-solaris? ( jdk-7u15-solaris-i586.tar.gz jdk-7u15-solaris-x64.tar.gz examples? ( jdk-7u15-solaris-i586-demos.tar.gz jdk-7u15-solaris-x64-demos.tar.gz ) ) x86-solaris? ( jdk-7u15-solaris-i586.tar.gz examples? ( jdk-7u15-solaris-i586-demos.tar.gz ) ) sparc-solaris? ( jdk-7u15-solaris-sparc.tar.gz examples? ( jdk-7u15-solaris-sparc-demos.tar.gz ) ) sparc64-solaris? ( jdk-7u15-solaris-sparc.tar.gz jdk-7u15-solaris-sparcv9.tar.gz examples? ( jdk-7u15-solaris-sparc-demos.tar.gz jdk-7u15-solaris-sparcv9-demos.tar.gz ) ) jce? ( UnlimitedJCEPolicyJDK7.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=dd0507dc0de6a0949814a938ff9c36d0 diff --git a/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.17 b/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.17 index 7f834cd597df..2e477b105e49 100644 --- a/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.17 +++ b/metadata/md5-cache/dev-java/oracle-jdk-bin-1.7.0.17 @@ -10,5 +10,5 @@ RDEPEND=X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXi x11-libs/libXrender RESTRICT=fetch strip SLOT=1.7 SRC_URI=amd64? ( jdk-7u17-linux-x64.tar.gz examples? ( javafx_samples-2_2_7-linux.zip jdk-7u17-linux-x64-demos.tar.gz ) ) x86? ( jdk-7u17-linux-i586.tar.gz examples? ( javafx_samples-2_2_7-linux.zip jdk-7u17-linux-i586-demos.tar.gz ) ) x64-solaris? ( jdk-7u17-solaris-i586.tar.gz jdk-7u17-solaris-x64.tar.gz examples? ( jdk-7u17-solaris-i586-demos.tar.gz jdk-7u17-solaris-x64-demos.tar.gz ) ) x86-solaris? ( jdk-7u17-solaris-i586.tar.gz examples? ( jdk-7u17-solaris-i586-demos.tar.gz ) ) sparc-solaris? ( jdk-7u17-solaris-sparc.tar.gz examples? ( jdk-7u17-solaris-sparc-demos.tar.gz ) ) sparc64-solaris? ( jdk-7u17-solaris-sparc.tar.gz jdk-7u17-solaris-sparcv9.tar.gz examples? ( jdk-7u17-solaris-sparc-demos.tar.gz jdk-7u17-solaris-sparcv9-demos.tar.gz ) ) jce? ( UnlimitedJCEPolicyJDK7.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1ddec8110e26c1151d1dddcb81f4aa6f diff --git a/metadata/md5-cache/dev-java/oracle-jre-bin-1.7.0.15 b/metadata/md5-cache/dev-java/oracle-jre-bin-1.7.0.15 index ec796987e325..cb984e97c837 100644 --- a/metadata/md5-cache/dev-java/oracle-jre-bin-1.7.0.15 +++ b/metadata/md5-cache/dev-java/oracle-jre-bin-1.7.0.15 @@ -10,5 +10,5 @@ RDEPEND=X? ( x11-libs/libXext x11-libs/libXi x11-libs/libXrender x11-libs/libXts RESTRICT=fetch strip SLOT=1.7 SRC_URI=x86? ( jre-7u15-linux-i586.tar.gz ) amd64? ( jre-7u15-linux-x64.tar.gz ) jce? ( UnlimitedJCEPolicyJDK7.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=dd6d3143c31894da2dd2a527ba83b307 diff --git a/metadata/md5-cache/dev-java/oracle-jre-bin-1.7.0.17 b/metadata/md5-cache/dev-java/oracle-jre-bin-1.7.0.17 index 0782ced836cf..33d18b4fb982 100644 --- a/metadata/md5-cache/dev-java/oracle-jre-bin-1.7.0.17 +++ b/metadata/md5-cache/dev-java/oracle-jre-bin-1.7.0.17 @@ -10,5 +10,5 @@ RDEPEND=X? ( x11-libs/libXext x11-libs/libXi x11-libs/libXrender x11-libs/libXts RESTRICT=fetch strip SLOT=1.7 SRC_URI=x86? ( jre-7u17-linux-i586.tar.gz ) amd64? ( jre-7u17-linux-x64.tar.gz ) jce? ( UnlimitedJCEPolicyJDK7.zip ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa java-vm-2 7dc6db7d110230640003e30e63a0b2bc multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d7e16f111f84820a01811fc4ee0e1234 diff --git a/metadata/md5-cache/dev-java/soylatte-jdk-bin-1.0.3 b/metadata/md5-cache/dev-java/soylatte-jdk-bin-1.0.3 index 740840bcd6f4..4300ddedfdc3 100644 --- a/metadata/md5-cache/dev-java/soylatte-jdk-bin-1.0.3 +++ b/metadata/md5-cache/dev-java/soylatte-jdk-bin-1.0.3 @@ -9,5 +9,5 @@ LICENSE=sun-jrl RDEPEND=dev-db/unixODBC =dev-java/java-config-2* || ( app-admin/eselect-java =sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/binutils-2.17 ) kernel_SunOS? ( >=sys-devel/binutils-2.17 ) >=dev-lang/perl-5.6.1 >=dev-libs/gmp-4.1 !=sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/binutils-2.17 ) kernel_SunOS? ( >=sys-devel/binutils-2.17 ) >=dev-lang/perl-5.6.1 >=dev-libs/gmp-5 !=sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/binutils-2.17 ) kernel_SunOS? ( >=sys-devel/binutils-2.17 ) >=dev-lang/perl-5.6.1 >=dev-libs/gmp-5 !=sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/binutils-2.17 ) kernel_SunOS? ( >=sys-devel/binutils-2.17 ) >=dev-lang/perl-5.6.1 >=dev-libs/gmp-5 virtual/libffi !=sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/b REQUIRED_USE=ia64? ( !gmp ) SLOT=0/7.4.2 SRC_URI=!binary? ( http://www.haskell.org/ghc/dist/7.4.2/ghc-7.4.2-src.tar.bz2 ) !ghcbootstrap? ( alpha? ( http://code.haskell.org/~slyfox/ghc-alpha/ghc-bin-7.4.2-alpha.tbz2 ) amd64? ( http://code.haskell.org/~slyfox/ghc-amd64/ghc-bin-7.4.2-amd64-stable-glibc.tbz2 ) ia64? ( http://code.haskell.org/~slyfox/ghc-ia64/ghc-bin-7.4.2-ia64.tbz2 ) ppc? ( http://code.haskell.org/~slyfox/ghc-ppc/ghc-bin-7.4.2-ppc.tbz2 ) ppc64? ( http://code.haskell.org/~slyfox/ghc-ppc64/ghc-bin-7.4.2-ppc64.tbz2 ) sparc? ( http://code.haskell.org/~slyfox/ghc-sparc/ghc-bin-7.4.2-sparc.tbz2 ) x86? ( http://code.haskell.org/~slyfox/ghc-x86/ghc-bin-7.4.2-x86-stable-glibc.tbz2 ) ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de ghc-package f8674c44668a01a8b05d66a7c140008b libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de ghc-package f8674c44668a01a8b05d66a7c140008b libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8dd7dcb8aadc1a3652d4a9ab0783d0a2 diff --git a/metadata/md5-cache/dev-lang/ghc-7.6.2 b/metadata/md5-cache/dev-lang/ghc-7.6.2 index 42afef0a61e0..831375880554 100644 --- a/metadata/md5-cache/dev-lang/ghc-7.6.2 +++ b/metadata/md5-cache/dev-lang/ghc-7.6.2 @@ -10,5 +10,5 @@ PDEPEND=!ghcbootstrap? ( =app-admin/haskell-updater-1.2* ) llvm? ( sys-devel/llv RDEPEND=!kernel_Darwin? ( >=sys-devel/gcc-2.95.3 ) kernel_linux? ( >=sys-devel/binutils-2.17 ) kernel_SunOS? ( >=sys-devel/binutils-2.17 ) >=dev-lang/perl-5.6.1 >=dev-libs/gmp-5 virtual/libffi !=dev-libs/mpfr-2.3.1 >=dev-libs/gmp-4.2.2 app-admin/eselect-gnat SLOT=4.3 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.3.2/gcc-core-4.3.2.tar.bz2 ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.3.2/gcc-ada-4.3.2.tar.bz2 ppc? ( mirror://gentoo/gnatboot-4.1-ppc.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b461113a7cba5452cd562a0e123c3e83 diff --git a/metadata/md5-cache/dev-lang/gnat-gcc-4.3.3 b/metadata/md5-cache/dev-lang/gnat-gcc-4.3.3 index 65c86364d4c8..5cc3c1c8e9ec 100644 --- a/metadata/md5-cache/dev-lang/gnat-gcc-4.3.3 +++ b/metadata/md5-cache/dev-lang/gnat-gcc-4.3.3 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND=>=dev-libs/mpfr-2.3.1 >=dev-libs/gmp-4.2.2 app-admin/eselect-gnat SLOT=4.3 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.3.3/gcc-core-4.3.3.tar.bz2 ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.3.3/gcc-ada-4.3.3.tar.bz2 ppc? ( mirror://gentoo/gnatboot-4.1-ppc.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=feeaad423a65bb02db9e628ad86c56cb diff --git a/metadata/md5-cache/dev-lang/gnat-gcc-4.3.5 b/metadata/md5-cache/dev-lang/gnat-gcc-4.3.5 index 584e9a073e67..95a01f37a127 100644 --- a/metadata/md5-cache/dev-lang/gnat-gcc-4.3.5 +++ b/metadata/md5-cache/dev-lang/gnat-gcc-4.3.5 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND=>=dev-libs/mpfr-2.3.1 >=dev-libs/gmp-4.2.2 app-admin/eselect-gnat SLOT=4.3 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.3.5/gcc-core-4.3.5.tar.bz2 ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.3.5/gcc-ada-4.3.5.tar.bz2 amd64? ( http://dev.gentoo.org/~george/src/gnatboot-4.3-amd64.tar.bz2 ) sparc? ( http://dev.gentoo.org/~george/src/gnatboot-4.3-sparc.tar.bz2 ) x86? ( http://dev.gentoo.org/~george/src/gnatboot-4.3-i686.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=76a71d17e6c6151874c70b5e8024fae5 diff --git a/metadata/md5-cache/dev-lang/gnat-gcc-4.3.6 b/metadata/md5-cache/dev-lang/gnat-gcc-4.3.6 index ea0ed6787a11..f2f59530f8be 100644 --- a/metadata/md5-cache/dev-lang/gnat-gcc-4.3.6 +++ b/metadata/md5-cache/dev-lang/gnat-gcc-4.3.6 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND=>=dev-libs/mpfr-2.3.1 >=dev-libs/gmp-4.2.2 >=sys-libs/zlib-1.1.4 >=sys-libs/ncurses-5.2-r2 app-admin/eselect-gnat SLOT=4.3 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.3.6/gcc-core-4.3.6.tar.bz2 ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.3.6/gcc-ada-4.3.6.tar.bz2 amd64? ( http://dev.gentoo.org/~george/src/gnatboot-4.3-amd64.tar.bz2 ) x86? ( http://dev.gentoo.org/~george/src/gnatboot-4.3-i686.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8056623dcf0d15ae01bc0d5e232a5a3b diff --git a/metadata/md5-cache/dev-lang/gnat-gcc-4.4.3 b/metadata/md5-cache/dev-lang/gnat-gcc-4.4.3 index 277b7092adfe..bd1675211e24 100644 --- a/metadata/md5-cache/dev-lang/gnat-gcc-4.4.3 +++ b/metadata/md5-cache/dev-lang/gnat-gcc-4.4.3 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND=>=dev-libs/mpfr-2.3.1 >=dev-libs/gmp-4.2.2 >=sys-libs/zlib-1.1.4 >=sys-libs/ncurses-5.2-r2 app-admin/eselect-gnat SLOT=4.4 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.4.3/gcc-core-4.4.3.tar.bz2 ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.4.3/gcc-ada-4.4.3.tar.bz2 amd64? ( http://dev.gentoo.org/~george/src/gnatboot-4.3-amd64.tar.bz2 ) sparc? ( http://dev.gentoo.org/~george/src/gnatboot-4.3-sparc.tar.bz2 ) x86? ( http://dev.gentoo.org/~george/src/gnatboot-4.3-i686.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=e4654072e6cd012c2779063e02be289f diff --git a/metadata/md5-cache/dev-lang/gnat-gcc-4.4.5 b/metadata/md5-cache/dev-lang/gnat-gcc-4.4.5 index 2cb73cf10c36..999a1cf943be 100644 --- a/metadata/md5-cache/dev-lang/gnat-gcc-4.4.5 +++ b/metadata/md5-cache/dev-lang/gnat-gcc-4.4.5 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND=>=dev-libs/mpfr-3.0.1 >=dev-libs/gmp-5.0 >=sys-libs/zlib-1.2 >=sys-libs/ncurses-5.7 app-admin/eselect-gnat SLOT=4.4 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.4.5/gcc-core-4.4.5.tar.bz2 ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.4.5/gcc-ada-4.4.5.tar.bz2 amd64? ( http://dev.gentoo.org/~george/src/gnatboot-4.4-amd64.tar.bz2 ) sparc? ( http://dev.gentoo.org/~george/src/gnatboot-4.4-sparc.tar.bz2 ) x86? ( http://dev.gentoo.org/~george/src/gnatboot-4.4-i686.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f4be9ae2cb9f084af14c892f57079eb4 diff --git a/metadata/md5-cache/dev-lang/gnat-gcc-4.4.7 b/metadata/md5-cache/dev-lang/gnat-gcc-4.4.7 index 720811409e4a..4339021c1859 100644 --- a/metadata/md5-cache/dev-lang/gnat-gcc-4.4.7 +++ b/metadata/md5-cache/dev-lang/gnat-gcc-4.4.7 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND=>=dev-libs/mpfr-3.0.1 >=dev-libs/gmp-5.0 >=sys-libs/zlib-1.2 >=sys-libs/ncurses-5.7 app-admin/eselect-gnat SLOT=4.4 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.4.7/gcc-core-4.4.7.tar.bz2 ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.4.7/gcc-ada-4.4.7.tar.bz2 amd64? ( http://dev.gentoo.org/~george/src/gnatboot-4.4-amd64.tar.bz2 ) sparc? ( http://dev.gentoo.org/~george/src/gnatboot-4.4-sparc.tar.bz2 ) x86? ( http://dev.gentoo.org/~george/src/gnatboot-4.4-i686.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0c9b42a27a2908451ef06bad60fa113c diff --git a/metadata/md5-cache/dev-lang/gnat-gcc-4.5.4 b/metadata/md5-cache/dev-lang/gnat-gcc-4.5.4 index 33fd35db92f7..706e25760ca2 100644 --- a/metadata/md5-cache/dev-lang/gnat-gcc-4.5.4 +++ b/metadata/md5-cache/dev-lang/gnat-gcc-4.5.4 @@ -8,5 +8,5 @@ LICENSE=GMGPL RDEPEND=>=dev-libs/mpfr-3.0.1 >=dev-libs/gmp-5.0 >=sys-libs/zlib-1.2 >=sys-libs/ncurses-5.7 app-admin/eselect-gnat SLOT=4.5 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.5.4/gcc-core-4.5.4.tar.bz2 ftp://gcc.gnu.org/pub/gcc/releases/gcc-4.5.4/gcc-ada-4.5.4.tar.bz2 amd64? ( http://dev.gentoo.org/~george/src/gnatboot-4.4-amd64.tar.bz2 ) sparc? ( http://dev.gentoo.org/~george/src/gnatboot-4.4-sparc.tar.bz2 ) x86? ( http://dev.gentoo.org/~george/src/gnatboot-4.4-i686.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6094d703b4b52b349508748f0ea8504d diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-3.4.5.2005 b/metadata/md5-cache/dev-lang/gnat-gpl-3.4.5.2005 index 4165b0ec1675..34c31a1cb4c7 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-3.4.5.2005 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-3.4.5.2005 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-admin/eselect-gnat SLOT=3.4 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-3.4.5/gcc-core-3.4.5.tar.bz2 http://www.adaic.org/standards/05rm/RM-05-Html.zip mirror://gentoo/gnat-gpl-3.4.5.1-src.tar.bz2 mirror://gentoo/gnat-gpl-gcc-3.4.diff.bz2 x86? ( mirror://gentoo/gnatboot-3.4-i386.tar.bz2 ) amd64? ( mirror://gentoo/gnatboot-3.4-amd64-r2.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=07d2be1f7a611c199a2d10e48661480d diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-3.4.6.2006-r1 b/metadata/md5-cache/dev-lang/gnat-gpl-3.4.6.2006-r1 index 570e85902f24..2b74c0650f3d 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-3.4.6.2006-r1 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-3.4.6.2006-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-admin/eselect-gnat SLOT=3.4 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-3.4.6/gcc-core-3.4.6.tar.bz2 http://www.adaic.org/standards/05rm/RM-05-Html.zip mirror://gentoo/gnat-gpl-3.4.6.1-src.tar.bz2 mirror://gentoo/gnat-gpl-gcc-3.4.6.1.diff.bz2 x86? ( mirror://gentoo/gnatboot-3.4-i386.tar.bz2 ) ppc? ( mirror://gentoo/gnatboot-3.4-ppc.tar.bz2 ) amd64? ( mirror://gentoo/gnatboot-3.4-amd64-r2.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=e57bf5568e12cf472f0206ff9055cbda diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2007 b/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2007 index 491f50c5faa1..7538055d70a0 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2007 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2007 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-admin/eselect-gnat SLOT=4.1 SRC_URI=mirror://gentoo/gcc-branch-4.1.3.tar.bz2 http://www.adaic.org/standards/05rm/RM-05-Html.zip mirror://gentoo/gnat-gpl-4.1.3.2007.tar.bz2 x86? ( mirror://gentoo/gnatboot-4.1-i386.tar.bz2 ) ppc? ( mirror://gentoo/gnatboot-4.1-ppc.tar.bz2 ) amd64? ( mirror://gentoo/gnatboot-4.1-amd64.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1701384a77c51221065f0275dad4cd91 diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008 b/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008 index 320d20c389c6..c8feb47594e9 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-admin/eselect-gnat SLOT=4.1 SRC_URI=mirror://gentoo//gnat-gpl-4.1.3.2008.tar.bz2 http://www.adaic.org/standards/05rm/RM-05-Html.zip x86? ( mirror://gentoo/gnatboot-4.1-i386.tar.bz2 ) ppc? ( mirror://gentoo/gnatboot-4.1-ppc.tar.bz2 ) amd64? ( mirror://gentoo/gnatboot-4.1-amd64.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=76627fb84877d02ab081b9ac837898e5 diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008-r1 b/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008-r1 index 6f3f24ec9433..e3599386a002 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008-r1 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008-r1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-admin/eselect-gnat SLOT=4.1-2008 SRC_URI=mirror://gentoo//gnat-gpl-4.1.3.2008.tar.bz2 http://www.adaic.org/standards/05rm/RM-05-Html.zip x86? ( mirror://gentoo/gnatboot-4.1-i386.tar.bz2 ) ppc? ( mirror://gentoo/gnatboot-4.1-ppc.tar.bz2 ) amd64? ( mirror://gentoo/gnatboot-4.1-amd64.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a57a7e08825e07e7601307d6656595c1 diff --git a/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008-r2 b/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008-r2 index b7c62166e8b2..839edeecc805 100644 --- a/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008-r2 +++ b/metadata/md5-cache/dev-lang/gnat-gpl-4.1.3.2008-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=app-admin/eselect-gnat SLOT=4.1 SRC_URI=mirror://gentoo//gnat-gpl-4.1.3.2008.tar.bz2 http://www.adaic.org/standards/05rm/RM-05-Html.zip x86? ( mirror://gentoo/gnatboot-4.1-i386.tar.bz2 ) ppc? ( mirror://gentoo/gnatboot-4.1-ppc.tar.bz2 ) amd64? ( mirror://gentoo/gnatboot-4.1-amd64.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnatbuild 5cceab5306bd58876ddd44ea5e4e5816 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=724c229abdf5e59f6042b058fd28dc18 diff --git a/metadata/md5-cache/dev-lang/luajit-1.1.6 b/metadata/md5-cache/dev-lang/luajit-1.1.6 index 400b050692b5..f2c6ef50865d 100644 --- a/metadata/md5-cache/dev-lang/luajit-1.1.6 +++ b/metadata/md5-cache/dev-lang/luajit-1.1.6 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=readline? ( sys-libs/readline ) SLOT=1 SRC_URI=http://luajit.org/download/LuaJIT-1.1.6.tar.gz -_eclasses_=pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=3f90d6d4f62a8f34b92f8557ab479619 diff --git a/metadata/md5-cache/dev-lang/luajit-2.0.0 b/metadata/md5-cache/dev-lang/luajit-2.0.0 index 8ad8c388edcc..7f9bd3a7b542 100644 --- a/metadata/md5-cache/dev-lang/luajit-2.0.0 +++ b/metadata/md5-cache/dev-lang/luajit-2.0.0 @@ -6,5 +6,5 @@ KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux LICENSE=MIT SLOT=2 SRC_URI=http://luajit.org/download/LuaJIT-2.0.0.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=548162e7eff3f955365ca30eb747b888 diff --git a/metadata/md5-cache/dev-lang/luajit-2.0.0_beta10 b/metadata/md5-cache/dev-lang/luajit-2.0.0_beta10 index 7cd71a06ca25..36594e9c2b3a 100644 --- a/metadata/md5-cache/dev-lang/luajit-2.0.0_beta10 +++ b/metadata/md5-cache/dev-lang/luajit-2.0.0_beta10 @@ -6,5 +6,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT SLOT=2 SRC_URI=http://luajit.org/download/LuaJIT-2.0.0-beta10.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1fbbcbf5688a9b983417232114ca6823 diff --git a/metadata/md5-cache/dev-lang/luajit-2.0.0_beta7 b/metadata/md5-cache/dev-lang/luajit-2.0.0_beta7 index 16946e3b5cce..df4be2bf1a64 100644 --- a/metadata/md5-cache/dev-lang/luajit-2.0.0_beta7 +++ b/metadata/md5-cache/dev-lang/luajit-2.0.0_beta7 @@ -6,5 +6,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT SLOT=2 SRC_URI=http://luajit.org/download/LuaJIT-2.0.0-beta7.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f4b823a0802e2c31274954e4ab7be6ae diff --git a/metadata/md5-cache/dev-lang/luajit-2.0.0_beta8_p1 b/metadata/md5-cache/dev-lang/luajit-2.0.0_beta8_p1 index 389ff59329e2..e5e9a5d28a55 100644 --- a/metadata/md5-cache/dev-lang/luajit-2.0.0_beta8_p1 +++ b/metadata/md5-cache/dev-lang/luajit-2.0.0_beta8_p1 @@ -6,5 +6,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=MIT SLOT=2 SRC_URI=http://luajit.org/download/LuaJIT-2.0.0-beta8.tar.gz http://luajit.org/download/beta8_hotfix1.patch -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=476ea2df40e1caa8584d82c8e9d0e2b9 diff --git a/metadata/md5-cache/dev-lang/mono-2.10.9-r1 b/metadata/md5-cache/dev-lang/mono-2.10.9-r1 index dbefa8b7a941..608eeac4fd03 100644 --- a/metadata/md5-cache/dev-lang/mono-2.10.9-r1 +++ b/metadata/md5-cache/dev-lang/mono-2.10.9-r1 @@ -10,5 +10,5 @@ RDEPEND=!dev-util/monodoc !minimal? ( =dev-dotnet/libgdiplus-2.10* ) ia64? ( sys RESTRICT=test SLOT=0 SRC_URI=http://download.mono-project.com/sources/mono/mono-2.10.9.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de go-mono 062f25a198b23a53e074c32c867cc97e linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de go-mono 062f25a198b23a53e074c32c867cc97e linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=75d4e17715cf3cbdcd1dcc77e13e96f8 diff --git a/metadata/md5-cache/dev-lang/mono-2.10.9-r2 b/metadata/md5-cache/dev-lang/mono-2.10.9-r2 index 94425e216b43..e6a88bf0a58c 100644 --- a/metadata/md5-cache/dev-lang/mono-2.10.9-r2 +++ b/metadata/md5-cache/dev-lang/mono-2.10.9-r2 @@ -10,5 +10,5 @@ RDEPEND=!dev-util/monodoc !minimal? ( =dev-dotnet/libgdiplus-2.10* ) ia64? ( sys RESTRICT=test SLOT=0 SRC_URI=http://download.mono-project.com/sources/mono/mono-2.10.9.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de go-mono 062f25a198b23a53e074c32c867cc97e linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de go-mono 062f25a198b23a53e074c32c867cc97e linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=40ffbfed8e05afb5a366f3fbffa56e82 diff --git a/metadata/md5-cache/dev-lang/mono-2.11.1 b/metadata/md5-cache/dev-lang/mono-2.11.1 index a0d1c4ba00ff..aae00821f4c1 100644 --- a/metadata/md5-cache/dev-lang/mono-2.11.1 +++ b/metadata/md5-cache/dev-lang/mono-2.11.1 @@ -10,5 +10,5 @@ RDEPEND=!dev-util/monodoc !minimal? ( >=dev-dotnet/libgdiplus-2.10 ) ia64? ( sys RESTRICT=test SLOT=0 SRC_URI=http://download.mono-project.com/sources/mono/mono-2.11.1.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de go-mono 062f25a198b23a53e074c32c867cc97e linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de go-mono 062f25a198b23a53e074c32c867cc97e linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c9f06cb25a34eb7512c3a945de864ecf diff --git a/metadata/md5-cache/dev-lang/mono-2.11.4 b/metadata/md5-cache/dev-lang/mono-2.11.4 index 2298b85547e4..a1e5516d63b9 100644 --- a/metadata/md5-cache/dev-lang/mono-2.11.4 +++ b/metadata/md5-cache/dev-lang/mono-2.11.4 @@ -10,5 +10,5 @@ RDEPEND=!dev-util/monodoc !minimal? ( >=dev-dotnet/libgdiplus-2.10 ) ia64? ( sys RESTRICT=test SLOT=0 SRC_URI=http://download.mono-project.com/sources/mono/mono-2.11.4.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de go-mono 062f25a198b23a53e074c32c867cc97e linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de go-mono 062f25a198b23a53e074c32c867cc97e linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=21b3146232b89680e5c6c44c4259a299 diff --git a/metadata/md5-cache/dev-lang/python-2.5.4-r4 b/metadata/md5-cache/dev-lang/python-2.5.4-r4 index a34645ece166..24ae4c0a331d 100644 --- a/metadata/md5-cache/dev-lang/python-2.5.4-r4 +++ b/metadata/md5-cache/dev-lang/python-2.5.4-r4 @@ -10,5 +10,5 @@ PDEPEND=app-admin/python-updater app-admin/python-updater RDEPEND=>=app-admin/eselect-python-20091230 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( berkdb? ( || ( sys-libs/db:4.5 sys-libs/db:4.4 sys-libs/db:4.3 sys-libs/db:4.2 ) ) gdbm? ( sys-libs/gdbm ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3 ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 ) xml? ( >=dev-libs/expat-2 ) ) doc? ( dev-python/python-docs:2.5 ) !build? ( app-misc/mime-types ) >=app-admin/eselect-python-20091230 SLOT=2.5 SRC_URI=http://www.python.org/ftp/python/2.5.4/Python-2.5.4.tar.bz2 mirror://gentoo/python-gentoo-patches-2.5.4-r3.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8eb7c3756c906bc9013f0fc1fb652ea8 diff --git a/metadata/md5-cache/dev-lang/python-2.5.4-r5 b/metadata/md5-cache/dev-lang/python-2.5.4-r5 index e17e30aca4f5..c507ea67b2ef 100644 --- a/metadata/md5-cache/dev-lang/python-2.5.4-r5 +++ b/metadata/md5-cache/dev-lang/python-2.5.4-r5 @@ -10,5 +10,5 @@ PDEPEND=app-admin/eselect-python app-admin/python-updater RDEPEND=>=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( berkdb? ( || ( sys-libs/db:4.5 sys-libs/db:4.4 sys-libs/db:4.3 sys-libs/db:4.2 ) ) gdbm? ( sys-libs/gdbm ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3 ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 ) xml? ( >=dev-libs/expat-2 ) ) doc? ( dev-python/python-docs:2.5 ) !build? ( app-misc/mime-types ) SLOT=2.5 SRC_URI=http://www.python.org/ftp/python/2.5.4/Python-2.5.4.tar.bz2 mirror://gentoo/python-gentoo-patches-2.5.4-r3.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1c7a6436d850dad90e04ca05ce31483d diff --git a/metadata/md5-cache/dev-lang/python-2.6.8 b/metadata/md5-cache/dev-lang/python-2.6.8 index b231f4d04dfe..0c05c74d6900 100644 --- a/metadata/md5-cache/dev-lang/python-2.6.8 +++ b/metadata/md5-cache/dev-lang/python-2.6.8 @@ -10,5 +10,5 @@ PDEPEND=app-admin/python-updater RDEPEND=app-arch/bzip2 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( berkdb? ( || ( sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 sys-libs/db:4.4 sys-libs/db:4.3 sys-libs/db:4.2 ) ) gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.3:3 ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !!=app-admin/eselect-python-20091230 SLOT=2.6 SRC_URI=http://www.python.org/ftp/python/2.6.8/Python-2.6.8.tar.bz2 mirror://gentoo/python-gentoo-patches-2.6.8-0.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9359176f7c6e004a15357ff2b31f7590 diff --git a/metadata/md5-cache/dev-lang/python-2.6.8-r1 b/metadata/md5-cache/dev-lang/python-2.6.8-r1 index 8ac20c906059..8453ee6e6b7c 100644 --- a/metadata/md5-cache/dev-lang/python-2.6.8-r1 +++ b/metadata/md5-cache/dev-lang/python-2.6.8-r1 @@ -10,5 +10,5 @@ PDEPEND=app-admin/eselect-python app-admin/python-updater RDEPEND=app-arch/bzip2 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( berkdb? ( || ( sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 sys-libs/db:4.4 sys-libs/db:4.3 sys-libs/db:4.2 ) ) gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.3:3 ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !!=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( berkdb? ( || ( sys-libs/db:4.8 sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 sys-libs/db:4.4 sys-libs/db:4.3 sys-libs/db:4.2 ) ) gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.8:3[extensions] ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !!=app-admin/eselect-python-20091230 SLOT=2.7 SRC_URI=http://www.python.org/ftp/python/2.7.3/Python-2.7.3.tar.bz2 mirror://gentoo/python-gentoo-patches-2.7.3-1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e744921e5c01361e12c8cae24a924176 diff --git a/metadata/md5-cache/dev-lang/python-2.7.3-r3 b/metadata/md5-cache/dev-lang/python-2.7.3-r3 index af4a1c1798a8..8bd2d6e4f02d 100644 --- a/metadata/md5-cache/dev-lang/python-2.7.3-r3 +++ b/metadata/md5-cache/dev-lang/python-2.7.3-r3 @@ -10,5 +10,5 @@ PDEPEND=app-admin/eselect-python app-admin/python-updater RDEPEND=app-arch/bzip2 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( berkdb? ( || ( sys-libs/db:4.8 sys-libs/db:4.7 sys-libs/db:4.6 sys-libs/db:4.5 sys-libs/db:4.4 sys-libs/db:4.3 sys-libs/db:4.2 ) ) gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.8:3[extensions] ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !!=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( berkdb? ( || ( sys-libs/db:5.3= sys-libs/db:5.2= sys-libs/db:5.1= sys-libs/db:5.0= sys-libs/db:4.8= sys-libs/db:4.7= sys-libs/db:4.6= sys-libs/db:4.5= sys-libs/db:4.4= sys-libs/db:4.3= sys-libs/db:4.2= ) ) gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.8:3[extensions] ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !!=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.3:3 ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !build? ( app-misc/mime-types ) doc? ( dev-python/python-docs:3.1 ) >=app-admin/eselect-python-20091230 SLOT=3.1 SRC_URI=http://www.python.org/ftp/python/3.1.5/Python-3.1.5.tar.xz mirror://gentoo/python-gentoo-patches-3.1.5-0.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=33fe30183adad3b4adaa72d6d9cd264f diff --git a/metadata/md5-cache/dev-lang/python-3.1.5-r1 b/metadata/md5-cache/dev-lang/python-3.1.5-r1 index d1c8016526e2..666513aeaa6a 100644 --- a/metadata/md5-cache/dev-lang/python-3.1.5-r1 +++ b/metadata/md5-cache/dev-lang/python-3.1.5-r1 @@ -10,5 +10,5 @@ PDEPEND=app-admin/eselect-python app-admin/python-updater RDEPEND=app-arch/bzip2 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.3:3 ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !build? ( app-misc/mime-types ) doc? ( dev-python/python-docs:3.1 ) SLOT=3.1 SRC_URI=http://www.python.org/ftp/python/3.1.5/Python-3.1.5.tar.xz mirror://gentoo/python-gentoo-patches-3.1.5-0.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=785c033b2ee71825923b8a3e05b33cab diff --git a/metadata/md5-cache/dev-lang/python-3.2.3 b/metadata/md5-cache/dev-lang/python-3.2.3 index 2aa297f59d70..a2fd2366e891 100644 --- a/metadata/md5-cache/dev-lang/python-3.2.3 +++ b/metadata/md5-cache/dev-lang/python-3.2.3 @@ -10,5 +10,5 @@ PDEPEND=app-admin/python-updater RDEPEND=app-arch/bzip2 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.8:3[extensions] ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !build? ( app-misc/mime-types ) doc? ( dev-python/python-docs:3.2 ) >=app-admin/eselect-python-20091230 SLOT=3.2 SRC_URI=http://www.python.org/ftp/python/3.2.3/Python-3.2.3.tar.xz mirror://gentoo/python-gentoo-patches-3.2.3-0.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fbf2b86a462de6d5be1aa6b95f52b142 diff --git a/metadata/md5-cache/dev-lang/python-3.2.3-r1 b/metadata/md5-cache/dev-lang/python-3.2.3-r1 index ccc1c7def625..474fcbe776d0 100644 --- a/metadata/md5-cache/dev-lang/python-3.2.3-r1 +++ b/metadata/md5-cache/dev-lang/python-3.2.3-r1 @@ -10,5 +10,5 @@ PDEPEND=app-admin/python-updater RDEPEND=app-arch/bzip2 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.8:3[extensions] ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !build? ( app-misc/mime-types ) doc? ( dev-python/python-docs:3.2 ) >=app-admin/eselect-python-20091230 SLOT=3.2 SRC_URI=http://www.python.org/ftp/python/3.2.3/Python-3.2.3.tar.xz mirror://gentoo/python-gentoo-patches-3.2.3-0.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e5171f6028b3eeb61520800c5c84bed9 diff --git a/metadata/md5-cache/dev-lang/python-3.2.3-r2 b/metadata/md5-cache/dev-lang/python-3.2.3-r2 index db83be5ee733..a051da080a82 100644 --- a/metadata/md5-cache/dev-lang/python-3.2.3-r2 +++ b/metadata/md5-cache/dev-lang/python-3.2.3-r2 @@ -10,5 +10,5 @@ PDEPEND=app-admin/eselect-python app-admin/python-updater RDEPEND=app-arch/bzip2 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.8:3[extensions] ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !build? ( app-misc/mime-types ) doc? ( dev-python/python-docs:3.2 ) SLOT=3.2 SRC_URI=http://www.python.org/ftp/python/3.2.3/Python-3.2.3.tar.xz mirror://gentoo/python-gentoo-patches-3.2.3-0.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0e5d8718a84b9f0921f31ac3b94c2c4f diff --git a/metadata/md5-cache/dev-lang/python-3.3.0 b/metadata/md5-cache/dev-lang/python-3.3.0 index 84da8fc87828..72000db01e78 100644 --- a/metadata/md5-cache/dev-lang/python-3.3.0 +++ b/metadata/md5-cache/dev-lang/python-3.3.0 @@ -9,5 +9,5 @@ PDEPEND=app-admin/python-updater RDEPEND=app-arch/bzip2 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.8:3[extensions] ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !!=app-admin/eselect-python-20091230 SLOT=3.3 SRC_URI=http://www.python.org/ftp/python/3.3.0/Python-3.3.0.tar.xz mirror://gentoo/python-gentoo-patches-3.3.0-1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1ac262a753ed8883563f9784e8cc9ae3 diff --git a/metadata/md5-cache/dev-lang/python-3.3.0-r1 b/metadata/md5-cache/dev-lang/python-3.3.0-r1 index 6d9901f74f36..aae0595e53d1 100644 --- a/metadata/md5-cache/dev-lang/python-3.3.0-r1 +++ b/metadata/md5-cache/dev-lang/python-3.3.0-r1 @@ -9,5 +9,5 @@ PDEPEND=app-admin/eselect-python app-admin/python-updater RDEPEND=app-arch/bzip2 >=sys-libs/zlib-1.1.3 virtual/libffi virtual/libintl !build? ( gdbm? ( sys-libs/gdbm[berkdb] ) ncurses? ( >=sys-libs/ncurses-5.2 readline? ( >=sys-libs/readline-4.1 ) ) sqlite? ( >=dev-db/sqlite-3.3.8:3[extensions] ) ssl? ( dev-libs/openssl ) tk? ( >=dev-lang/tk-8.0 dev-tcltk/blt ) xml? ( >=dev-libs/expat-2.1 ) ) !!=dev-libs/nspr-4.7.0 SLOT=0 SRC_URI=https://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=54904f9ca99e8aab5ecd14fd5c77c18a diff --git a/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r2 b/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r2 index 6bdba13ed8bb..4a33a7932cf9 100644 --- a/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r2 +++ b/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r2 @@ -9,5 +9,5 @@ LICENSE=NPL-1.1 RDEPEND=>=dev-libs/nspr-4.7.0 SLOT=0/mozjs185 SRC_URI=https://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b30ac02b4c7b27caebe27fa5af149813 diff --git a/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r3 b/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r3 index 7838bd8bce77..192f178a549b 100644 --- a/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r3 +++ b/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r3 @@ -9,5 +9,5 @@ LICENSE=NPL-1.1 RDEPEND=>=dev-libs/nspr-4.7.0 SLOT=0/mozjs185 SRC_URI=https://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=387f14153cbd6c4e48d271693e5bb7cd diff --git a/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r4 b/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r4 index 8261029c43e8..6ff8c3f9b852 100644 --- a/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r4 +++ b/metadata/md5-cache/dev-lang/spidermonkey-1.8.5-r4 @@ -9,5 +9,5 @@ LICENSE=NPL-1.1 RDEPEND=>=dev-libs/nspr-4.7.0 SLOT=0/mozjs185 SRC_URI=https://ftp.mozilla.org/pub/mozilla.org/js/js185-1.0.0.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0d4b20efc4f0582fccb5e676f51c2780 diff --git a/metadata/md5-cache/dev-lang/spidermonkey-1.8.7 b/metadata/md5-cache/dev-lang/spidermonkey-1.8.7 index ee2d53f2fbbe..884d7c2ff37a 100644 --- a/metadata/md5-cache/dev-lang/spidermonkey-1.8.7 +++ b/metadata/md5-cache/dev-lang/spidermonkey-1.8.7 @@ -9,5 +9,5 @@ LICENSE=NPL-1.1 RDEPEND=>=dev-libs/nspr-4.7.0 virtual/libffi SLOT=0 SRC_URI=http://people.mozilla.com/~dmandelin/js187-1.0.0.tar.gz http://dev.gentoo.org/~anarchy/mozilla/patchsets/spidermonkey-1.8.7-patches-0.1.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b599dbf62396e8b159ee4a0b178eb8ce diff --git a/metadata/md5-cache/dev-lang/spidermonkey-1.8.7-r2 b/metadata/md5-cache/dev-lang/spidermonkey-1.8.7-r2 index 28708238c40d..56aad4a3aeee 100644 --- a/metadata/md5-cache/dev-lang/spidermonkey-1.8.7-r2 +++ b/metadata/md5-cache/dev-lang/spidermonkey-1.8.7-r2 @@ -9,5 +9,5 @@ LICENSE=NPL-1.1 RDEPEND=>=dev-libs/nspr-4.7.0 virtual/libffi SLOT=0/mozjs187 SRC_URI=http://people.mozilla.com/~dmandelin/js187-1.0.0.tar.gz http://dev.gentoo.org/~anarchy/mozilla/patchsets/spidermonkey-1.8.7-patches-0.1.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=af21a401f7e061f49f18f55b5d68b78d diff --git a/metadata/md5-cache/dev-lang/spidermonkey-1.8.7-r3 b/metadata/md5-cache/dev-lang/spidermonkey-1.8.7-r3 index 67e69b9aa0b6..2bed2b5b693c 100644 --- a/metadata/md5-cache/dev-lang/spidermonkey-1.8.7-r3 +++ b/metadata/md5-cache/dev-lang/spidermonkey-1.8.7-r3 @@ -9,5 +9,5 @@ LICENSE=NPL-1.1 RDEPEND=>=dev-libs/nspr-4.7.0 virtual/libffi SLOT=0/mozjs187 SRC_URI=http://people.mozilla.com/~dmandelin/js187-1.0.0.tar.gz http://dev.gentoo.org/~anarchy/mozilla/patchsets/spidermonkey-1.8.7-patches-0.1.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=dda8b33f56a58c627addc263636b5d71 diff --git a/metadata/md5-cache/dev-lang/swi-prolog-6.3.13 b/metadata/md5-cache/dev-lang/swi-prolog-6.3.13 new file mode 100644 index 000000000000..ddd83004fb75 --- /dev/null +++ b/metadata/md5-cache/dev-lang/swi-prolog-6.3.13 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install preinst prepare setup test +DEPEND=sys-libs/ncurses archive? ( app-arch/libarchive ) zlib? ( sys-libs/zlib ) odbc? ( dev-db/unixODBC ) readline? ( sys-libs/readline ) gmp? ( dev-libs/gmp ) ssl? ( dev-libs/openssl ) java? ( >=virtual/jdk-1.4 ) X? ( virtual/jpeg x11-libs/libX11 x11-libs/libXft x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) X? ( x11-proto/xproto ) java? ( test? ( =dev-java/junit-3.8* ) ) java? ( >=dev-java/java-config-2.1.9-r1 ) +DESCRIPTION=free, small, and standard compliant Prolog compiler +EAPI=4 +HOMEPAGE=http://www.swi-prolog.org/ +IUSE=archive debug doc gmp hardened java minimal odbc readline ssl static-libs test zlib X elibc_FreeBSD java +KEYWORDS=~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos +LICENSE=LGPL-2.1 +RDEPEND=sys-libs/ncurses archive? ( app-arch/libarchive ) zlib? ( sys-libs/zlib ) odbc? ( dev-db/unixODBC ) readline? ( sys-libs/readline ) gmp? ( dev-libs/gmp ) ssl? ( dev-libs/openssl ) java? ( >=virtual/jdk-1.4 ) X? ( virtual/jpeg x11-libs/libX11 x11-libs/libXft x11-libs/libXpm x11-libs/libXt x11-libs/libICE x11-libs/libSM ) java? ( >=dev-java/java-config-2.1.9-r1 ) +SLOT=0 +SRC_URI=http://www.swi-prolog.org/download/devel/src/pl-6.3.13.tar.gz mirror://gentoo/swi-prolog-6.3.13-gentoo-patchset-0.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=8e701b3c5c2743b4939416039365f3c9 diff --git a/metadata/md5-cache/dev-lang/v8-3.16.14.9-r1 b/metadata/md5-cache/dev-lang/v8-3.16.14.9-r1 index 4bc1d1bed67c..0ed836e206b9 100644 --- a/metadata/md5-cache/dev-lang/v8-3.16.14.9-r1 +++ b/metadata/md5-cache/dev-lang/v8-3.16.14.9-r1 @@ -7,5 +7,5 @@ KEYWORDS=amd64 ~arm x86 ~x86-fbsd ~x64-macos ~x86-macos LICENSE=BSD SLOT=0/3.16.14.9 SRC_URI=http://commondatastorage.googleapis.com/chromium-browser-official/v8-3.16.14.9.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b73e7e22d26bc6e2d90c69d5299d4c51 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=4eba5ba9af60299f7ed55245c4230a51 diff --git a/metadata/md5-cache/dev-lang/v8-3.17.15.3 b/metadata/md5-cache/dev-lang/v8-3.17.15.3 index e1896aa45eaf..cafbc81be593 100644 --- a/metadata/md5-cache/dev-lang/v8-3.17.15.3 +++ b/metadata/md5-cache/dev-lang/v8-3.17.15.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=readline? ( sys-libs/readline:0 ) SLOT=0/3.17.15.3 SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/v8-3.17.15.3.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=37a3edc78fba0688cbd9d25fa7eaf6a8 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=d2cbd61076d8ec5eee3a5211408ea78a diff --git a/metadata/md5-cache/dev-lang/v8-3.17.9 b/metadata/md5-cache/dev-lang/v8-3.17.9 index 43829b4aa0b1..4bb53bd8aa9e 100644 --- a/metadata/md5-cache/dev-lang/v8-3.17.9 +++ b/metadata/md5-cache/dev-lang/v8-3.17.9 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=readline? ( sys-libs/readline:0 ) SLOT=0/3.17.9 SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/v8-3.17.9.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1d22b290e404d3620069faa8543692f5 diff --git a/metadata/md5-cache/dev-lang/v8-9999 b/metadata/md5-cache/dev-lang/v8-9999 index d41ed84ca2e4..1a8dca9e3f12 100644 --- a/metadata/md5-cache/dev-lang/v8-9999 +++ b/metadata/md5-cache/dev-lang/v8-9999 @@ -7,5 +7,5 @@ IUSE=readline LICENSE=BSD RDEPEND=readline? ( sys-libs/readline:0 ) SLOT=0 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=22f91ee38eeb3f68bfdbe6b08e7269c4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=305fc219bbe503b85af7b6e5a13f8d89 diff --git a/metadata/md5-cache/dev-lang/vala-0.18.1 b/metadata/md5-cache/dev-lang/vala-0.18.1 index e7ba03ce9948..ee2d41786268 100644 --- a/metadata/md5-cache/dev-lang/vala-0.18.1 +++ b/metadata/md5-cache/dev-lang/vala-0.18.1 @@ -4,10 +4,10 @@ DESCRIPTION=Vala - Compiler for the GObject type system EAPI=4 HOMEPAGE=http://live.gnome.org/Vala IUSE=test +vapigen -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux LICENSE=LGPL-2.1 RDEPEND=>=dev-libs/glib-2.18:2 >=dev-libs/vala-common-0.18.1 SLOT=0.18 SRC_URI=mirror://gnome/sources/vala/0.18/vala-0.18.1.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=d2c029922ce1f7d0b0352696ab4a4e07 +_md5_=77b9ea4ce56d6e331d8c9871681f93ea diff --git a/metadata/md5-cache/dev-libs/atk-2.6.0 b/metadata/md5-cache/dev-libs/atk-2.6.0 index 46cfae33628c..5700ad147df8 100644 --- a/metadata/md5-cache/dev-libs/atk-2.6.0 +++ b/metadata/md5-cache/dev-libs/atk-2.6.0 @@ -4,10 +4,10 @@ DESCRIPTION=GTK+ & GNOME Accessibility Toolkit EAPI=4 HOMEPAGE=http://projects.gnome.org/accessibility/ IUSE=+introspection nls -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 ~x86-winnt +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 ~x86-winnt LICENSE=LGPL-2+ RDEPEND=>=dev-libs/glib-2.31.2:2 introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) SLOT=0 SRC_URI=mirror://gnome/sources/atk/2.6/atk-2.6.0.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=5b6562b9d77dedb426be36ca23e4e937 +_md5_=45ccc6960e461e41494bb5d52912d5d4 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 77d9eb00b05c..428f0ac0a6be 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_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3de52d00aca34642b7d9bf34dbabea0f diff --git a/metadata/md5-cache/dev-libs/dee-1.0.14-r2 b/metadata/md5-cache/dev-libs/dee-1.0.14-r2 index caf44a14e0f3..461b0579569b 100644 --- a/metadata/md5-cache/dev-libs/dee-1.0.14-r2 +++ b/metadata/md5-cache/dev-libs/dee-1.0.14-r2 @@ -10,4 +10,4 @@ RDEPEND=dev-libs/glib:2 dev-libs/icu:= introspection? ( python_targets_python2_6 SLOT=0 SRC_URI=https://launchpad.net/dee/1.0/1.0.14/+download/dee-1.0.14.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca -_md5_=63208e6dd63b8c17148794404fda090f +_md5_=d1d6822da165ae90d7a2ca833793513c diff --git a/metadata/md5-cache/dev-libs/ecore-1.7.4 b/metadata/md5-cache/dev-libs/ecore-1.7.4 deleted file mode 100644 index 68f5f7cddc68..000000000000 --- a/metadata/md5-cache/dev-libs/ecore-1.7.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-libs/eina-1.7.0 ares? ( net-dns/c-ares ) glib? ( dev-libs/glib ) curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls ) !gnutls? ( ssl? ( dev-libs/openssl ) ) evas? ( >=media-libs/evas-1.7.0[directfb?,fbcon?,opengl?,X?,xcb?] opengl? ( virtual/opengl ) ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tslib? ( x11-libs/tslib ) sdl? ( media-libs/libsdl ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender x11-libs/libXtst xinerama? ( x11-libs/libXinerama x11-libs/libXrandr ) xprint? ( x11-libs/libXp ) xscreensaver? ( x11-libs/libXScrnSaver ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) doc? ( app-doc/doxygen ) -DESCRIPTION=Enlightenment's core event abstraction layer and OS abstraction layer -EAPI=2 -HOMEPAGE=http://www.enlightenment.org/ -IUSE=ares curl directfb +evas examples fbcon glib gnutls +inotify ipv6 opengl sdl ssl static-libs +threads tslib +X xcb xinerama xprint xscreensaver nls doc -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=BSD-2 -RDEPEND=>=dev-libs/eina-1.7.0 ares? ( net-dns/c-ares ) glib? ( dev-libs/glib ) curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls ) !gnutls? ( ssl? ( dev-libs/openssl ) ) evas? ( >=media-libs/evas-1.7.0[directfb?,fbcon?,opengl?,X?,xcb?] opengl? ( virtual/opengl ) ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tslib? ( x11-libs/tslib ) sdl? ( media-libs/libsdl ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender x11-libs/libXtst xinerama? ( x11-libs/libXinerama x11-libs/libXrandr ) xprint? ( x11-libs/libXp ) xscreensaver? ( x11-libs/libXScrnSaver ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) nls? ( sys-devel/gettext ) -RESTRICT=test -SLOT=0 -SRC_URI=http://download.enlightenment.org/releases/ecore-1.7.4.tar.bz2 -_eclasses_=enlightenment 59018f068e8f700839d3c75f86495011 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ec4c49c3c9b5c9e6aa1c54f390b45848 diff --git a/metadata/md5-cache/dev-libs/ecore-1.7.5 b/metadata/md5-cache/dev-libs/ecore-1.7.5 deleted file mode 100644 index 46ab68246168..000000000000 --- a/metadata/md5-cache/dev-libs/ecore-1.7.5 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install prepare test unpack -DEPEND=>=dev-libs/eina-1.7.0 ares? ( net-dns/c-ares ) glib? ( dev-libs/glib ) curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls ) !gnutls? ( ssl? ( dev-libs/openssl ) ) evas? ( >=media-libs/evas-1.7.5[directfb?,fbcon?,opengl?,X?,xcb?] opengl? ( virtual/opengl ) ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tslib? ( x11-libs/tslib ) sdl? ( media-libs/libsdl ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender x11-libs/libXtst xinerama? ( x11-libs/libXinerama x11-libs/libXrandr ) xprint? ( x11-libs/libXp ) xscreensaver? ( x11-libs/libXScrnSaver ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool doc? ( app-doc/doxygen ) -DESCRIPTION=Enlightenment's core event abstraction layer and OS abstraction layer -EAPI=2 -HOMEPAGE=http://www.enlightenment.org/ -IUSE=ares curl directfb +evas examples fbcon glib gnutls +inotify ipv6 opengl sdl ssl static-libs +threads tslib +X xcb xinerama xprint xscreensaver nls doc -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=BSD-2 -RDEPEND=>=dev-libs/eina-1.7.0 ares? ( net-dns/c-ares ) glib? ( dev-libs/glib ) curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls ) !gnutls? ( ssl? ( dev-libs/openssl ) ) evas? ( >=media-libs/evas-1.7.5[directfb?,fbcon?,opengl?,X?,xcb?] opengl? ( virtual/opengl ) ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tslib? ( x11-libs/tslib ) sdl? ( media-libs/libsdl ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender x11-libs/libXtst xinerama? ( x11-libs/libXinerama x11-libs/libXrandr ) xprint? ( x11-libs/libXp ) xscreensaver? ( x11-libs/libXScrnSaver ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) nls? ( sys-devel/gettext ) -RESTRICT=test -SLOT=0 -SRC_URI=http://download.enlightenment.org/releases/ecore-1.7.5.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 enlightenment 59018f068e8f700839d3c75f86495011 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=da3800beef04ab88c1608b57503f0b23 diff --git a/metadata/md5-cache/dev-libs/ecore-1.7.6 b/metadata/md5-cache/dev-libs/ecore-1.7.6 new file mode 100644 index 000000000000..e43d4c192910 --- /dev/null +++ b/metadata/md5-cache/dev-libs/ecore-1.7.6 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=>=dev-libs/eina-1.7.6 ares? ( net-dns/c-ares ) glib? ( dev-libs/glib ) curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls ) !gnutls? ( ssl? ( dev-libs/openssl ) ) evas? ( >=media-libs/evas-1.7.6[directfb?,fbcon?,opengl?,X?,xcb?] opengl? ( virtual/opengl ) wayland? ( >=media-libs/evas-1.7.6[directfb?,fbcon?,gles?,opengl?,wayland?,X?,xcb?] ) ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tslib? ( x11-libs/tslib ) sdl? ( media-libs/libsdl ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender x11-libs/libXtst xinerama? ( x11-libs/libXinerama x11-libs/libXrandr ) xprint? ( x11-libs/libXp ) xscreensaver? ( x11-libs/libXScrnSaver ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) doc? ( app-doc/doxygen ) +DESCRIPTION=Enlightenment's core event abstraction layer and OS abstraction layer +EAPI=2 +HOMEPAGE=http://www.enlightenment.org/ +IUSE=ares curl directfb +evas examples fbcon gles glib gnutls +inotify ipv6 opengl sdl ssl static-libs +threads tslib wayland +X xcb xinerama xprint xscreensaver nls doc +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=BSD-2 +RDEPEND=>=dev-libs/eina-1.7.6 ares? ( net-dns/c-ares ) glib? ( dev-libs/glib ) curl? ( net-misc/curl ) gnutls? ( net-libs/gnutls ) !gnutls? ( ssl? ( dev-libs/openssl ) ) evas? ( >=media-libs/evas-1.7.6[directfb?,fbcon?,opengl?,X?,xcb?] opengl? ( virtual/opengl ) wayland? ( >=media-libs/evas-1.7.6[directfb?,fbcon?,gles?,opengl?,wayland?,X?,xcb?] ) ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tslib? ( x11-libs/tslib ) sdl? ( media-libs/libsdl ) wayland? ( dev-libs/wayland ) X? ( x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXcursor x11-libs/libXdamage x11-libs/libXext x11-libs/libXfixes x11-libs/libXi x11-libs/libXrender x11-libs/libXtst xinerama? ( x11-libs/libXinerama x11-libs/libXrandr ) xprint? ( x11-libs/libXp ) xscreensaver? ( x11-libs/libXScrnSaver ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) nls? ( sys-devel/gettext ) +RESTRICT=test +SLOT=0 +SRC_URI=http://download.enlightenment.org/releases/ecore-1.7.6.tar.bz2 +_eclasses_=enlightenment 59018f068e8f700839d3c75f86495011 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=4e9d011c844390bf6f8df6a5c3107fd4 diff --git a/metadata/md5-cache/dev-libs/gdome2-0.8.1-r4 b/metadata/md5-cache/dev-libs/gdome2-0.8.1-r4 index 04133c362156..a0293408e481 100644 --- a/metadata/md5-cache/dev-libs/gdome2-0.8.1-r4 +++ b/metadata/md5-cache/dev-libs/gdome2-0.8.1-r4 @@ -10,4 +10,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://gdome2.cs.unibo.it/tarball/gdome2-0.8.1.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f70869dcb3364bba54d9ab5753d46f0c +_md5_=165c85d61671c0130037005827365b9d diff --git a/metadata/md5-cache/dev-libs/gjs-1.34.0 b/metadata/md5-cache/dev-libs/gjs-1.34.0 index 8bcf63bdc11c..cb6103e381fe 100644 --- a/metadata/md5-cache/dev-libs/gjs-1.34.0 +++ b/metadata/md5-cache/dev-libs/gjs-1.34.0 @@ -9,5 +9,5 @@ LICENSE=MIT || ( MPL-1.1 LGPL-2+ GPL-2+ ) RDEPEND=>=dev-libs/glib-2.32:2 >=dev-libs/gobject-introspection-1.33.10 dev-libs/dbus-glib sys-libs/readline x11-libs/cairo >=dev-lang/spidermonkey-1.8.5 virtual/libffi =dev-lang/python-2* SLOT=0 SRC_URI=mirror://gnome/sources/gjs/1.34/gjs-1.34.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=e37e0a0bc3a357cf9aeeda49797d2fe6 diff --git a/metadata/md5-cache/dev-libs/gjs-1.36.0 b/metadata/md5-cache/dev-libs/gjs-1.36.0 index c371b55372af..21c3abe913ea 100644 --- a/metadata/md5-cache/dev-libs/gjs-1.36.0 +++ b/metadata/md5-cache/dev-libs/gjs-1.36.0 @@ -9,5 +9,5 @@ LICENSE=MIT || ( MPL-1.1 LGPL-2+ GPL-2+ ) RDEPEND=>=dev-libs/glib-2.36.0:2 >=dev-libs/gobject-introspection-1.36.0 dev-libs/dbus-glib sys-libs/readline >=dev-lang/spidermonkey-1.8.5 virtual/libffi cairo? ( x11-libs/cairo ) SLOT=0 SRC_URI=mirror://gnome/sources/gjs/1.36/gjs-1.36.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=97513635e6bbf7c80522f7a161cd1298 diff --git a/metadata/md5-cache/dev-libs/glib-2.30.3 b/metadata/md5-cache/dev-libs/glib-2.30.3 index 33f41feab928..438fe5eda687 100644 --- a/metadata/md5-cache/dev-libs/glib-2.30.3 +++ b/metadata/md5-cache/dev-libs/glib-2.30.3 @@ -10,5 +10,5 @@ PDEPEND=x11-misc/shared-mime-info !=dev-util/gdbus-codegen-2.30.3 ) utils? ( =dev-lang/python-2* ) SLOT=2 SRC_URI=mirror://gnome/sources/glib/2.30/glib-2.30.3.tar.xz http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=dc6a93d8ea92fa991586fbe62fdf9d65 diff --git a/metadata/md5-cache/dev-libs/glib-2.32.4-r1 b/metadata/md5-cache/dev-libs/glib-2.32.4-r1 index 2a2f2f300c8f..52ce44e5cc47 100644 --- a/metadata/md5-cache/dev-libs/glib-2.32.4-r1 +++ b/metadata/md5-cache/dev-libs/glib-2.32.4-r1 @@ -10,5 +10,5 @@ PDEPEND=x11-misc/shared-mime-info !=dev-libs/elfutils-0.142 >=dev-libs/libelf-0.8.12 ) xattr? ( sys-apps/attr ) fam? ( virtual/fam ) utils? ( >=dev-util/gdbus-codegen-2.32.4 ) utils? ( =dev-lang/python-2* ) SLOT=2 SRC_URI=mirror://gnome/sources/glib/2.32/glib-2.32.4.tar.xz http://dev.gentoo.org/~tetromino/distfiles/glib/glib-2.32.4-AS_IF-patches.tar.xz http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=425bf1f40c9381d58760df69c81e36d3 diff --git a/metadata/md5-cache/dev-libs/glib-2.34.2 b/metadata/md5-cache/dev-libs/glib-2.34.2 index 6fe359551c55..0f8031a5ce5c 100644 --- a/metadata/md5-cache/dev-libs/glib-2.34.2 +++ b/metadata/md5-cache/dev-libs/glib-2.34.2 @@ -10,5 +10,5 @@ PDEPEND=x11-misc/shared-mime-info !=dev-libs/elfutils-0.142 >=dev-libs/libelf-0.8.12 ) xattr? ( sys-apps/attr ) fam? ( virtual/fam ) utils? ( >=dev-util/gdbus-codegen-2.34.2 ) utils? ( =dev-lang/python-2* ) SLOT=2 SRC_URI=mirror://gnome/sources/glib/2.34/glib-2.34.2.tar.xz http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=60a98d0d7b6e5d1a03eaa86423f6bf68 diff --git a/metadata/md5-cache/dev-libs/glib-2.34.3 b/metadata/md5-cache/dev-libs/glib-2.34.3 index e46dceec0871..7369131dfa24 100644 --- a/metadata/md5-cache/dev-libs/glib-2.34.3 +++ b/metadata/md5-cache/dev-libs/glib-2.34.3 @@ -10,5 +10,5 @@ PDEPEND=x11-misc/shared-mime-info !=dev-libs/elfutils-0.142 >=dev-libs/libelf-0.8.12 ) xattr? ( sys-apps/attr ) fam? ( virtual/fam ) utils? ( >=dev-util/gdbus-codegen-2.34.3 ) utils? ( =dev-lang/python-2* ) SLOT=2 SRC_URI=mirror://gnome/sources/glib/2.34/glib-2.34.3.tar.xz http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=547e9b197a22c44ddbc179e49a8da246 diff --git a/metadata/md5-cache/dev-libs/glib-2.36.0 b/metadata/md5-cache/dev-libs/glib-2.36.0 index 4ec5897fce3a..933719d477fa 100644 --- a/metadata/md5-cache/dev-libs/glib-2.36.0 +++ b/metadata/md5-cache/dev-libs/glib-2.36.0 @@ -10,5 +10,5 @@ PDEPEND=x11-misc/shared-mime-info !=dev-libs/elfutils-0.142 >=dev-libs/libelf-0.8.12 ) xattr? ( sys-apps/attr ) fam? ( virtual/fam ) utils? ( python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-util/gdbus-codegen-2.36.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) SLOT=2 SRC_URI=mirror://gnome/sources/glib/2.36/glib-2.36.0.tar.xz http://pkgconfig.freedesktop.org/releases/pkg-config-0.26.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=9d7ba099f8119b30848179a1152b1e27 diff --git a/metadata/md5-cache/dev-libs/gmp-5.0.4 b/metadata/md5-cache/dev-libs/gmp-5.0.4 index 8ec651660b1f..1ef2c452acea 100644 --- a/metadata/md5-cache/dev-libs/gmp-5.0.4 +++ b/metadata/md5-cache/dev-libs/gmp-5.0.4 @@ -7,5 +7,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=LGPL-3 SLOT=0 SRC_URI=mirror://gnu/gmp/gmp-5.0.4.tar.xz doc? ( http://gmplib.org/gmp-man-5.0.4.pdf ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7124c0f8931c064066d175ff2bbda779 diff --git a/metadata/md5-cache/dev-libs/gmp-5.0.5 b/metadata/md5-cache/dev-libs/gmp-5.0.5 index e369c5e4326d..621c5d8f1cef 100644 --- a/metadata/md5-cache/dev-libs/gmp-5.0.5 +++ b/metadata/md5-cache/dev-libs/gmp-5.0.5 @@ -7,5 +7,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=LGPL-3 SLOT=0 SRC_URI=mirror://gnu/gmp/gmp-5.0.5.tar.xz doc? ( http://gmplib.org/gmp-man-5.0.5.pdf ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=666548daf586b522b65020fc447c3d8d diff --git a/metadata/md5-cache/dev-libs/gmp-5.1.0 b/metadata/md5-cache/dev-libs/gmp-5.1.0 index 3d1f918e7932..fb6236cdf5b9 100644 --- a/metadata/md5-cache/dev-libs/gmp-5.1.0 +++ b/metadata/md5-cache/dev-libs/gmp-5.1.0 @@ -7,5 +7,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=LGPL-3 SLOT=0 SRC_URI=mirror://gnu/gmp/gmp-5.1.0.tar.xz ftp://ftp.gmplib.org/pub/gmp-5.1.0/gmp-5.1.0.tar.xz doc? ( http://gmplib.org/gmp-man-5.1.0.pdf ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=214cf249e56e4f80b8ba17b3020fdee5 diff --git a/metadata/md5-cache/dev-libs/gmp-5.1.1 b/metadata/md5-cache/dev-libs/gmp-5.1.1 index dfa2501fefdc..458934357f55 100644 --- a/metadata/md5-cache/dev-libs/gmp-5.1.1 +++ b/metadata/md5-cache/dev-libs/gmp-5.1.1 @@ -7,5 +7,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=LGPL-3 SLOT=0 SRC_URI=mirror://gnu/gmp/gmp-5.1.1.tar.xz ftp://ftp.gmplib.org/pub/gmp-5.1.1/gmp-5.1.1.tar.xz doc? ( http://gmplib.org/gmp-man-5.1.1.pdf ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8f8b3d3a0722e6c578bbbc4038e05b47 diff --git a/metadata/md5-cache/dev-libs/libcroco-0.6.8 b/metadata/md5-cache/dev-libs/libcroco-0.6.8 index b009e316e74d..e0b2567d145b 100644 --- a/metadata/md5-cache/dev-libs/libcroco-0.6.8 +++ b/metadata/md5-cache/dev-libs/libcroco-0.6.8 @@ -4,10 +4,10 @@ DESCRIPTION=Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit EAPI=4 HOMEPAGE=http://git.gnome.org/browse/libcroco/ IUSE=test -KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2 RDEPEND=dev-libs/glib:2 >=dev-libs/libxml2-2.4.23 SLOT=0.6 SRC_URI=mirror://gnome/sources/libcroco/0.6/libcroco-0.6.8.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=e6776a49f58ebe29f0d23f90372dda7d +_md5_=8684f76c3f3b09a2365f9aebae6a8497 diff --git a/metadata/md5-cache/dev-libs/libgee-0.6.7 b/metadata/md5-cache/dev-libs/libgee-0.6.7 index 5d3508f21ac6..5bf75b334c0c 100644 --- a/metadata/md5-cache/dev-libs/libgee-0.6.7 +++ b/metadata/md5-cache/dev-libs/libgee-0.6.7 @@ -4,10 +4,10 @@ DESCRIPTION=GObject-based interfaces and classes for commonly used data structur EAPI=5 HOMEPAGE=https://live.gnome.org/Libgee IUSE=+introspection -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-linux +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-linux LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.12:2 introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) SLOT=0 SRC_URI=mirror://gnome/sources/libgee/0.6/libgee-0.6.7.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=e6cd57cf091a46904494f79f35900d29 +_md5_=e9d5709839d17e8ba0298adcc487a8c5 diff --git a/metadata/md5-cache/dev-libs/libgee-0.8.4 b/metadata/md5-cache/dev-libs/libgee-0.8.4 index c0bd70ac4ba5..179f48883919 100644 --- a/metadata/md5-cache/dev-libs/libgee-0.8.4 +++ b/metadata/md5-cache/dev-libs/libgee-0.8.4 @@ -4,10 +4,10 @@ DESCRIPTION=GObject-based interfaces and classes for commonly used data structur EAPI=5 HOMEPAGE=https://live.gnome.org/Libgee IUSE=+introspection -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-linux +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-linux LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.12:2 introspection? ( >=dev-libs/gobject-introspection-0.9.6:= ) SLOT=0.8 SRC_URI=mirror://gnome/sources/libgee/0.8/libgee-0.8.4.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f33ce679d693849c025f8906d2ee665a +_md5_=3297b0c5ea31356f92f0498a070a5b2c diff --git a/metadata/md5-cache/dev-libs/libpipeline-1.2.2 b/metadata/md5-cache/dev-libs/libpipeline-1.2.2 index 02fc3474cace..89cbe9074d77 100644 --- a/metadata/md5-cache/dev-libs/libpipeline-1.2.2 +++ b/metadata/md5-cache/dev-libs/libpipeline-1.2.2 @@ -4,9 +4,9 @@ DESCRIPTION=a pipeline manipulation library EAPI=5 HOMEPAGE=http://libpipeline.nongnu.org/ IUSE=static-libs test -KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux LICENSE=GPL-3 SLOT=0 SRC_URI=mirror://nongnu/libpipeline/libpipeline-1.2.2.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=42ffbc6eeeb568d5d29712d31cca47a3 +_md5_=03f734c0417acf7b84db0676694edf5c diff --git a/metadata/md5-cache/dev-libs/librep-0.92.2.1 b/metadata/md5-cache/dev-libs/librep-0.92.2.1 index c061e814f1f3..dc7f44368059 100644 --- a/metadata/md5-cache/dev-libs/librep-0.92.2.1 +++ b/metadata/md5-cache/dev-libs/librep-0.92.2.1 @@ -4,10 +4,10 @@ DESCRIPTION=Shared library implementing a Lisp dialect EAPI=4 HOMEPAGE=http://librep.sourceforge.net/ IUSE=emacs readline -KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 +KEYWORDS=alpha amd64 ia64 ppc ppc64 sparc x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=>=sys-libs/gdbm-1.8.0 emacs? ( virtual/emacs ) readline? ( sys-libs/readline ) SLOT=0 SRC_URI=http://download.tuxfamily.org/librep/librep-0.92.2.1.tar.xz _eclasses_=elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7bc1daa32ba569430d7be5ee58ff7637 +_md5_=b28808780735fb0e71fd4f8c259af497 diff --git a/metadata/md5-cache/dev-libs/libsigc++-2.3.1 b/metadata/md5-cache/dev-libs/libsigc++-2.3.1 index d0500bcfaf7e..4151ec81f7e0 100644 --- a/metadata/md5-cache/dev-libs/libsigc++-2.3.1 +++ b/metadata/md5-cache/dev-libs/libsigc++-2.3.1 @@ -4,9 +4,9 @@ DESCRIPTION=Typesafe callback system for standard C++ EAPI=4 HOMEPAGE=http://libsigc.sourceforge.net/ IUSE=doc static-libs test -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1 SLOT=2 SRC_URI=mirror://gnome/sources/libsigc++/2.3/libsigc++-2.3.1.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=0f1de723755b53e598879418c31b3bd5 +_md5_=42e4604ec0a3e2360b7d310d0f9d1f1a diff --git a/metadata/md5-cache/dev-libs/libtasn1-3.3 b/metadata/md5-cache/dev-libs/libtasn1-3.3 new file mode 100644 index 000000000000..1be0a748179c --- /dev/null +++ b/metadata/md5-cache/dev-libs/libtasn1-3.3 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-lang/perl-5.6 virtual/yacc +DESCRIPTION=ASN.1 library +EAPI=5 +HOMEPAGE=http://www.gnu.org/software/libtasn1/ +IUSE=doc static-libs +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-macos ~arm-linux ~x86-linux +LICENSE=GPL-3 LGPL-2.1 +SLOT=0 +SRC_URI=mirror://gnu/libtasn1/libtasn1-3.3.tar.gz +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=7f9bed5967c208e7e2dcedbe3156902d diff --git a/metadata/md5-cache/dev-libs/libxslt-1.1.28-r1 b/metadata/md5-cache/dev-libs/libxslt-1.1.28-r1 index 36981df4fb3e..b6f103765df3 100644 --- a/metadata/md5-cache/dev-libs/libxslt-1.1.28-r1 +++ b/metadata/md5-cache/dev-libs/libxslt-1.1.28-r1 @@ -4,10 +4,10 @@ DESCRIPTION=XSLT libraries and tools EAPI=5 HOMEPAGE=http://www.xmlsoft.org/ IUSE=crypt debug python static-libs python_targets_python2_5 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 ~arm-linux ~x86-linux +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=MIT RDEPEND=>=dev-libs/libxml2-2.8.0:2 crypt? ( >=dev-libs/libgcrypt-1.1.42:= ) python? ( python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-libs/libxml2:2[python,python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) SLOT=0 SRC_URI=ftp://xmlsoft.org/libxslt/libxslt-1.1.28.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c63b347b225cf99ace81271747fab85a +_md5_=52849aa98909f64ef5b7796d78e760d3 diff --git a/metadata/md5-cache/dev-libs/oniguruma-5.9.4 b/metadata/md5-cache/dev-libs/oniguruma-5.9.4 new file mode 100644 index 000000000000..87526159b5d4 --- /dev/null +++ b/metadata/md5-cache/dev-libs/oniguruma-5.9.4 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile configure install prepare test +DESCRIPTION=a regular expression library for different character encodings +EAPI=4 +HOMEPAGE=http://www.geocities.jp/kosako3/oniguruma +IUSE=combination-explosion-check crnl-as-line-terminator static-libs +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +LICENSE=BSD-2 +SLOT=0 +SRC_URI=http://www.geocities.jp/kosako3/oniguruma/archive/onig-5.9.4.tar.gz +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=77b662ffc1a63b02c5e0e633c45adf0b diff --git a/metadata/md5-cache/dev-libs/protobuf-2.5.0 b/metadata/md5-cache/dev-libs/protobuf-2.5.0 index 12bb80138a1c..075bceaff553 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=java? ( >=virtual/jre-1.5 ) emacs? ( virtual/emacs ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] 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 cf83655b19ed98f9ea3b44f4572b51a3 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 distutils-r1 164527827998977f18bc3a1eccc88b4a elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=40878b8226ee1121c8279b83ce4bff2a diff --git a/metadata/md5-cache/dev-libs/rasqal-0.9.29 b/metadata/md5-cache/dev-libs/rasqal-0.9.29 index 68b50f9c9aab..f2126133c2fa 100644 --- a/metadata/md5-cache/dev-libs/rasqal-0.9.29 +++ b/metadata/md5-cache/dev-libs/rasqal-0.9.29 @@ -4,10 +4,10 @@ DESCRIPTION=library that handles Resource Description Framework (RDF) EAPI=4 HOMEPAGE=http://librdf.org/rasqal/ IUSE=+crypt doc gmp kernel_linux +mhash pcre static-libs test xml -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos +KEYWORDS=~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos LICENSE=Apache-2.0 GPL-2 LGPL-2.1 RDEPEND=>=media-libs/raptor-2.0.7:2 kernel_linux? ( >=sys-apps/util-linux-2.19 ) pcre? ( dev-libs/libpcre ) xml? ( dev-libs/libxml2 ) !gmp? ( dev-libs/mpfr ) gmp? ( dev-libs/gmp ) crypt? ( !mhash? ( dev-libs/libgcrypt ) mhash? ( app-crypt/mhash ) ) SLOT=0 SRC_URI=http://download.librdf.org/source/rasqal-0.9.29.tar.gz _eclasses_=libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=ae8e6e327515a7eaa9fe103f9ee417dc +_md5_=0c74909e73bc14d548c8ddfc6c55dbd2 diff --git a/metadata/md5-cache/dev-libs/redland-1.0.16 b/metadata/md5-cache/dev-libs/redland-1.0.16 index 188b14d24650..a2616241f228 100644 --- a/metadata/md5-cache/dev-libs/redland-1.0.16 +++ b/metadata/md5-cache/dev-libs/redland-1.0.16 @@ -4,10 +4,10 @@ DESCRIPTION=High-level interface for the Resource Description Framework EAPI=4 HOMEPAGE=http://librdf.org/ IUSE=berkdb iodbc mysql odbc postgres sqlite ssl static-libs +xml -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos +KEYWORDS=~alpha amd64 arm hppa ~ia64 ppc ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos LICENSE=Apache-2.0 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/libtool-2.2.6b mysql? ( virtual/mysql ) sqlite? ( =dev-db/sqlite-3* ) berkdb? ( sys-libs/db ) xml? ( dev-libs/libxml2 ) !xml? ( >=dev-libs/expat-2 ) ssl? ( dev-libs/openssl:0 ) >=media-libs/raptor-2.0.7 >=dev-libs/rasqal-0.9.28 postgres? ( dev-db/postgresql-base ) iodbc? ( dev-db/libiodbc ) odbc? ( dev-db/unixODBC ) SLOT=0 SRC_URI=http://download.librdf.org/source/redland-1.0.16.tar.gz _eclasses_=libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=c69db1f71463c04587458b3005cc5e39 +_md5_=5a5a5a66d1002fe967e4c6b523d85432 diff --git a/metadata/md5-cache/dev-libs/vala-common-0.18.1 b/metadata/md5-cache/dev-libs/vala-common-0.18.1 index a373c5aa7b4f..5c5cf6b17d49 100644 --- a/metadata/md5-cache/dev-libs/vala-common-0.18.1 +++ b/metadata/md5-cache/dev-libs/vala-common-0.18.1 @@ -3,10 +3,10 @@ DEPEND=app-arch/xz-utils DESCRIPTION=Build infrastructure for packages that use Vala EAPI=4 HOMEPAGE=http://live.gnome.org/Vala -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux ~x64-macos +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux ~x64-macos LICENSE=LGPL-2.1 RDEPEND=!=dev-lisp/gentoo-init-0.1 ) SLOT=0 SRC_URI=mirror://sourceforge/sbcl/sbcl-1.0.55-source.tar.bz2 x86? ( mirror://sourceforge/sbcl/sbcl-1.0.37-x86-linux-binary.tar.bz2 ) amd64? ( mirror://sourceforge/sbcl/sbcl-1.0.37-x86-64-linux-binary.tar.bz2 ) ppc? ( mirror://sourceforge/sbcl/sbcl-1.0.28-powerpc-linux-binary.tar.bz2 ) sparc? ( mirror://sourceforge/sbcl/sbcl-1.0.28-sparc-linux-binary.tar.bz2 ) alpha? ( mirror://sourceforge/sbcl/sbcl-1.0.28-alpha-linux-binary.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=63edd4831b530bf176b21994009af0af diff --git a/metadata/md5-cache/dev-lisp/sbcl-1.0.55-r2 b/metadata/md5-cache/dev-lisp/sbcl-1.0.55-r2 index f9f752e1e902..7f1ec4ea85fc 100644 --- a/metadata/md5-cache/dev-lisp/sbcl-1.0.55-r2 +++ b/metadata/md5-cache/dev-lisp/sbcl-1.0.55-r2 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=asdf? ( >=dev-lisp/gentoo-init-0.1 ) SLOT=0 SRC_URI=mirror://sourceforge/sbcl/sbcl-1.0.55-source.tar.bz2 x86? ( mirror://sourceforge/sbcl/sbcl-1.0.37-x86-linux-binary.tar.bz2 ) amd64? ( mirror://sourceforge/sbcl/sbcl-1.0.37-x86-64-linux-binary.tar.bz2 ) ppc? ( mirror://sourceforge/sbcl/sbcl-1.0.28-powerpc-linux-binary.tar.bz2 ) sparc? ( mirror://sourceforge/sbcl/sbcl-1.0.28-sparc-linux-binary.tar.bz2 ) alpha? ( mirror://sourceforge/sbcl/sbcl-1.0.28-alpha-linux-binary.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=45a910e99e4fb28f46a0b34fc6777f9d diff --git a/metadata/md5-cache/dev-lisp/sbcl-1.1.3 b/metadata/md5-cache/dev-lisp/sbcl-1.1.3 index c31985500488..a197c907d2c7 100644 --- a/metadata/md5-cache/dev-lisp/sbcl-1.1.3 +++ b/metadata/md5-cache/dev-lisp/sbcl-1.1.3 @@ -10,5 +10,5 @@ RDEPEND=elibc_glibc? ( >=sys-libs/glibc-2.3 || ( =sys RESTRICT=mirror SLOT=0 SRC_URI=mirror://sourceforge/sbcl/sbcl-1.1.3-source.tar.bz2 x86? ( mirror://sourceforge/sbcl/sbcl-1.0.58-x86-linux-binary.tar.bz2 ) amd64? ( mirror://sourceforge/sbcl/sbcl-1.1.3-x86-64-linux-binary.tar.bz2 ) ppc? ( mirror://sourceforge/sbcl/sbcl-1.0.28-powerpc-linux-binary.tar.bz2 ) sparc? ( mirror://sourceforge/sbcl/sbcl-1.0.28-sparc-linux-binary.tar.bz2 ) alpha? ( mirror://sourceforge/sbcl/sbcl-1.0.28-alpha-linux-binary.tar.bz2 ) mips? ( !cobalt? ( mirror://sourceforge/sbcl/sbcl-1.0.23-mips-linux-binary.tar.bz2 ) ) mips? ( cobalt? ( mirror://sourceforge/sbcl/sbcl-1.0.28-mipsel-linux-binary.tar.bz2 ) ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f646cb987a1456d1cf289f5dfdf3fd28 diff --git a/metadata/md5-cache/dev-lisp/sbcl-1.1.5 b/metadata/md5-cache/dev-lisp/sbcl-1.1.5 index 2c1aafad59a7..1b411956dde1 100644 --- a/metadata/md5-cache/dev-lisp/sbcl-1.1.5 +++ b/metadata/md5-cache/dev-lisp/sbcl-1.1.5 @@ -10,5 +10,5 @@ RDEPEND=elibc_glibc? ( >=sys-libs/glibc-2.3 || ( =sys RESTRICT=mirror SLOT=0 SRC_URI=mirror://sourceforge/sbcl/sbcl-1.1.5-source.tar.bz2 x86? ( mirror://sourceforge/sbcl/sbcl-1.0.58-x86-linux-binary.tar.bz2 ) amd64? ( mirror://sourceforge/sbcl/sbcl-1.1.5-x86-64-linux-binary.tar.bz2 ) ppc? ( mirror://sourceforge/sbcl/sbcl-1.0.28-powerpc-linux-binary.tar.bz2 ) sparc? ( mirror://sourceforge/sbcl/sbcl-1.0.28-sparc-linux-binary.tar.bz2 ) alpha? ( mirror://sourceforge/sbcl/sbcl-1.0.28-alpha-linux-binary.tar.bz2 ) mips? ( !cobalt? ( mirror://sourceforge/sbcl/sbcl-1.0.23-mips-linux-binary.tar.bz2 ) ) mips? ( cobalt? ( mirror://sourceforge/sbcl/sbcl-1.0.28-mipsel-linux-binary.tar.bz2 ) ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b7c866737abd4cfd038031741e7f3f5a diff --git a/metadata/md5-cache/dev-php/ffmpeg-php-0.6.0-r2 b/metadata/md5-cache/dev-php/ffmpeg-php-0.6.0-r2 index 908e7571e9d6..b2292d1407ec 100644 --- a/metadata/md5-cache/dev-php/ffmpeg-php-0.6.0-r2 +++ b/metadata/md5-cache/dev-php/ffmpeg-php-0.6.0-r2 @@ -4,11 +4,11 @@ DESCRIPTION=PHP extension that provides access to movie info. EAPI=5 HOMEPAGE=http://sourceforge.net/projects/ffmpeg-php/ IUSE=php_targets_php5-3 php_targets_php5-4 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=virtual/ffmpeg dev-lang/php[gd] || ( =dev-php/ffmpeg-php-0.6.0-r2[php_targets_php5-3] =dev-php/ffmpeg-php-0.6.0-r2[php_targets_php5-4] ) php_targets_php5-3? ( dev-lang/php:5.3 ) php_targets_php5-4? ( dev-lang/php:5.4 ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/ffmpeg-php/ffmpeg-php-0.6.0.tbz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1bfaf3df743f98d2814c70423c21619a +_md5_=a5193de071f9733a76771e0d590b924a diff --git a/metadata/md5-cache/dev-php/pecl-apc-3.1.13 b/metadata/md5-cache/dev-php/pecl-apc-3.1.13 index 883fc7df485f..5b49108e53a3 100644 --- a/metadata/md5-cache/dev-php/pecl-apc-3.1.13 +++ b/metadata/md5-cache/dev-php/pecl-apc-3.1.13 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=!dev-php/eaccelerator !dev-php/xcache || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-devel/m4-1.4.3 >=sys-devel/libtool-1.5.18 php_targets_php5-3? ( dev-lang/php:5.3 ) php_targets_php5-4? ( dev-lang/php:5.4 ) +DEPEND=!dev-php/eaccelerator !dev-php/xcache !dev-php/pecl-apcu !dev-php/pecl-zendopcache dev-lang/php[-opcache(-)] || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-devel/m4-1.4.3 >=sys-devel/libtool-1.5.18 php_targets_php5-5? ( dev-lang/php:5.5 ) php_targets_php5-3? ( dev-lang/php:5.3 ) php_targets_php5-4? ( dev-lang/php:5.4 ) DESCRIPTION=A free, open, and robust framework for caching and optimizing PHP code. EAPI=4 HOMEPAGE=http://pecl.php.net/APC -IUSE=mmap +lock_pthreadmutex lock_pthreadrw lock_spinlock lock_semaphore php_targets_php5-3 php_targets_php5-4 +IUSE=mmap +lock_pthreadmutex lock_pthreadrw lock_spinlock lock_semaphore php_targets_php5-5 php_targets_php5-3 php_targets_php5-4 KEYWORDS=~amd64 ~mips ~ppc ~ppc64 ~x86 LICENSE=PHP-3.01 -RDEPEND=!dev-php/eaccelerator !dev-php/xcache || ( =dev-php/pecl-apc-3.1.13[php_targets_php5-3] =dev-php/pecl-apc-3.1.13[php_targets_php5-4] ) php_targets_php5-3? ( dev-lang/php:5.3 ) php_targets_php5-4? ( dev-lang/php:5.4 ) +RDEPEND=!dev-php/eaccelerator !dev-php/xcache !dev-php/pecl-apcu !dev-php/pecl-zendopcache dev-lang/php[-opcache(-)] || ( =dev-php/pecl-apc-3.1.13[php_targets_php5-5] =dev-php/pecl-apc-3.1.13[php_targets_php5-3] =dev-php/pecl-apc-3.1.13[php_targets_php5-4] ) php_targets_php5-5? ( dev-lang/php:5.5 ) php_targets_php5-3? ( dev-lang/php:5.3 ) php_targets_php5-4? ( dev-lang/php:5.4 ) REQUIRED_USE=^^ ( lock_pthreadmutex lock_pthreadrw lock_spinlock lock_semaphore ) SLOT=0 SRC_URI=http://pecl.php.net/get/APC-3.1.13.tgz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 confutils 2ab69b52fa6ea0c0669a47fb94b354b4 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 php-ext-pecl-r2 de1308bcf4fef59a8ee8793efc7c3051 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d5556b942f80c3e4aaaeabb7a334a8d2 +_md5_=49df6e6b36849b36187b3fa8e54bea9b diff --git a/metadata/md5-cache/dev-php/pecl-apc-3.1.9-r2 b/metadata/md5-cache/dev-php/pecl-apc-3.1.9-r2 index 063006b53787..270703593e4d 100644 --- a/metadata/md5-cache/dev-php/pecl-apc-3.1.9-r2 +++ b/metadata/md5-cache/dev-php/pecl-apc-3.1.9-r2 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=!dev-php/eaccelerator !dev-php/xcache || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-devel/m4-1.4.3 >=sys-devel/libtool-1.5.18 php_targets_php5-3? ( dev-lang/php:5.3 ) +DEPEND=!dev-php/eaccelerator !dev-php/xcache !dev-php/pecl-apcu !dev-php/pecl-zendopcache dev-lang/php[-opcache(-)] || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-devel/m4-1.4.3 >=sys-devel/libtool-1.5.18 php_targets_php5-3? ( dev-lang/php:5.3 ) DESCRIPTION=A free, open, and robust framework for caching and optimizing PHP code. EAPI=4 HOMEPAGE=http://pecl.php.net/APC IUSE=mmap +lock_pthreadmutex lock_pthreadrw lock_spinlock lock_semaphore php_targets_php5-3 KEYWORDS=amd64 ppc ~ppc64 x86 LICENSE=PHP-3.01 -RDEPEND=!dev-php/eaccelerator !dev-php/xcache || ( =dev-php/pecl-apc-3.1.9-r2[php_targets_php5-3] ) php_targets_php5-3? ( dev-lang/php:5.3 ) +RDEPEND=!dev-php/eaccelerator !dev-php/xcache !dev-php/pecl-apcu !dev-php/pecl-zendopcache dev-lang/php[-opcache(-)] || ( =dev-php/pecl-apc-3.1.9-r2[php_targets_php5-3] ) php_targets_php5-3? ( dev-lang/php:5.3 ) REQUIRED_USE=^^ ( lock_pthreadmutex lock_pthreadrw lock_spinlock lock_semaphore ) SLOT=0 SRC_URI=http://pecl.php.net/get/APC-3.1.9.tgz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 confutils 2ab69b52fa6ea0c0669a47fb94b354b4 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 php-ext-pecl-r2 de1308bcf4fef59a8ee8793efc7c3051 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b83d47317fc5446c89fdf25bc700fc9e +_md5_=b84065ce72a85672510717e54c57f554 diff --git a/metadata/md5-cache/dev-python/3to2-1.0 b/metadata/md5-cache/dev-python/3to2-1.0 index bc4ffbd6b99b..13de04b0bb90 100644 --- a/metadata/md5-cache/dev-python/3to2-1.0 +++ b/metadata/md5-cache/dev-python/3to2-1.0 @@ -9,5 +9,5 @@ LICENSE=Apache-1.1 RDEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/3/3to2/3to2-1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 6ec2dd2c61c0..c06d8f60a652 100644 --- a/metadata/md5-cache/dev-python/Babel-0.9.6-r1 +++ b/metadata/md5-cache/dev-python/Babel-0.9.6-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/pytz[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://ftp.edgewall.com/pub/babel/Babel-0.9.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=55de85a20a2893bd4848ed66f7474559 diff --git a/metadata/md5-cache/dev-python/CoverageTestRunner-1.9-r1 b/metadata/md5-cache/dev-python/CoverageTestRunner-1.9-r1 index b4d87e7f66cf..90bbf19bd437 100644 --- a/metadata/md5-cache/dev-python/CoverageTestRunner-1.9-r1 +++ b/metadata/md5-cache/dev-python/CoverageTestRunner-1.9-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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/coverage python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://code.liw.fi/debian/pool/main/p/python-coverage-test-runner/python-coverage-test-runner_1.9.orig.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dab9a00ee42f58d41765218a3e5219b1 diff --git a/metadata/md5-cache/dev-python/PyGithub-1.10.0 b/metadata/md5-cache/dev-python/PyGithub-1.10.0 index 77be876693a8..8694f7b47cb6 100644 --- a/metadata/md5-cache/dev-python/PyGithub-1.10.0 +++ b/metadata/md5-cache/dev-python/PyGithub-1.10.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=https://github.com/jacquev6/PyGithub/archive/v1.10.0.tar.gz -> PyGithub-1.10.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2adbc77f2e5f30689048c1fbecb381ed diff --git a/metadata/md5-cache/dev-python/PyGithub-1.11.1 b/metadata/md5-cache/dev-python/PyGithub-1.11.1 index 3e7030cf153f..a1349b187cd0 100644 --- a/metadata/md5-cache/dev-python/PyGithub-1.11.1 +++ b/metadata/md5-cache/dev-python/PyGithub-1.11.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=https://github.com/jacquev6/PyGithub/archive/v1.11.1.tar.gz -> PyGithub-1.11.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=752fb6e590fe4a3da01d7205f8cc6bda diff --git a/metadata/md5-cache/dev-python/PyGithub-1.12.1 b/metadata/md5-cache/dev-python/PyGithub-1.12.1 index d566244ca8db..c3495d1b516a 100644 --- a/metadata/md5-cache/dev-python/PyGithub-1.12.1 +++ b/metadata/md5-cache/dev-python/PyGithub-1.12.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=https://github.com/jacquev6/PyGithub/archive/v1.12.1.tar.gz -> PyGithub-1.12.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=db9ae9f5b8a4f38099e65994b63035ad diff --git a/metadata/md5-cache/dev-python/PyGithub-1.12.2 b/metadata/md5-cache/dev-python/PyGithub-1.12.2 index 05778a993acd..ed2a5706174b 100644 --- a/metadata/md5-cache/dev-python/PyGithub-1.12.2 +++ b/metadata/md5-cache/dev-python/PyGithub-1.12.2 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=https://github.com/jacquev6/PyGithub/archive/v1.12.2.tar.gz -> PyGithub-1.12.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=53b928dccd538215cafc3caf343b40c8 diff --git a/metadata/md5-cache/dev-python/PyGithub-1.13.1 b/metadata/md5-cache/dev-python/PyGithub-1.13.1 index 9e1430241c2e..29c595320921 100644 --- a/metadata/md5-cache/dev-python/PyGithub-1.13.1 +++ b/metadata/md5-cache/dev-python/PyGithub-1.13.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=https://github.com/jacquev6/PyGithub/archive/v1.13.1.tar.gz -> PyGithub-1.13.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f113609de1c11ba69c281739482ed31a 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 e19d43058481..6ba98daa91f1 100644 --- a/metadata/md5-cache/dev-python/PyRSS2Gen-1.0.0-r1 +++ b/metadata/md5-cache/dev-python/PyRSS2Gen-1.0.0-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://www.dalkescientific.com/Python/PyRSS2Gen-1.0.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=405c4a55f8af82ec13d7370b181c9230 diff --git a/metadata/md5-cache/dev-python/RecSQL-0.7.8 b/metadata/md5-cache/dev-python/RecSQL-0.7.8 index af62af87670a..ea220e8f9e7e 100644 --- a/metadata/md5-cache/dev-python/RecSQL-0.7.8 +++ b/metadata/md5-cache/dev-python/RecSQL-0.7.8 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/numpy[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5[sqlite] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=9420575a8a0a02830ebf11bd3dbb7314 diff --git a/metadata/md5-cache/dev-python/addons-0.7 b/metadata/md5-cache/dev-python/addons-0.7 new file mode 100644 index 000000000000..61661731fabc --- /dev/null +++ b/metadata/md5-cache/dev-python/addons-0.7 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/unzip dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Dynamically extend other objects (formerly ObjectRoles) +EAPI=5 +HOMEPAGE=http://pypi.python.org/pypi/AddOns/ +IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=ZPL +RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=mirror://pypi/A/AddOns/AddOns-0.7.zip -> addons-0.7.zip +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=779404da3a673a55bbbd5f59acab242e 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 45e95c8a4a8e..ced3a26bccda 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 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=net-libs/adns-1.3 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://adns-python.googlecode.com/files/adns-python-1.2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fa4c3677e9d1a93d5ca424b86a4d960c 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 e59dbe3d6eda..ef565a9c5209 100644 --- a/metadata/md5-cache/dev-python/adodb-py-2.20-r1 +++ b/metadata/md5-cache/dev-python/adodb-py-2.20-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=postgres? ( dev-python/psycopg:0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/mysql-python-0.9.2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/adodb/adodb-220.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5a3260608b7d2911488bb13bf53fea6b diff --git a/metadata/md5-cache/dev-python/alembic-0.4.2 b/metadata/md5-cache/dev-python/alembic-0.4.2 index 17b898a08178..abcff9747bfa 100644 --- a/metadata/md5-cache/dev-python/alembic-0.4.2 +++ b/metadata/md5-cache/dev-python/alembic-0.4.2 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-python/sqlalchemy-0.7.9 dev-python/mako virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/a/alembic/alembic-0.4.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=266aa5555409e5201988d06288fcc669 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 30e9876c7e8a..82e2a52a7f9d 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 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-libs/expat-2.1.0-r2[unicode] dev-python/html5lib[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5[wide-unicode(+)] ) python_targets_python2_6? ( dev-lang/python:2.6[wide-unicode(+)] ) python_targets_python2_7? ( dev-lang/python:2.7[wide-unicode(+)] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/A/Amara/Amara-2.0.0a6.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dab88aa04e83d6a046e1cba73bd3cff8 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 921b5efb2aa5..334e0a63b230 100644 --- a/metadata/md5-cache/dev-python/amqplib-1.0.2-r1 +++ b/metadata/md5-cache/dev-python/amqplib-1.0.2-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://py-amqplib.googlecode.com/files/amqplib-1.0.2.tgz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b9fea7c0c79e99f9e6cf28817de136a5 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 2e38c6d43796..4952ab17263f 100644 --- a/metadata/md5-cache/dev-python/ansi2html-0.9.3-r1 +++ b/metadata/md5-cache/dev-python/ansi2html-0.9.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/ansi2html/ansi2html-0.9.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a89c296e9da607ef8fe9d8c4bb3cd519 diff --git a/metadata/md5-cache/dev-python/ansi2html-0.9.4 b/metadata/md5-cache/dev-python/ansi2html-0.9.4 index 62787812a540..f664cef46e27 100644 --- a/metadata/md5-cache/dev-python/ansi2html-0.9.4 +++ b/metadata/md5-cache/dev-python/ansi2html-0.9.4 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/six[python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/ansi2html/ansi2html-0.9.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0a49b5fc41e382b971ba45d5cf43291a diff --git a/metadata/md5-cache/dev-python/anyjson-0.2.4 b/metadata/md5-cache/dev-python/anyjson-0.2.4 index a85a1b059245..e3abcc757ec5 100644 --- a/metadata/md5-cache/dev-python/anyjson-0.2.4 +++ b/metadata/md5-cache/dev-python/anyjson-0.2.4 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-python/simplejson[python_targets_python2_5] ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/anyjson/anyjson-0.2.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=599e75dda1ee05746c1bf59e42917e58 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 1f95af33a0e0..324a5749bb43 100644 --- a/metadata/md5-cache/dev-python/anyjson-0.3.3-r1 +++ b/metadata/md5-cache/dev-python/anyjson-0.3.3-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-python/simplejson[python_targets_python2_5] ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/anyjson/anyjson-0.3.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f7109ab58c8d3d3932006c225114d35c diff --git a/metadata/md5-cache/dev-python/apipkg-1.2-r1 b/metadata/md5-cache/dev-python/apipkg-1.2-r1 index 65e921283821..eaa86f606bc7 100644 --- a/metadata/md5-cache/dev-python/apipkg-1.2-r1 +++ b/metadata/md5-cache/dev-python/apipkg-1.2-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/apipkg/apipkg-1.2.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b46f3d7813678c63654494f79ea34e50 diff --git a/metadata/md5-cache/dev-python/aplpy-0.9.8-r1 b/metadata/md5-cache/dev-python/aplpy-0.9.8-r1 index da2230b85678..7e2929c7f532 100644 --- a/metadata/md5-cache/dev-python/aplpy-0.9.8-r1 +++ b/metadata/md5-cache/dev-python/aplpy-0.9.8-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/numpy dev-python/matplotlib dev-python/pyfits dev-python/pywcs python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://github/aplpy/aplpy/APLpy-0.9.8.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc0aea2bd618b819111d5d73b283603a 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 7be2e945525d..89778c63b566 100644 --- a/metadata/md5-cache/dev-python/appdirs-1.2.0-r1 +++ b/metadata/md5-cache/dev-python/appdirs-1.2.0-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/a/appdirs/appdirs-1.2.0.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=157e6c4e668995f63d455dcc76752037 diff --git a/metadata/md5-cache/dev-python/apse-0.2-r2 b/metadata/md5-cache/dev-python/apse-0.2-r2 index 1bcd78a256a9..656acb824b1c 100644 --- a/metadata/md5-cache/dev-python/apse-0.2-r2 +++ b/metadata/md5-cache/dev-python/apse-0.2-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=696bcedde48fb0400a6455a45ad5f3a6 diff --git a/metadata/md5-cache/dev-python/apsw-3.7.15.1_p1 b/metadata/md5-cache/dev-python/apsw-3.7.15.1_p1 index 4366d6695218..16b0a36c7eb5 100644 --- a/metadata/md5-cache/dev-python/apsw-3.7.15.1_p1 +++ b/metadata/md5-cache/dev-python/apsw-3.7.15.1_p1 @@ -9,5 +9,5 @@ LICENSE=ZLIB RDEPEND=>=dev-db/sqlite-3.7.15.1[extensions] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://apsw.googlecode.com/files/apsw-3.7.15.1-r1.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b123242f0e4e6ce842ba05f3d2ab652f diff --git a/metadata/md5-cache/dev-python/apsw-3.7.15.2_p1 b/metadata/md5-cache/dev-python/apsw-3.7.15.2_p1 index 5893f29a69b0..393a1a53e026 100644 --- a/metadata/md5-cache/dev-python/apsw-3.7.15.2_p1 +++ b/metadata/md5-cache/dev-python/apsw-3.7.15.2_p1 @@ -9,5 +9,5 @@ LICENSE=ZLIB RDEPEND=>=dev-db/sqlite-3.7.15.2[extensions] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://apsw.googlecode.com/files/apsw-3.7.15.2-r1.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e04fcf049638b1983944e5812c2b9233 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 b15c9d973d01..562c95ab1796 100644 --- a/metadata/md5-cache/dev-python/argh-0.23.0-r1 +++ b/metadata/md5-cache/dev-python/argh-0.23.0-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/argh/argh-0.23.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f4481163e404c20a1d2e42de80ddc013 diff --git a/metadata/md5-cache/dev-python/argh-0.23.1 b/metadata/md5-cache/dev-python/argh-0.23.1 index f96719cc9de8..5d8b78a9bc0e 100644 --- a/metadata/md5-cache/dev-python/argh-0.23.1 +++ b/metadata/md5-cache/dev-python/argh-0.23.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=virtual/python-argparse[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/argh/argh-0.23.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1d4b36d46af24dcca145e28c5145abdd 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 b3a4cdf63eae..43ca25c2c1e7 100644 --- a/metadata/md5-cache/dev-python/argparse-1.2.1-r1 +++ b/metadata/md5-cache/dev-python/argparse-1.2.1-r1 @@ -9,5 +9,5 @@ LICENSE=PSF-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python3_1(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python3_1(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=http://argparse.googlecode.com/files/argparse-1.2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 6bbcd89527de..d4e22d4e9aca 100644 --- a/metadata/md5-cache/dev-python/argparse-1.2.1-r2 +++ b/metadata/md5-cache/dev-python/argparse-1.2.1-r2 @@ -9,5 +9,5 @@ LICENSE=PSF-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python3_1? ( dev-lang/python:3.1 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python3_1(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python3_1(-)] SLOT=0 SRC_URI=http://argparse.googlecode.com/files/argparse-1.2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=51a70d499c91b445b2582dc075977109 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 32fb4bd21d96..fd9265580ef5 100644 --- a/metadata/md5-cache/dev-python/arrayterator-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/arrayterator-1.0.1-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-python/numpy-1.0_rc1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/a/arrayterator/arrayterator-1.0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6fe634d7c5fa6eb24f5fab9a199957cb 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 fbefda7ef5bb..a21dca77d363 100644 --- a/metadata/md5-cache/dev-python/asciitable-0.8.0-r1 +++ b/metadata/md5-cache/dev-python/asciitable-0.8.0-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/numpy[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/a/asciitable/asciitable-0.8.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b17a1ff690a2f37fa2650a8581f2241d 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 96663c3648ec..3aa6a7ac5495 100644 --- a/metadata/md5-cache/dev-python/assets-0.1.1-r1 +++ b/metadata/md5-cache/dev-python/assets-0.1.1-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=https://launchpad.net/web-assets/trunk/0.1.1/+download/assets-0.1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38d7127bd18e538c98f7c2e404019840 diff --git a/metadata/md5-cache/dev-python/astng-0.24.1-r1 b/metadata/md5-cache/dev-python/astng-0.24.1-r1 index 27d0d789b65b..5de5ec92d7a8 100644 --- a/metadata/md5-cache/dev-python/astng-0.24.1-r1 +++ b/metadata/md5-cache/dev-python/astng-0.24.1-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-python/logilab-common-0.53.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/astng/logilab-astng-0.24.1.tar.gz mirror://pypi/l/logilab-astng/logilab-astng-0.24.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=897de730e9d49b45ff8ecebe76ad8db8 diff --git a/metadata/md5-cache/dev-python/astng-0.24.2 b/metadata/md5-cache/dev-python/astng-0.24.2 index ad78eb13ce4d..9c0b477be41f 100644 --- a/metadata/md5-cache/dev-python/astng-0.24.2 +++ b/metadata/md5-cache/dev-python/astng-0.24.2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-python/logilab-common-0.53.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/astng/logilab-astng-0.24.2.tar.gz mirror://pypi/l/logilab-astng/logilab-astng-0.24.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7005239a21e65a867a5a2f0023e2370d diff --git a/metadata/md5-cache/dev-python/authres-0.501 b/metadata/md5-cache/dev-python/authres-0.501 index 60e0fe3c8c3a..c22524fb2efe 100644 --- a/metadata/md5-cache/dev-python/authres-0.501 +++ b/metadata/md5-cache/dev-python/authres-0.501 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/authres/authres-0.501.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1da3bd86b6433a255c84e1ffaba0d8b7 diff --git a/metadata/md5-cache/dev-python/autopep8-0.8.6-r1 b/metadata/md5-cache/dev-python/autopep8-0.8.6-r1 index 7ca13ec9e989..3c214f59df21 100644 --- a/metadata/md5-cache/dev-python/autopep8-0.8.6-r1 +++ b/metadata/md5-cache/dev-python/autopep8-0.8.6-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-python/pep8-1.3.2 dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=https://github.com/hhatto/autopep8/tarball/ver0.8.6 -> autopep8-0.8.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=ab2843f7b6e367239689032c4d740cca diff --git a/metadata/md5-cache/dev-python/autopep8-0.8.7 b/metadata/md5-cache/dev-python/autopep8-0.8.7 index 6676e0287452..cdf2a06b3b70 100644 --- a/metadata/md5-cache/dev-python/autopep8-0.8.7 +++ b/metadata/md5-cache/dev-python/autopep8-0.8.7 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-python/pep8-1.3.2 dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=https://github.com/hhatto/autopep8/tarball/ver0.8.7 -> autopep8-0.8.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=c2d2b6c2e02e04c638638a2120cd3003 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 c4e5699cbef8..ce88ce5fa26a 100644 --- a/metadata/md5-cache/dev-python/backports-lzma-0.0.1 +++ b/metadata/md5-cache/dev-python/backports-lzma-0.0.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-arch/xz-utils python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/b/backports.lzma/backports.lzma-0.0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=34fdc13fb5aa7469003c5287c4309c1b 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 8f7b473a63d7..22b7ff1cd9e9 100644 --- a/metadata/md5-cache/dev-python/beaker-1.6.4-r1 +++ b/metadata/md5-cache/dev-python/beaker-1.6.4-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/B/Beaker/Beaker-1.6.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c3400cb6994245413a2a9b8a64d47219 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 7ff1e1ae72b3..8776ab650752 100644 --- a/metadata/md5-cache/dev-python/beanstalkc-0.3.0-r1 +++ b/metadata/md5-cache/dev-python/beanstalkc-0.3.0-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/pyyaml[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/b/beanstalkc/beanstalkc-0.3.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9f983759c77bc5747aad71ed1d5c6787 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 377107f95846..b49b31633b70 100644 --- a/metadata/md5-cache/dev-python/beautifulsoup-3.2.1-r1 +++ b/metadata/md5-cache/dev-python/beautifulsoup-3.2.1-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!dev-python/beautifulsoup:0 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8093b87151bd32b3b3a69fcf215dec67 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 975fd11696fe..3c68bf3dc5e7 100644 --- a/metadata/md5-cache/dev-python/beautifulsoup-4.1.3-r1 +++ b/metadata/md5-cache/dev-python/beautifulsoup-4.1.3-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=4 SRC_URI=mirror://pypi/b/beautifulsoup4/beautifulsoup4-4.1.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a0b6087744672175ee9595f681211d56 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 3c5c42adc121..6bcd86b1c978 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 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.20.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c182c1b1eab4fd4438917cc2c1fa1e6b 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 19772b9fa999..fbd8f2383951 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.21 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.21 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.21.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e4a3739bef4100e521edafdbfee6ddb3 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 84236f86fca0..108e70852042 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.22 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.22 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.22.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=90e78b781d2a26a5721ddc93bc5c4ffc 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 df69cd6e6334..68c2336f4a69 100644 --- a/metadata/md5-cache/dev-python/billiard-2.7.3.23 +++ b/metadata/md5-cache/dev-python/billiard-2.7.3.23 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/billiard/billiard-2.7.3.23.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc1823978a7f613b29a0761a1f8e1098 diff --git a/metadata/md5-cache/dev-python/bitstring-3.1.1 b/metadata/md5-cache/dev-python/bitstring-3.1.1 index 24d4d0fca215..5c9066d226a4 100644 --- a/metadata/md5-cache/dev-python/bitstring-3.1.1 +++ b/metadata/md5-cache/dev-python/bitstring-3.1.1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=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 ) 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(-)] SLOT=0 SRC_URI=http://python-bitstring.googlecode.com/files/bitstring-3.1.1.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4ad0755697dcb0b5ce7d7f3a6fd8a987 diff --git a/metadata/md5-cache/dev-python/blinker-1.2-r1 b/metadata/md5-cache/dev-python/blinker-1.2-r1 index 696dbd29bef0..6a80c1b0eebb 100644 --- a/metadata/md5-cache/dev-python/blinker-1.2-r1 +++ b/metadata/md5-cache/dev-python/blinker-1.2-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/b/blinker/blinker-1.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d798cceb1fa80559d49ce63349cea2cc diff --git a/metadata/md5-cache/dev-python/boto-2.1.1 b/metadata/md5-cache/dev-python/boto-2.1.1 index 71e8e2d82545..579dfc3c3126 100644 --- a/metadata/md5-cache/dev-python/boto-2.1.1 +++ b/metadata/md5-cache/dev-python/boto-2.1.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/m2crypto python_targets_python2_5? ( dev-lang/python:2.5 ) py RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/boto/boto-2.1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=39a848fe781e6c317e2939a505bb3f54 diff --git a/metadata/md5-cache/dev-python/boto-2.7.0 b/metadata/md5-cache/dev-python/boto-2.7.0 index 92f28ca4f786..d4022ab4f197 100644 --- a/metadata/md5-cache/dev-python/boto-2.7.0 +++ b/metadata/md5-cache/dev-python/boto-2.7.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/m2crypto python_targets_python2_5? ( dev-lang/python:2.5 ) py RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/boto/boto-2.7.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ef27705e2cd5566a20df5920c7ea5661 diff --git a/metadata/md5-cache/dev-python/boto-2.8.0 b/metadata/md5-cache/dev-python/boto-2.8.0 index 8803fc068c8a..1dd7db585a62 100644 --- a/metadata/md5-cache/dev-python/boto-2.8.0 +++ b/metadata/md5-cache/dev-python/boto-2.8.0 @@ -10,5 +10,5 @@ RDEPEND=dev-python/m2crypto python_targets_python2_5? ( dev-lang/python:2.5 ) py RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/b/boto/boto-2.8.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ea11bf921de01a31c32ff373d47d0e3b diff --git a/metadata/md5-cache/dev-python/bottle-0.11.6 b/metadata/md5-cache/dev-python/bottle-0.11.6 index 882d0dc0ca88..716762fdfa68 100644 --- a/metadata/md5-cache/dev-python/bottle-0.11.6 +++ b/metadata/md5-cache/dev-python/bottle-0.11.6 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,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_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/b/bottle/bottle-0.11.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3ebe0d53b8943b5ca4d99c62f4c3303d diff --git a/metadata/md5-cache/dev-python/bpython-0.12 b/metadata/md5-cache/dev-python/bpython-0.12 index 337ec2e425dd..8a5d9f9c8cbd 100644 --- a/metadata/md5-cache/dev-python/bpython-0.12 +++ b/metadata/md5-cache/dev-python/bpython-0.12 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile install postinst postrm prepare setup -DEPEND=dev-python/pygments dev-python/setuptools gtk? ( dev-python/pygobject:2 dev-python/pygtk ) urwid? ( dev-python/urwid ) || ( =dev-lang/python-3.3* =dev-lang/python-3.2* =dev-lang/python-3.1* =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) || ( =dev-lang/python-3.3*[ncurses] =dev-lang/python-3.2*[ncurses] =dev-lang/python-3.1*[ncurses] =dev-lang/python-2.7*[ncurses] =dev-lang/python-2.6*[ncurses] =dev-lang/python-2.5*[ncurses] ) +DEPEND=dev-python/pygments dev-python/setuptools gtk? ( dev-python/pygobject:2 dev-python/pygtk ) urwid? ( dev-python/urwid ) || ( =dev-lang/python-3.3* =dev-lang/python-3.2* =dev-lang/python-3.1* =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( =dev-lang/python-3.3*[ncurses] =dev-lang/python-3.2*[ncurses] =dev-lang/python-3.1*[ncurses] =dev-lang/python-2.7*[ncurses] =dev-lang/python-2.6*[ncurses] ) DESCRIPTION=Syntax highlighting and autocompletion for the Python interpreter EAPI=3 HOMEPAGE=http://www.bpython-interpreter.org/ https://bitbucket.org/bobf/bpython/ http://pypi.python.org/pypi/bpython IUSE=gtk urwid KEYWORDS=~amd64 ~x86 LICENSE=MIT -RDEPEND=dev-python/pygments dev-python/setuptools gtk? ( dev-python/pygobject:2 dev-python/pygtk ) urwid? ( dev-python/urwid ) || ( =dev-lang/python-3.3* =dev-lang/python-3.2* =dev-lang/python-3.1* =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) || ( =dev-lang/python-3.3*[ncurses] =dev-lang/python-3.2*[ncurses] =dev-lang/python-3.1*[ncurses] =dev-lang/python-2.7*[ncurses] =dev-lang/python-2.6*[ncurses] =dev-lang/python-2.5*[ncurses] ) +RDEPEND=dev-python/pygments dev-python/setuptools gtk? ( dev-python/pygobject:2 dev-python/pygtk ) urwid? ( dev-python/urwid ) || ( =dev-lang/python-3.3* =dev-lang/python-3.2* =dev-lang/python-3.1* =dev-lang/python-2.7* =dev-lang/python-2.6* ) || ( =dev-lang/python-3.3*[ncurses] =dev-lang/python-3.2*[ncurses] =dev-lang/python-3.1*[ncurses] =dev-lang/python-2.7*[ncurses] =dev-lang/python-2.6*[ncurses] ) SLOT=0 SRC_URI=http://www.bpython-interpreter.org/releases/bpython-0.12.tar.gz _eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=698adcd77ebf88c1f3e91f764dc473fa +_md5_=1c057bc16d7748ff711e1131948bc8dc diff --git a/metadata/md5-cache/dev-python/bytecodeassembler-0.6 b/metadata/md5-cache/dev-python/bytecodeassembler-0.6 new file mode 100644 index 000000000000..cd1a88de4f34 --- /dev/null +++ b/metadata/md5-cache/dev-python/bytecodeassembler-0.6 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/unzip >=dev-python/symboltype-1.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Generate Python code objects by assembling bytecode +EAPI=5 +HOMEPAGE=http://pypi.python.org/pypi//BytecodeAssembler +IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=mirror://pypi/B/BytecodeAssembler/BytecodeAssembler-0.6.zip -> bytecodeassembler-0.6.zip +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=b08230796b6afcf03b009f244b3b2376 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 a532a235968a..a0091725e31f 100644 --- a/metadata/md5-cache/dev-python/celementtree-1.0.5-r2 +++ b/metadata/md5-cache/dev-python/celementtree-1.0.5-r2 @@ -9,5 +9,5 @@ LICENSE=ElementTree RDEPEND=>=dev-python/elementtree-1.2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-libs/expat-1.95.8 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://effbot.org/downloads/cElementTree-1.0.5-20051216.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7cc1b6ba2eb2f7b6bdf7a984b4b8b86d diff --git a/metadata/md5-cache/dev-python/cffi-0.5-r1 b/metadata/md5-cache/dev-python/cffi-0.5-r1 index f673c8efb797..a9c67dcbe353 100644 --- a/metadata/md5-cache/dev-python/cffi-0.5-r1 +++ b/metadata/md5-cache/dev-python/cffi-0.5-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=virtual/libffi dev-python/pycparser[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-),python_targets_pypy1_9(-)?,-python_single_target_pypy1_9(-),python_targets_pypy2_0(-)?,-python_single_target_pypy2_0(-)] dev-python/pytest[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/hgdistver python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/c/cffi/cffi-0.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=549f5018982ea885e264f13602a4e600 diff --git a/metadata/md5-cache/dev-python/charade-1.0.3 b/metadata/md5-cache/dev-python/charade-1.0.3 index 5246bf1e4c4a..fbecbe9a7843 100644 --- a/metadata/md5-cache/dev-python/charade-1.0.3 +++ b/metadata/md5-cache/dev-python/charade-1.0.3 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/c/charade/charade-1.0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d3221865fe40463e2f7eb1f485801a46 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 fba3172caff8..6437fa7144a3 100644 --- a/metadata/md5-cache/dev-python/chardet-2.0.1-r1 +++ b/metadata/md5-cache/dev-python/chardet-2.0.1-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=76fcdfa7e69ab3eddbe56a1b30229b80 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 97e4c8d509bd..3d912ae26f66 100644 --- a/metadata/md5-cache/dev-python/cherrypy-3.2.2-r1 +++ b/metadata/md5-cache/dev-python/cherrypy-3.2.2-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://download.cherrypy.org/cherrypy/3.2.2/CherryPy-3.2.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a368b2948d24f4f1696e17b8efd7ad00 diff --git a/metadata/md5-cache/dev-python/cliapp-1.20130313 b/metadata/md5-cache/dev-python/cliapp-1.20130313 index 855c514cac76..48bfc44e7808 100644 --- a/metadata/md5-cache/dev-python/cliapp-1.20130313 +++ b/metadata/md5-cache/dev-python/cliapp-1.20130313 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://code.liw.fi/debian/pool/main/p/python-cliapp/python-cliapp_1.20130313.orig.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ab707d8f776233cfc949393e66237001 diff --git a/metadata/md5-cache/dev-python/cliff-1.3 b/metadata/md5-cache/dev-python/cliff-1.3 index 9a4905ac68e6..5b4cd87106f3 100644 --- a/metadata/md5-cache/dev-python/cliff-1.3 +++ b/metadata/md5-cache/dev-python/cliff-1.3 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] dev-python/prettytable dev-python/cmd2 python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cliff/cliff-1.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0833535dd1147aa79b4b241e4953fc34 diff --git a/metadata/md5-cache/dev-python/cliff-1.3.1 b/metadata/md5-cache/dev-python/cliff-1.3.1 index 81634943597c..27da0855a0e8 100644 --- a/metadata/md5-cache/dev-python/cliff-1.3.1 +++ b/metadata/md5-cache/dev-python/cliff-1.3.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] dev-python/prettytable dev-python/cmd2 python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cliff/cliff-1.3.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6b71073a7814b88e1a2b8c03be0ed78e diff --git a/metadata/md5-cache/dev-python/cmd2-0.6.4 b/metadata/md5-cache/dev-python/cmd2-0.6.4 index e33f04ecbd0b..1019b271c02f 100644 --- a/metadata/md5-cache/dev-python/cmd2-0.6.4 +++ b/metadata/md5-cache/dev-python/cmd2-0.6.4 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cmd2/cmd2-0.6.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8d26b1d6593ec33e4d96baf7dd8d7128 diff --git a/metadata/md5-cache/dev-python/colorama-0.2.4 b/metadata/md5-cache/dev-python/colorama-0.2.4 index d1a758eed1f4..74cbf3c018cd 100644 --- a/metadata/md5-cache/dev-python/colorama-0.2.4 +++ b/metadata/md5-cache/dev-python/colorama-0.2.4 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/colorama/colorama-0.2.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9af400203b1bb15e8b71cc709763e30d 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 adbc0edfef09..dfc85ac3e3f6 100644 --- a/metadata/md5-cache/dev-python/configobj-4.7.2-r1 +++ b/metadata/md5-cache/dev-python/configobj-4.7.2-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://sourceforge/configobj/configobj-4.7.2.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cbc3152d4d90a615c31de92b9c8f9907 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 9cbc1a2d9b8f..ef4d301b09f6 100644 --- a/metadata/md5-cache/dev-python/configparser-3.2.0.3 +++ b/metadata/md5-cache/dev-python/configparser-3.2.0.3 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/c/configparser/configparser-3.2.0r3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8edfe4964a4336c7379a50894c696e15 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 729e64f03a63..85d2cec3b971 100644 --- a/metadata/md5-cache/dev-python/couchdb-python-0.8-r1 +++ b/metadata/md5-cache/dev-python/couchdb-python-0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-json[python_targets_python2_5(-)?,python_targets_python2_ RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/C/CouchDB/CouchDB-0.8.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fb6e013b478a8197a5aceda0d81be448 diff --git a/metadata/md5-cache/dev-python/cov-core-1.7 b/metadata/md5-cache/dev-python/cov-core-1.7 index 5fd1f6a53af3..00e8507f6f94 100644 --- a/metadata/md5-cache/dev-python/cov-core-1.7 +++ b/metadata/md5-cache/dev-python/cov-core-1.7 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/pytest[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(-)] 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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/c/cov-core/cov-core-1.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ba5db8c4f4bbc97a563c5871e0c04a1 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 01c5caa1c574..be61f2267676 100644 --- a/metadata/md5-cache/dev-python/coverage-3.5.3-r1 +++ b/metadata/md5-cache/dev-python/coverage-3.5.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/c/coverage/coverage-3.5.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=65eba606e391e4f48fa282b854a5e6ab diff --git a/metadata/md5-cache/dev-python/coverage-3.6 b/metadata/md5-cache/dev-python/coverage-3.6 index 23abc2523af0..047b782f347b 100644 --- a/metadata/md5-cache/dev-python/coverage-3.6 +++ b/metadata/md5-cache/dev-python/coverage-3.6 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/c/coverage/coverage-3.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b5c6c2693c69aacb94d145c8cf7d8f0e 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 1f8ddd8a1371..6b822c5df06c 100644 --- a/metadata/md5-cache/dev-python/cssselect-0.7.1-r1 +++ b/metadata/md5-cache/dev-python/cssselect-0.7.1-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/c/cssselect/cssselect-0.7.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e806042a72da65ead2f6e4ff7b9b68f9 diff --git a/metadata/md5-cache/dev-python/ctypesgen-0_p72-r1 b/metadata/md5-cache/dev-python/ctypesgen-0_p72-r1 index 90d9e5685205..78ff72100d96 100644 --- a/metadata/md5-cache/dev-python/ctypesgen-0_p72-r1 +++ b/metadata/md5-cache/dev-python/ctypesgen-0_p72-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://gentoo/ctypesgen-0_p72.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cd350df5d869f893dc8afe66195c2f03 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 84432833b995..fa949850d089 100644 --- a/metadata/md5-cache/dev-python/cvxopt-1.1.5-r2 +++ b/metadata/md5-cache/dev-python/cvxopt-1.1.5-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=virtual/blas virtual/cblas virtual/lapack sci-libs/cholmod sci-libs/umfpack dsdp? ( sci-libs/dsdp ) fftw? ( sci-libs/fftw:3.0 ) glpk? ( sci-mathematics/glpk ) gsl? ( sci-libs/gsl ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://abel.ee.ucla.edu/cvxopt/cvxopt-1.1.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c90df193db768a01f5a8f8bd74e3c02d diff --git a/metadata/md5-cache/dev-python/cython-0.18-r1 b/metadata/md5-cache/dev-python/cython-0.18-r1 index 24bbb2acf16b..b1334f430395 100644 --- a/metadata/md5-cache/dev-python/cython-0.18-r1 +++ b/metadata/md5-cache/dev-python/cython-0.18-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://www.cython.org/release/Cython-0.18.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e1cf9c9091777466b9d7b245eb9a7b70 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 b28f7524a384..788f4452c854 100644 --- a/metadata/md5-cache/dev-python/decorator-3.4.0-r1 +++ b/metadata/md5-cache/dev-python/decorator-3.4.0-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/d/decorator/decorator-3.4.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=07bd01c5079ad9a2677b06513c3fa296 diff --git a/metadata/md5-cache/dev-python/decoratortools-1.8-r1 b/metadata/md5-cache/dev-python/decoratortools-1.8-r1 new file mode 100644 index 000000000000..6cfb8be7453b --- /dev/null +++ b/metadata/md5-cache/dev-python/decoratortools-1.8-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/unzip dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Class, function, and metaclass decorators +EAPI=5 +HOMEPAGE=http://pypi.python.org/pypi/DecoratorTools +IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos +LICENSE=|| ( PSF-2 ZPL ) +RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=mirror://pypi/D/DecoratorTools/DecoratorTools-1.8.zip +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=c8e94091f32e1afb2ad95cd86b59bef3 diff --git a/metadata/md5-cache/dev-python/deform-0.9.6-r1 b/metadata/md5-cache/dev-python/deform-0.9.6-r1 index 1120cfe7a199..f453e5c6ab35 100644 --- a/metadata/md5-cache/dev-python/deform-0.9.6-r1 +++ b/metadata/md5-cache/dev-python/deform-0.9.6-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/translationstring-1.1 >=dev-python/colander-1.0_alpha1 >=de RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/d/deform/deform-0.9.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e5acd8c319567a65c6e291c80d4a4e03 diff --git a/metadata/md5-cache/dev-python/deform-0.9.7 b/metadata/md5-cache/dev-python/deform-0.9.7 index 9243f06f05de..267258214045 100644 --- a/metadata/md5-cache/dev-python/deform-0.9.7 +++ b/metadata/md5-cache/dev-python/deform-0.9.7 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/translationstring-1.1 >=dev-python/colander-1.0_alpha1 >=de RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/d/deform/deform-0.9.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8d0e4ae18467a6620cbfaf27436ae3e6 diff --git a/metadata/md5-cache/dev-python/django-1.3.7 b/metadata/md5-cache/dev-python/django-1.3.7 index cee3306474bf..c5c94bde7500 100644 --- a/metadata/md5-cache/dev-python/django-1.3.7 +++ b/metadata/md5-cache/dev-python/django-1.3.7 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/imaging[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/mysql-python-1.2.3[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5[sqlite?] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite?] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=app-admin/webapp-config-1.50.15 SLOT=0 SRC_URI=https://www.djangoproject.com/m/releases/1.3/Django-1.3.7.tar.gz -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=f8040c069b0fdf1fa75881f5863ccec5 diff --git a/metadata/md5-cache/dev-python/django-1.4.2-r2 b/metadata/md5-cache/dev-python/django-1.4.2-r2 index a30930913a90..f6ac99cd38fe 100644 --- a/metadata/md5-cache/dev-python/django-1.4.2-r2 +++ b/metadata/md5-cache/dev-python/django-1.4.2-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/imaging[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/mysql-python-1.2.3[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5[sqlite?] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite?] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=app-admin/webapp-config-1.50.15 SLOT=0 SRC_URI=https://www.djangoproject.com/m/releases/1.4/Django-1.4.2.tar.gz -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=fd227c99bbfe54cd919ab87e5ac7a7af diff --git a/metadata/md5-cache/dev-python/django-1.4.5 b/metadata/md5-cache/dev-python/django-1.4.5 index 5d1954f6b60e..7427ec133aa4 100644 --- a/metadata/md5-cache/dev-python/django-1.4.5 +++ b/metadata/md5-cache/dev-python/django-1.4.5 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/imaging[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] postgres? ( dev-python/psycopg:2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) mysql? ( >=dev-python/mysql-python-1.2.3[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5[sqlite?] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite?] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=app-admin/webapp-config-1.50.15 SLOT=0 SRC_URI=https://www.djangoproject.com/m/releases/1.4/Django-1.4.5.tar.gz -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=9d86f94b30a4e9eb85c942ab66ba0852 diff --git a/metadata/md5-cache/dev-python/django-1.5-r1 b/metadata/md5-cache/dev-python/django-1.5-r1 index e25bb68491d4..3802c22fd7cb 100644 --- a/metadata/md5-cache/dev-python/django-1.5-r1 +++ b/metadata/md5-cache/dev-python/django-1.5-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/imaging[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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[sqlite?] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite?] ) python_targets_python3_2? ( dev-lang/python:3.2[sqlite?] ) python_targets_python3_3? ( dev-lang/python: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 SLOT=0 SRC_URI=https://www.djangoproject.com/m/releases/1.5/Django-1.5.tar.gz -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=c1bbdf804c1c4386c52dd0b5b1e72afd diff --git a/metadata/md5-cache/dev-python/django-9999 b/metadata/md5-cache/dev-python/django-9999 index c27d2db1f69f..22932ee0d2ad 100644 --- a/metadata/md5-cache/dev-python/django-9999 +++ b/metadata/md5-cache/dev-python/django-9999 @@ -7,5 +7,5 @@ IUSE=doc mysql postgres sqlite test python_targets_python2_6 python_targets_pyth LICENSE=BSD RDEPEND=dev-python/imaging[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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[sqlite?] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite?] ) python_targets_python3_2? ( dev-lang/python:3.2[sqlite?] ) python_targets_python3_3? ( dev-lang/python: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 SLOT=0 -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=fc4040cece40769ccf9eab3410a29d17 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 863c0b2dd715..d4702f4717fe 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 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/d/django_evolution/django_evolution-0.6.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fd3b968fa10b9b123c2c7706f8a0dc4e 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 016acd149256..27154bc94ef2 100644 --- a/metadata/md5-cache/dev-python/django-international-0.0.3 +++ b/metadata/md5-cache/dev-python/django-international-0.0.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/django python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://pypi/d/django-international/django-international-0.0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0dfe07521eb3bf4979fc286ae5f72b98 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 f5fd0a333634..0e870d3cbd34 100644 --- a/metadata/md5-cache/dev-python/django-picklefield-0.3.0 +++ b/metadata/md5-cache/dev-python/django-picklefield-0.3.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-python/django-1.1.1 dev-python/six[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 ) 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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/d/django-picklefield/django-picklefield-0.3.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4ad50700afba0cf5d2b278202dc1ecfb diff --git a/metadata/md5-cache/dev-python/django-recaptcha-0.0.6-r1 b/metadata/md5-cache/dev-python/django-recaptcha-0.0.6-r1 index 1e4f9a3fe390..f16ad2bb06ec 100644 --- a/metadata/md5-cache/dev-python/django-recaptcha-0.0.6-r1 +++ b/metadata/md5-cache/dev-python/django-recaptcha-0.0.6-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/d/django-recaptcha/django-recaptcha-0.0.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4916ec28a65ee0a19b9337d88f980f7f 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 d5c375be2180..6ad4261642fc 100644 --- a/metadata/md5-cache/dev-python/django-select2-3.2.1 +++ b/metadata/md5-cache/dev-python/django-select2-3.2.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/django[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/D/Django-Select2/Django-Select2-3.2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 ff14e4ddf407..3d2b9566725d 100644 --- a/metadata/md5-cache/dev-python/django-select2-4.0.0 +++ b/metadata/md5-cache/dev-python/django-select2-4.0.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/django[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/D/Django-Select2/Django-Select2-4.0.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=033e87c425658881d3a59f99d71c3423 diff --git a/metadata/md5-cache/dev-python/docutils-0.10 b/metadata/md5-cache/dev-python/docutils-0.10 index 48692d9e5102..2d8a98bd40a0 100644 --- a/metadata/md5-cache/dev-python/docutils-0.10 +++ b/metadata/md5-cache/dev-python/docutils-0.10 @@ -9,5 +9,5 @@ LICENSE=BSD-2 GPL-3 public-domain RDEPEND=dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] glep? ( dev-python/docutils-glep[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://sourceforge/docutils/docutils-0.10.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=67b1d4ed71885c14ca5944c3fbd8c452 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 700f4a5511c0..3cef4bd05784 100644 --- a/metadata/md5-cache/dev-python/docutils-0.9.1-r1 +++ b/metadata/md5-cache/dev-python/docutils-0.9.1-r1 @@ -9,5 +9,5 @@ LICENSE=BSD-2 GPL-3 public-domain RDEPEND=dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://sourceforge/docutils/docutils-0.9.1.tar.gz glep? ( mirror://gentoo/glep-0.4-r1.tbz2 ) -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=98cd1ccded14ea2d6a4662484c8fa025 diff --git a/metadata/md5-cache/dev-python/doit-0.20.0 b/metadata/md5-cache/dev-python/doit-0.20.0 index a70b303d79ab..1fcbb3f6cd58 100644 --- a/metadata/md5-cache/dev-python/doit-0.20.0 +++ b/metadata/md5-cache/dev-python/doit-0.20.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/pyinotify 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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/d/doit/doit-0.20.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0dea3fb42939d96b802bd90bcc299561 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 c47a77961207..1e38c5b9226e 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 @@ -9,5 +9,5 @@ LICENSE=eGenixPublic-1.1 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://downloads.egenix.com/python/egenix-mx-base-3.2.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3fbdc7e16746f9e0bd3eaa95bbeeb6f2 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 4e13f0715523..42d3593d6f6a 100644 --- a/metadata/md5-cache/dev-python/elementtree-1.2.6-r3 +++ b/metadata/md5-cache/dev-python/elementtree-1.2.6-r3 @@ -9,5 +9,5 @@ LICENSE=ElementTree RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://effbot.org/downloads/elementtree-1.2.6-20050316.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d90854d75e6db53a96710e303b259fd3 diff --git a/metadata/md5-cache/dev-python/encore-0.3 b/metadata/md5-cache/dev-python/encore-0.3 index 23bac21f4db1..6efe9aef27e2 100644 --- a/metadata/md5-cache/dev-python/encore-0.3 +++ b/metadata/md5-cache/dev-python/encore-0.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://www.enthought.com/repo/ets/encore-0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1e6923b38dd3a93f8ee314ce2f5bb925 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 bf4e76f4055d..dca0fb2cb884 100644 --- a/metadata/md5-cache/dev-python/epydoc-3.0.1-r2 +++ b/metadata/md5-cache/dev-python/epydoc-3.0.1-r2 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/docutils[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] latex? ( virtual/latex-base dev-texlive/texlive-latexextra ) python_targets_python2_5? ( dev-lang/python:2.5[tk?] ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/epydoc/epydoc-3.0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0744df75881ccdd1a2e8c2834cd99687 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 521dbf55167e..ff4b50bc4122 100644 --- a/metadata/md5-cache/dev-python/eventlet-0.12.1-r1 +++ b/metadata/md5-cache/dev-python/eventlet-0.12.1-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/greenlet python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/e/eventlet/eventlet-0.12.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0574f885862ab553f3762e859d1262e2 diff --git a/metadata/md5-cache/dev-python/execnet-1.1-r1 b/metadata/md5-cache/dev-python/execnet-1.1-r1 index 6ee92d482148..95962c572d55 100644 --- a/metadata/md5-cache/dev-python/execnet-1.1-r1 +++ b/metadata/md5-cache/dev-python/execnet-1.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/e/execnet/execnet-1.1.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e1206ec571e5ebe6a63c11b59bde9656 diff --git a/metadata/md5-cache/dev-python/extremes-1.1.1 b/metadata/md5-cache/dev-python/extremes-1.1.1 new file mode 100644 index 000000000000..8babeccfb258 --- /dev/null +++ b/metadata/md5-cache/dev-python/extremes-1.1.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/unzip dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Production-quality 'Min' and 'Max' objects +EAPI=5 +HOMEPAGE=http://pypi.python.org/pypi/Extremes +IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=ZPL +RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=mirror://pypi/E/Extremes/Extremes-1.1.1.zip -> extremes-1.1.1.zip +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=42030ce77630df1227bf361026ea068b diff --git a/metadata/md5-cache/dev-python/eyeD3-0.7.1 b/metadata/md5-cache/dev-python/eyeD3-0.7.1 index 9affbe0d7217..9a9ffe88079c 100644 --- a/metadata/md5-cache/dev-python/eyeD3-0.7.1 +++ b/metadata/md5-cache/dev-python/eyeD3-0.7.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=!=dev-python/testtools-0.9.22 python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/f/fixtures/fixtures-0.3.12.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=82a1288f046ea16d2276bb6b6648ff67 diff --git a/metadata/md5-cache/dev-python/flask-0.9-r1 b/metadata/md5-cache/dev-python/flask-0.9-r1 index c45a5111dd49..c1c58d816285 100644 --- a/metadata/md5-cache/dev-python/flask-0.9-r1 +++ b/metadata/md5-cache/dev-python/flask-0.9-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/blinker[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/jinja-2.4[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/werkzeug-0.6.1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/F/Flask/Flask-0.9.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e9ac37cab959234c98718ea15c68c49a diff --git a/metadata/md5-cache/dev-python/flask-9999 b/metadata/md5-cache/dev-python/flask-9999 index 81f294a32c96..f2bc45c38a26 100644 --- a/metadata/md5-cache/dev-python/flask-9999 +++ b/metadata/md5-cache/dev-python/flask-9999 @@ -7,5 +7,5 @@ IUSE=examples test python_targets_python2_5 python_targets_python2_6 python_targ LICENSE=BSD RDEPEND=dev-python/blinker[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/jinja-2.4[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/werkzeug-0.6.1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e64d377b18da8bab5003b3e5295dd7c8 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 14543ad66ae0..460c3e5904a5 100644 --- a/metadata/md5-cache/dev-python/flask-script-0.5.3 +++ b/metadata/md5-cache/dev-python/flask-script-0.5.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/flask virtual/python-argparse[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/F/Flask-Script/Flask-Script-0.5.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fb0a8717f741ef4f98ed3a4f8c763655 diff --git a/metadata/md5-cache/dev-python/flask-testing-0.4 b/metadata/md5-cache/dev-python/flask-testing-0.4 index 882fb306bba4..1464234231c3 100644 --- a/metadata/md5-cache/dev-python/flask-testing-0.4 +++ b/metadata/md5-cache/dev-python/flask-testing-0.4 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/flask[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/twill[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/F/Flask-Testing/Flask-Testing-0.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e050610ed50b23def2e7447567e50c86 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 6ea3fa744359..7af598d81a3f 100644 --- a/metadata/md5-cache/dev-python/flask-uploads-0.1.3 +++ b/metadata/md5-cache/dev-python/flask-uploads-0.1.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/flask[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/F/Flask-Uploads/Flask-Uploads-0.1.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aad772a36e198e8f9dc09f651cbc75f0 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 bae756bfa8d3..ad48df668d7a 100644 --- a/metadata/md5-cache/dev-python/flask-wtf-0.8.3 +++ b/metadata/md5-cache/dev-python/flask-wtf-0.8.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/flask[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/wtforms-1.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/F/Flask-WTF/Flask-WTF-0.8.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=664822d1c496c5d769778d04cd067169 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 a6cd62299602..5535eac523d9 100644 --- a/metadata/md5-cache/dev-python/flup-1.0.2-r1 +++ b/metadata/md5-cache/dev-python/flup-1.0.2-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://www.saddi.com/software/flup/dist/flup-1.0.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=236d624b20d8c480daa0bbd40ad203e9 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 3b0babea6111..fe2742094d8f 100644 --- a/metadata/md5-cache/dev-python/fpconst-0.7.3-r1 +++ b/metadata/md5-cache/dev-python/fpconst-0.7.3-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://sourceforge/rsoap/fpconst-0.7.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d367cbb7b61dd1b6ad08ad2b6f832b8c diff --git a/metadata/md5-cache/dev-python/futures-2.1.3-r1 b/metadata/md5-cache/dev-python/futures-2.1.3-r1 index b6504a1b91b6..4bc477305caf 100644 --- a/metadata/md5-cache/dev-python/futures-2.1.3-r1 +++ b/metadata/md5-cache/dev-python/futures-2.1.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-)] SLOT=0 SRC_URI=mirror://pypi/f/futures/futures-2.1.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3d84cf0252df0f4f337631e48ecbea68 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 1b7f2642c657..00a0a937770c 100644 --- a/metadata/md5-cache/dev-python/gevent-1.0_beta2-r1 +++ b/metadata/md5-cache/dev-python/gevent-1.0_beta2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libev net-dns/c-ares dev-python/greenlet[python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=http://gevent.googlecode.com/files/gevent-1.0b2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 9bb160272439..046b197efe16 100644 --- a/metadata/md5-cache/dev-python/gevent-1.0_rc2 +++ b/metadata/md5-cache/dev-python/gevent-1.0_rc2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libev net-dns/c-ares dev-python/greenlet[python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=mirror://github/SiteSupport/gevent/gevent-1.0rc2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=41b3f9732405013c0d2015d47752ec69 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 4141515338e6..c4b2a5f09f5d 100644 --- a/metadata/md5-cache/dev-python/greenlet-0.4.0-r1 +++ b/metadata/md5-cache/dev-python/greenlet-0.4.0-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/g/greenlet/greenlet-0.4.0.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=228e50151c0fbb77f9f28a5df75413ca diff --git a/metadata/md5-cache/dev-python/h5py-2.1.2 b/metadata/md5-cache/dev-python/h5py-2.1.2 index cdc93dc5f637..9ea76ea64ba3 100644 --- a/metadata/md5-cache/dev-python/h5py-2.1.2 +++ b/metadata/md5-cache/dev-python/h5py-2.1.2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=sci-libs/hdf5:= dev-python/numpy[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 ) python_targets_python2_7? ( dev-lang/python: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=http://h5py.googlecode.com/files/h5py-2.1.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ac7990ffadac28b88efbb9d69d9036a9 diff --git a/metadata/md5-cache/dev-python/h5py-2.1.2-r1 b/metadata/md5-cache/dev-python/h5py-2.1.2-r1 index 66a8437e889e..4b6caa232c14 100644 --- a/metadata/md5-cache/dev-python/h5py-2.1.2-r1 +++ b/metadata/md5-cache/dev-python/h5py-2.1.2-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=sci-libs/hdf5:= dev-python/numpy[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 ) python_targets_python2_7? ( dev-lang/python: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=http://h5py.googlecode.com/files/h5py-2.1.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cd37230475e268b7032da27b71af04d5 diff --git a/metadata/md5-cache/dev-python/hcs-utils-1.3 b/metadata/md5-cache/dev-python/hcs-utils-1.3 index 09b18c5784b0..38319dfcf163 100644 --- a/metadata/md5-cache/dev-python/hcs-utils-1.3 +++ b/metadata/md5-cache/dev-python/hcs-utils-1.3 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/h/hcs_utils/hcs_utils-1.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=61f2eddc174eb1db96fd1f25146273d4 diff --git a/metadata/md5-cache/dev-python/hglib-0.3 b/metadata/md5-cache/dev-python/hglib-0.3 index 732d8687f8ae..50e2450b2522 100644 --- a/metadata/md5-cache/dev-python/hglib-0.3 +++ b/metadata/md5-cache/dev-python/hglib-0.3 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-vcs/mercurial-1.9 python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/python-hglib/python-hglib-0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38323fa17b72daa8a71bdd07c7983b9a diff --git a/metadata/md5-cache/dev-python/hgtools-2.0.2 b/metadata/md5-cache/dev-python/hgtools-2.0.2 index a1965fd61e83..0b1432d5035a 100644 --- a/metadata/md5-cache/dev-python/hgtools-2.0.2 +++ b/metadata/md5-cache/dev-python/hgtools-2.0.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-vcs/mercurial python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/h/hgtools/hgtools-2.0.2.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2e2f7380e18e66c30b2ae6518ff0f884 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 db30a72d5b1a..b96d188addcf 100644 --- a/metadata/md5-cache/dev-python/html2text-3.200.3-r1 +++ b/metadata/md5-cache/dev-python/html2text-3.200.3-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/chardet[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/feedparser[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/h/html2text/html2text-3.200.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=71736d8b70d6ac59282d5adcadacd710 diff --git a/metadata/md5-cache/dev-python/html5lib-0.95-r1 b/metadata/md5-cache/dev-python/html5lib-0.95-r1 index bbfbe614d0f4..8f7938f61745 100644 --- a/metadata/md5-cache/dev-python/html5lib-0.95-r1 +++ b/metadata/md5-cache/dev-python/html5lib-0.95-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[xml(+)] ) python_targets_python2_6? ( dev-lang/python:2.6[xml(+)] ) python_targets_python2_7? ( dev-lang/python:2.7[xml(+)] ) python_targets_pypy1_9? ( dev-python/pypy:1.9[xml(+)] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[xml(+)] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://html5lib.googlecode.com/files/html5lib-0.95.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=81bb6106d5e1b036cf83f7b86bf6fb78 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 b2fab8c27a41..08a33b52bdf6 100644 --- a/metadata/md5-cache/dev-python/http-parser-0.7.12 +++ b/metadata/md5-cache/dev-python/http-parser-0.7.12 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/h/http-parser/http-parser-0.7.12.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2775eaee6f20eb755b70e13aee5b8ed6 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 dc1e3f399a23..b583b94cb3df 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 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/h/http-parser/http-parser-0.8.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a195e3d49278cd31dbb74ac726ab6ebe diff --git a/metadata/md5-cache/dev-python/httplib2-0.7.7 b/metadata/md5-cache/dev-python/httplib2-0.7.7 index f1a6d35e8cd4..baa0e46e59db 100644 --- a/metadata/md5-cache/dev-python/httplib2-0.7.7 +++ b/metadata/md5-cache/dev-python/httplib2-0.7.7 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=http://httplib2.googlecode.com/files/httplib2-0.7.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5557b6d001cb868776a595458d478667 diff --git a/metadata/md5-cache/dev-python/icalendar-3.2-r1 b/metadata/md5-cache/dev-python/icalendar-3.2-r1 index 31b03db9c06d..c1c16befb058 100644 --- a/metadata/md5-cache/dev-python/icalendar-3.2-r1 +++ b/metadata/md5-cache/dev-python/icalendar-3.2-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/i/icalendar/icalendar-3.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 dae0f388845b..243d51a179bb 100644 --- a/metadata/md5-cache/dev-python/icalendar-3.3 +++ b/metadata/md5-cache/dev-python/icalendar-3.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/i/icalendar/icalendar-3.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fa61bd76c1af998300d8c18a393b94b2 diff --git a/metadata/md5-cache/dev-python/ijson-1.0-r1 b/metadata/md5-cache/dev-python/ijson-1.0-r1 index c664cf6de7dc..6e3e33f1b221 100644 --- a/metadata/md5-cache/dev-python/ijson-1.0-r1 +++ b/metadata/md5-cache/dev-python/ijson-1.0-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-libs/yajl python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/i/ijson/ijson-1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=74c56fcf00ec65fa36af5d89a597e348 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 0996793a1ca8..d6952f004ad9 100644 --- a/metadata/md5-cache/dev-python/imaging-1.1.7-r2 +++ b/metadata/md5-cache/dev-python/imaging-1.1.7-r2 @@ -9,5 +9,5 @@ LICENSE=HPND RDEPEND=virtual/jpeg media-libs/freetype:2 lcms? ( media-libs/lcms:0 ) scanner? ( media-gfx/sane-backends ) X? ( x11-misc/xdg-utils ) python_targets_python2_5? ( dev-lang/python:2.5[tk?] ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://www.effbot.org/downloads/Imaging-1.1.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d31f88daea67a9b1567efb104ad23969 diff --git a/metadata/md5-cache/dev-python/importing-1.10 b/metadata/md5-cache/dev-python/importing-1.10 new file mode 100644 index 000000000000..64dd265dfac0 --- /dev/null +++ b/metadata/md5-cache/dev-python/importing-1.10 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/unzip dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Import objects dynamically, lazily, weakly, and more +EAPI=5 +HOMEPAGE=http://peak.telecommunity.com/DevCenter/Importing +IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=ZPL +RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=mirror://pypi/I/Importing/Importing-1.10.zip -> importing-1.10.zip +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=837a8b3140928d9f9607e2ea64c96ff3 diff --git a/metadata/md5-cache/dev-python/iniparse-0.4-r1 b/metadata/md5-cache/dev-python/iniparse-0.4-r1 index 265aac704094..bd8495e2a337 100644 --- a/metadata/md5-cache/dev-python/iniparse-0.4-r1 +++ b/metadata/md5-cache/dev-python/iniparse-0.4-r1 @@ -9,5 +9,5 @@ LICENSE=MIT PSF-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://iniparse.googlecode.com/files/iniparse-0.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6fcbbcfc07ca26e7dc1af78306a4e9d7 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 30eea3b835f5..34ae6824d333 100644 --- a/metadata/md5-cache/dev-python/ipaddr-2.1.10-r1 +++ b/metadata/md5-cache/dev-python/ipaddr-2.1.10-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://ipaddr-py.googlecode.com/files/ipaddr-2.1.10.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0de745553398d9c4d3e983d5c3824e64 diff --git a/metadata/md5-cache/dev-python/ipy-0.76-r1 b/metadata/md5-cache/dev-python/ipy-0.76-r1 index e05970394d5a..b0a8df5d7687 100644 --- a/metadata/md5-cache/dev-python/ipy-0.76-r1 +++ b/metadata/md5-cache/dev-python/ipy-0.76-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/I/IPy/IPy-0.76.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=616ee3d38b319ace03bed6acb335325d diff --git a/metadata/md5-cache/dev-python/ipython-0.13.1-r1 b/metadata/md5-cache/dev-python/ipython-0.13.1-r1 index 9751c52e5d9c..d8a35c39639e 100644 --- a/metadata/md5-cache/dev-python/ipython-0.13.1-r1 +++ b/metadata/md5-cache/dev-python/ipython-0.13.1-r1 @@ -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 ) ) SLOT=0 SRC_URI=http://archive.ipython.org/release/0.13.1/ipython-0.13.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=b6a404468d50aae0a06551ffe3317b98 diff --git a/metadata/md5-cache/dev-python/irc-8.0 b/metadata/md5-cache/dev-python/irc-8.0 index 69ba3d850d50..04d5a7300dd9 100644 --- a/metadata/md5-cache/dev-python/irc-8.0 +++ b/metadata/md5-cache/dev-python/irc-8.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=!>=dev-python/python-irclib-3.2.2 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/i/irc/irc-8.0.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fb83c713207b056fed8abb5ddf140405 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 27c1a0c8813d..a3a415038a9d 100644 --- a/metadata/md5-cache/dev-python/iso8601-0.1.4-r1 +++ b/metadata/md5-cache/dev-python/iso8601-0.1.4-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/i/iso8601/iso8601-0.1.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=75f6aeb89896d21d556d99495c1a1508 diff --git a/metadata/md5-cache/dev-python/jinja-2.6-r1 b/metadata/md5-cache/dev-python/jinja-2.6-r1 index 28e805e7db3f..66b952529023 100644 --- a/metadata/md5-cache/dev-python/jinja-2.6-r1 +++ b/metadata/md5-cache/dev-python/jinja-2.6-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/markupsafe[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/J/Jinja2/Jinja2-2.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d118ea38e5deaf6f17ed8380fd3c04fd 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 702dea3454d1..b4df4b9c51be 100644 --- a/metadata/md5-cache/dev-python/joblib-0.7.0d-r1 +++ b/metadata/md5-cache/dev-python/joblib-0.7.0d-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/j/joblib/joblib-0.7.0d.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a3a878240d03bc1c8b6c98a95fb2f9ff diff --git a/metadata/md5-cache/dev-python/jsonpatch-0.10 b/metadata/md5-cache/dev-python/jsonpatch-0.10 index c7cffbc005b3..8c113ba9905e 100644 --- a/metadata/md5-cache/dev-python/jsonpatch-0.10 +++ b/metadata/md5-cache/dev-python/jsonpatch-0.10 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/jsonpointer[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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/j/jsonpatch/jsonpatch-0.10.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 b708f91119da..3f7545d37ab2 100644 --- a/metadata/md5-cache/dev-python/jsonpatch-0.12 +++ b/metadata/md5-cache/dev-python/jsonpatch-0.12 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/jsonpointer[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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/j/jsonpatch/jsonpatch-0.12.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=60670460bffe3b23a6dd575e9cbbb70f diff --git a/metadata/md5-cache/dev-python/jsonpointer-0.7 b/metadata/md5-cache/dev-python/jsonpointer-0.7 index ef8b707ef2b0..0a34a6903929 100644 --- a/metadata/md5-cache/dev-python/jsonpointer-0.7 +++ b/metadata/md5-cache/dev-python/jsonpointer-0.7 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/j/jsonpointer/jsonpointer-0.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4f3d69e55f718ae12e16b5a539984f7b diff --git a/metadata/md5-cache/dev-python/jsonschema-0.7 b/metadata/md5-cache/dev-python/jsonschema-0.7 index b5b02434dcc6..0332c9ff50e0 100644 --- a/metadata/md5-cache/dev-python/jsonschema-0.7 +++ b/metadata/md5-cache/dev-python/jsonschema-0.7 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/j/jsonschema/jsonschema-0.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 deef240d9cde..8bfd23a6c7d1 100644 --- a/metadata/md5-cache/dev-python/jsonschema-0.8.0 +++ b/metadata/md5-cache/dev-python/jsonschema-0.8.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/j/jsonschema/jsonschema-0.8.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1974a6709d91ecbeb18613615c04fc3c diff --git a/metadata/md5-cache/dev-python/keyring-1.0 b/metadata/md5-cache/dev-python/keyring-1.0 index 12e5c2b5265c..03c12c5cea27 100644 --- a/metadata/md5-cache/dev-python/keyring-1.0 +++ b/metadata/md5-cache/dev-python/keyring-1.0 @@ -9,5 +9,5 @@ LICENSE=PSF-2 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/k/keyring/keyring-1.0.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=be43954c7bcde6f8ceeb1e9f6415218d 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 e41d98b429df..e48137c72f00 100644 --- a/metadata/md5-cache/dev-python/kombu-1.0.4-r1 +++ b/metadata/md5-cache/dev-python/kombu-1.0.4-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/anyjson >=dev-python/amqplib-0.6 python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/k/kombu/kombu-1.0.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7cad929df2e1aeffa063f02a0bae4a92 diff --git a/metadata/md5-cache/dev-python/larch-1.20130316 b/metadata/md5-cache/dev-python/larch-1.20130316 index 6238ba9052ed..6eb4e11550ce 100644 --- a/metadata/md5-cache/dev-python/larch-1.20130316 +++ b/metadata/md5-cache/dev-python/larch-1.20130316 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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/cliapp dev-python/tracing dev-python/ttystatus python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://code.liw.fi/debian/pool/main/p/python-larch/python-larch_1.20130316.orig.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=006e0435326e92f46d92b911927a15ee diff --git a/metadata/md5-cache/dev-python/liblarch-2.1.0 b/metadata/md5-cache/dev-python/liblarch-2.1.0 index ed83da790adc..72d97beaac4f 100644 --- a/metadata/md5-cache/dev-python/liblarch-2.1.0 +++ b/metadata/md5-cache/dev-python/liblarch-2.1.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=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[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 ) python_targets_python2_7? ( dev-lang/python: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=http://gtg.fritalk.com/publique/gtg.fritalk.com/liblarch/2.1.0/liblarch-2.1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=382212bfd028047e2472ebab12ada366 diff --git a/metadata/md5-cache/dev-python/llfuse-0.38 b/metadata/md5-cache/dev-python/llfuse-0.38 index a6bf1a50e136..5cd33e57a36a 100644 --- a/metadata/md5-cache/dev-python/llfuse-0.38 +++ b/metadata/md5-cache/dev-python/llfuse-0.38 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=sys-fs/fuse-2.8.0 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/l/llfuse/llfuse-0.38.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f8b95978fd9727f6dba5df8c059f2fc0 diff --git a/metadata/md5-cache/dev-python/logbook-0.4.1 b/metadata/md5-cache/dev-python/logbook-0.4.1 index 871ead60f13f..d8752603c696 100644 --- a/metadata/md5-cache/dev-python/logbook-0.4.1 +++ b/metadata/md5-cache/dev-python/logbook-0.4.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/L/Logbook/Logbook-0.4.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a7774303b8af24a6a45cc90d55f903d4 diff --git a/metadata/md5-cache/dev-python/logilab-common-0.58.3-r1 b/metadata/md5-cache/dev-python/logilab-common-0.58.3-r1 index b794eeb47046..65ce40ec26da 100644 --- a/metadata/md5-cache/dev-python/logilab-common-0.58.3-r1 +++ b/metadata/md5-cache/dev-python/logilab-common-0.58.3-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] virtual/python-unittest2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) 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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/common/logilab-common-0.58.3.tar.gz mirror://pypi/l/logilab-common/logilab-common-0.58.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=52595c5bd266bf2ec032f992ff7e6d7f diff --git a/metadata/md5-cache/dev-python/logilab-common-0.59.0 b/metadata/md5-cache/dev-python/logilab-common-0.59.0 index 615660d96676..c1486398bb84 100644 --- a/metadata/md5-cache/dev-python/logilab-common-0.59.0 +++ b/metadata/md5-cache/dev-python/logilab-common-0.59.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] virtual/python-unittest2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/common/logilab-common-0.59.0.tar.gz mirror://pypi/l/logilab-common/logilab-common-0.59.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8bdaf64434220aefe4dae3adfc6422a8 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 e7b5b886d2d2..7187b9fb5b52 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 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/numpy[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-mathematics/lpsolve python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/lpsolve/lp_solve_5.5.2.0_Python_source.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9d4c757953edb4e6ec2777df56bd2b20 diff --git a/metadata/md5-cache/dev-python/lxml-3.0.1 b/metadata/md5-cache/dev-python/lxml-3.0.1 index de970e8b1fa7..fb4f5c7e53d4 100644 --- a/metadata/md5-cache/dev-python/lxml-3.0.1 +++ b/metadata/md5-cache/dev-python/lxml-3.0.1 @@ -9,5 +9,5 @@ LICENSE=BSD ElementTree GPL-2 PSF-2 RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 dev-python/beautifulsoup[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://codespeak.net/lxml/lxml-3.0.1.tgz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7bdac030b3c185c1ff7db130b359740c diff --git a/metadata/md5-cache/dev-python/lxml-3.1.0 b/metadata/md5-cache/dev-python/lxml-3.1.0 index e9d693c9dbb5..f9a2e7764fc7 100644 --- a/metadata/md5-cache/dev-python/lxml-3.1.0 +++ b/metadata/md5-cache/dev-python/lxml-3.1.0 @@ -9,5 +9,5 @@ LICENSE=BSD ElementTree GPL-2 PSF-2 RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 dev-python/beautifulsoup[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/l/lxml/lxml-3.1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fc24a8ab5af7b9e02ceb9c768cff5fbe diff --git a/metadata/md5-cache/dev-python/lxml-3.1.1 b/metadata/md5-cache/dev-python/lxml-3.1.1 index 0d6cd674732e..46126a5434de 100644 --- a/metadata/md5-cache/dev-python/lxml-3.1.1 +++ b/metadata/md5-cache/dev-python/lxml-3.1.1 @@ -9,5 +9,5 @@ LICENSE=BSD ElementTree GPL-2 PSF-2 RDEPEND=>=dev-libs/libxml2-2.7.2 >=dev-libs/libxslt-1.1.15 dev-python/beautifulsoup[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/l/lxml/lxml-3.1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=20b0b2c351d7bd3eb9fc5c0395788501 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 ef5d3f708423..2becf7076865 100644 --- a/metadata/md5-cache/dev-python/m2crypto-0.21.1-r1 +++ b/metadata/md5-cache/dev-python/m2crypto-0.21.1-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/openssl-0.9.8 python_targets_python2_5? ( dev-lang/python:2.5 RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/M/M2Crypto/M2Crypto-0.21.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d09d87db8ba70d073c4f23a85385566e 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 70063c56ef4a..2b61a4829b74 100644 --- a/metadata/md5-cache/dev-python/mako-0.7.3-r1 +++ b/metadata/md5-cache/dev-python/mako-0.7.3-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-python/beaker-1.1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] >=dev-python/markupsafe-0.9.2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=http://www.makotemplates.org/downloads/Mako-0.7.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1f5808a3c6c3c961d17264b34df808fa diff --git a/metadata/md5-cache/dev-python/manuel-1.7.1 b/metadata/md5-cache/dev-python/manuel-1.7.1 index 6044b70e944e..19c5f03d0b65 100644 --- a/metadata/md5-cache/dev-python/manuel-1.7.1 +++ b/metadata/md5-cache/dev-python/manuel-1.7.1 @@ -9,5 +9,5 @@ LICENSE=ZPL RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://dev.gentoo.org/~idella4/tarballs/manuel-1.7.1-20130316.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=617a36801391503a53da697dab9407ec 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 de70b77fe666..33a37ed805c3 100644 --- a/metadata/md5-cache/dev-python/markdown-2.2.1-r1 +++ b/metadata/md5-cache/dev-python/markdown-2.2.1-r1 @@ -9,5 +9,5 @@ LICENSE=|| ( BSD GPL-2 ) RDEPEND=pygments? ( dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/M/Markdown/Markdown-2.2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=59521df0530241397856f42d6fbd0e26 diff --git a/metadata/md5-cache/dev-python/markdown-2.3 b/metadata/md5-cache/dev-python/markdown-2.3 index 28d125349a43..6fe74090c05d 100644 --- a/metadata/md5-cache/dev-python/markdown-2.3 +++ b/metadata/md5-cache/dev-python/markdown-2.3 @@ -9,5 +9,5 @@ LICENSE=|| ( BSD GPL-2 ) RDEPEND=pygments? ( dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/M/Markdown/Markdown-2.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=69f29a23d6328d4a96a40bf250e1fc3d diff --git a/metadata/md5-cache/dev-python/markdown-2.3.1 b/metadata/md5-cache/dev-python/markdown-2.3.1 index d5d7f7e2f8ef..0a74db05e829 100644 --- a/metadata/md5-cache/dev-python/markdown-2.3.1 +++ b/metadata/md5-cache/dev-python/markdown-2.3.1 @@ -9,5 +9,5 @@ LICENSE=|| ( BSD GPL-2 ) RDEPEND=pygments? ( dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/M/Markdown/Markdown-2.3.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fcdbe0a0189c079f27d14f721ac8d043 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 7dccf895372a..3d28ec647fec 100644 --- a/metadata/md5-cache/dev-python/markdown2-2.1.0-r1 +++ b/metadata/md5-cache/dev-python/markdown2-2.1.0-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/m/markdown2/markdown2-2.1.0.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=53b32109605054b477a28f5353f0ccd1 diff --git a/metadata/md5-cache/dev-python/markupsafe-0.15-r1 b/metadata/md5-cache/dev-python/markupsafe-0.15-r1 index 255d6e698eb1..f8657ea428dc 100644 --- a/metadata/md5-cache/dev-python/markupsafe-0.15-r1 +++ b/metadata/md5-cache/dev-python/markupsafe-0.15-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/M/MarkupSafe/MarkupSafe-0.15.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=83173bbce26423ba86625f8da5e54b44 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 14f6a43aa3a4..8b00650b1d5e 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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8b0a95d66190eb25290528d8afe5d6d6 diff --git a/metadata/md5-cache/dev-python/milk-0.5.1 b/metadata/md5-cache/dev-python/milk-0.5.1 index 996e4a15e9bd..2be5d18a9f14 100644 --- a/metadata/md5-cache/dev-python/milk-0.5.1 +++ b/metadata/md5-cache/dev-python/milk-0.5.1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/numpy python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/m/milk/milk-0.5.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1f5471f0b365e38df9b87aa5e943a181 diff --git a/metadata/md5-cache/dev-python/miniupnpc-1.7-r1 b/metadata/md5-cache/dev-python/miniupnpc-1.7-r1 index 9e380560b3e5..a611dd154a84 100644 --- a/metadata/md5-cache/dev-python/miniupnpc-1.7-r1 +++ b/metadata/md5-cache/dev-python/miniupnpc-1.7-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=net-libs/miniupnpc-1.7 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=http://miniupnp.free.fr/files/miniupnpc-1.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d23ac3342e41aecfeebf23ae0e4673d5 diff --git a/metadata/md5-cache/dev-python/miniupnpc-1.8 b/metadata/md5-cache/dev-python/miniupnpc-1.8 index 217fd9e46ed8..f95802719c52 100644 --- a/metadata/md5-cache/dev-python/miniupnpc-1.8 +++ b/metadata/md5-cache/dev-python/miniupnpc-1.8 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=net-libs/miniupnpc-1.8 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=http://miniupnp.free.fr/files/miniupnpc-1.8.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7f38c54dbb12b43c4695207a4df9b662 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 a5e5f9883d83..2e2d224c7312 100644 --- a/metadata/md5-cache/dev-python/mock-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/mock-1.0.1-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/m/mock/mock-1.0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b50a02bed2a3b0f0dd4cb07b4f696c21 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 2c282035afa4..6273cdf51dec 100644 --- a/metadata/md5-cache/dev-python/mox-0.5.3-r1 +++ b/metadata/md5-cache/dev-python/mox-0.5.3-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/m/mox/mox-0.5.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=81f5d7bf0d62976f93c28a6af74ca69f diff --git a/metadata/md5-cache/dev-python/mpmath-0.17 b/metadata/md5-cache/dev-python/mpmath-0.17 index 8ae87d4a07cd..5b640f497b50 100644 --- a/metadata/md5-cache/dev-python/mpmath-0.17 +++ b/metadata/md5-cache/dev-python/mpmath-0.17 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=gmp? ( dev-python/gmpy ) matplotlib? ( dev-python/matplotlib ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=http://mpmath.googlecode.com/files/mpmath-all-0.17.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8d97b08aa0cf9e9204a6b9377001aff7 diff --git a/metadata/md5-cache/dev-python/msgpack-0.2.4 b/metadata/md5-cache/dev-python/msgpack-0.2.4 index d09b729ce514..029dee17791c 100644 --- a/metadata/md5-cache/dev-python/msgpack-0.2.4 +++ b/metadata/md5-cache/dev-python/msgpack-0.2.4 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/m/msgpack-python/msgpack-python-0.2.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c55906fb748ae70802c7510cac71f272 diff --git a/metadata/md5-cache/dev-python/msgpack-0.3.0 b/metadata/md5-cache/dev-python/msgpack-0.3.0 index 5c5017f3f571..912bbc091048 100644 --- a/metadata/md5-cache/dev-python/msgpack-0.3.0 +++ b/metadata/md5-cache/dev-python/msgpack-0.3.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/m/msgpack-python/msgpack-python-0.3.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=37e95635ad0c4caa117cb431f86f47a3 diff --git a/metadata/md5-cache/dev-python/mygpoclient-1.7-r1 b/metadata/md5-cache/dev-python/mygpoclient-1.7-r1 index dae2d806f08a..a16b5d474df5 100644 --- a/metadata/md5-cache/dev-python/mygpoclient-1.7-r1 +++ b/metadata/md5-cache/dev-python/mygpoclient-1.7-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/simplejson python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://thp.io/2010/mygpoclient/mygpoclient-1.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2b0febfc4f282b391a331738358e4c4e 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 ddcbb743d9a9..169c12f7d615 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 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=virtual/mysql python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/mysql-python/MySQL-python-1.2.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7c2d2d41d7f6e214c302384445869cbc 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 5b7fd0162852..7619375723f6 100644 --- a/metadata/md5-cache/dev-python/nose-1.1.2-r1 +++ b/metadata/md5-cache/dev-python/nose-1.1.2-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=coverage? ( dev-python/coverage[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] ) dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/n/nose/nose-1.1.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cb8a8e2eb8a46d6d7cda0d08a76f648e diff --git a/metadata/md5-cache/dev-python/nose-1.2.1 b/metadata/md5-cache/dev-python/nose-1.2.1 index df12a8b14d03..1b3e875b3f5f 100644 --- a/metadata/md5-cache/dev-python/nose-1.2.1 +++ b/metadata/md5-cache/dev-python/nose-1.2.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/coverage[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/n/nose/nose-1.2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e7b576ef40305f94882cce29e567e6dd 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 f0ad4f1fe09d..ef015cbd2721 100644 --- a/metadata/md5-cache/dev-python/nose-1.2.1_p2012 +++ b/metadata/md5-cache/dev-python/nose-1.2.1_p2012 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/coverage[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=4591ef18eb1d8fda0f61af015a258455 diff --git a/metadata/md5-cache/dev-python/nose-9999 b/metadata/md5-cache/dev-python/nose-9999 index 8fa01bd19850..1ddc1e4b20e8 100644 --- a/metadata/md5-cache/dev-python/nose-9999 +++ b/metadata/md5-cache/dev-python/nose-9999 @@ -7,5 +7,5 @@ IUSE=doc examples test python_targets_python2_5 python_targets_python2_6 python_ LICENSE=LGPL-2.1 RDEPEND=dev-python/coverage[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=10b9126dfb43cd87129a87e41eb14d07 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 a4d524b464fb..a8eb88dcbc7c 100644 --- a/metadata/md5-cache/dev-python/nose-exclude-0.1.9 +++ b/metadata/md5-cache/dev-python/nose-exclude-0.1.9 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/nose[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/n/nose-exclude/nose-exclude-0.1.9.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e11d6753334d6916bfe749fc89e6c72b diff --git a/metadata/md5-cache/dev-python/nosehtmloutput-0.0.4 b/metadata/md5-cache/dev-python/nosehtmloutput-0.0.4 index 3346ae1486ce..f0ff1820a198 100644 --- a/metadata/md5-cache/dev-python/nosehtmloutput-0.0.4 +++ b/metadata/md5-cache/dev-python/nosehtmloutput-0.0.4 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/nose python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/n/nosehtmloutput/nosehtmloutput-0.0.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f24b5d1b7d209db6eebaad843287d064 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 6d3735392b56..322bfad2b968 100644 --- a/metadata/md5-cache/dev-python/numpy-1.6.2-r2 +++ b/metadata/md5-cache/dev-python/numpy-1.6.2-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] lapack? ( virtual/cblas virtual/lapack ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] lapack? ( virtual/fortran ) 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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=9684878618a170e166f574c77a74d4c1 diff --git a/metadata/md5-cache/dev-python/numpy-1.7.0 b/metadata/md5-cache/dev-python/numpy-1.7.0 index 7fa86ace2816..963ed67077e9 100644 --- a/metadata/md5-cache/dev-python/numpy-1.7.0 +++ b/metadata/md5-cache/dev-python/numpy-1.7.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] lapack? ( virtual/cblas virtual/lapack ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] lapack? ( virtual/fortran ) SLOT=0 SRC_URI=mirror://sourceforge/numpy/numpy-1.7.0.tar.gz doc? ( http://docs.scipy.org/doc/numpy-1.7.0/numpy-html-1.7.0.zip http://docs.scipy.org/doc/numpy-1.7.0/numpy-ref-1.7.0.pdf http://docs.scipy.org/doc/numpy-1.7.0/numpy-user-1.7.0.pdf ) -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=732699eb6fabfa92237db84d81bb092a diff --git a/metadata/md5-cache/dev-python/oauthlib-0.3.6 b/metadata/md5-cache/dev-python/oauthlib-0.3.6 index 0845f3adfcf3..fd890c88aa4e 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.3.6 +++ b/metadata/md5-cache/dev-python/oauthlib-0.3.6 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.3.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b8147b9478b163fcf646316f9f1ef523 diff --git a/metadata/md5-cache/dev-python/oauthlib-0.3.7 b/metadata/md5-cache/dev-python/oauthlib-0.3.7 index 06a76a4f0497..9f80670f90a5 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.3.7 +++ b/metadata/md5-cache/dev-python/oauthlib-0.3.7 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.3.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=624684a297c986d28a720a0c6f00f68d diff --git a/metadata/md5-cache/dev-python/oauthlib-0.3.8 b/metadata/md5-cache/dev-python/oauthlib-0.3.8 index 1c955ff3832d..b20cffa9e7f1 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.3.8 +++ b/metadata/md5-cache/dev-python/oauthlib-0.3.8 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.3.8.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7ce205915958d0250f6b50f6b8d3476c diff --git a/metadata/md5-cache/dev-python/oauthlib-0.4.0 b/metadata/md5-cache/dev-python/oauthlib-0.4.0 index dba1592dbcef..f8f298e51789 100644 --- a/metadata/md5-cache/dev-python/oauthlib-0.4.0 +++ b/metadata/md5-cache/dev-python/oauthlib-0.4.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-python/pycrypto-2.6-r1 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/o/oauthlib/oauthlib-0.4.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9fba1e97283e26fc2c7bb404e3b92949 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 fa7e5551c185..bee4478c219d 100644 --- a/metadata/md5-cache/dev-python/oct2py-0.4.0-r1 +++ b/metadata/md5-cache/dev-python/oct2py-0.4.0-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=sci-libs/scipy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-mathematics/octave python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/o/oct2py/oct2py-0.4.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bde75f6286d99221eb690e9cb166f834 diff --git a/metadata/md5-cache/dev-python/oosuite-0.43 b/metadata/md5-cache/dev-python/oosuite-0.43 index 661caa99b11b..0e822aa22033 100644 --- a/metadata/md5-cache/dev-python/oosuite-0.43 +++ b/metadata/md5-cache/dev-python/oosuite-0.43 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] !minimal? ( dev-python/cvxopt[glpk,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/lp_solve[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/matplotlib[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setproctitle[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/nlopt[python] sci-libs/scipy[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[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) 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=http://openopt.org/images/f/f3/OOSuite.zip -> OOSuite-0.43.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d0b541b23bca5063f2b3aae9bcbcea80 diff --git a/metadata/md5-cache/dev-python/oosuite-0.45 b/metadata/md5-cache/dev-python/oosuite-0.45 index 553d33d8e248..6d17a963330e 100644 --- a/metadata/md5-cache/dev-python/oosuite-0.45 +++ b/metadata/md5-cache/dev-python/oosuite-0.45 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] !minimal? ( dev-python/cvxopt[glpk,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/lp_solve[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/matplotlib[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setproctitle[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/nlopt[python] sci-libs/scipy[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[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) 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=http://openopt.org/images/f/f3/OOSuite.zip -> OOSuite-0.45.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e8bda3d8425c820da359abfc44dfed10 diff --git a/metadata/md5-cache/dev-python/openstack-nose-plugin-0.11-r1 b/metadata/md5-cache/dev-python/openstack-nose-plugin-0.11-r1 index 02a2fe75fb19..4f094210d894 100644 --- a/metadata/md5-cache/dev-python/openstack-nose-plugin-0.11-r1 +++ b/metadata/md5-cache/dev-python/openstack-nose-plugin-0.11-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/nose[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/colorama[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/termcolor[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/o/openstack.nose_plugin/openstack.nose_plugin-0.11.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e6a14ad8585fdea1041abb1a7c85439b 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 e6acba426269..940d15809b9a 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 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b699a099b99ac01ef390e69b361aa37b 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 bc3efabea188..f8b6cadf570e 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 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e962c78cfb944d3f63215f9c68cbe00b 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 16685a056442..eeafcf960715 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 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=50b47242603a223bf00a1290d5649355 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 edf08c7a379f..9b907640a485 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 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6812746908ca65dcab557e4673e8f990 diff --git a/metadata/md5-cache/dev-python/oslo-config-1.1.0 b/metadata/md5-cache/dev-python/oslo-config-1.1.0 new file mode 100644 index 000000000000..d5f217f9657a --- /dev/null +++ b/metadata/md5-cache/dev-python/oslo-config-1.1.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[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 ) python_targets_python2_7? ( dev-lang/python: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=The Oslo configuration API supports parsing command line arguments and ini style configuration files +EAPI=5 +HOMEPAGE=https://pypi.python.org/pypi/oslo.config +IUSE=test python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +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(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +RESTRICT=test +SLOT=0 +SRC_URI=mirror://pypi/o/oslo.config/oslo.config-1.1.0.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=7bca11fab9c4100ba088b71c5693cbdd diff --git a/metadata/md5-cache/dev-python/pandas-0.10.0 b/metadata/md5-cache/dev-python/pandas-0.10.0 index bf3e3baac452..44beb8407d0e 100644 --- a/metadata/md5-cache/dev-python/pandas-0.10.0 +++ b/metadata/md5-cache/dev-python/pandas-0.10.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/numpy dev-python/python-dateutil[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/matplotlib dev-python/pytables dev-python/pytz[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scipy excel? ( dev-python/openpyxl dev-python/xlrd dev-python/xlwt ) R? ( dev-python/rpy ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/p/pandas/pandas-0.10.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ee3b53cca35e4b0e9097c6dbe9373fa2 diff --git a/metadata/md5-cache/dev-python/pandas-0.10.1 b/metadata/md5-cache/dev-python/pandas-0.10.1 index 57e6dab0f8a3..62e67aca15b8 100644 --- a/metadata/md5-cache/dev-python/pandas-0.10.1 +++ b/metadata/md5-cache/dev-python/pandas-0.10.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/numpy dev-python/python-dateutil[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/matplotlib dev-python/pytables dev-python/pytz[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scipy excel? ( dev-python/openpyxl dev-python/xlrd dev-python/xlwt ) R? ( dev-python/rpy ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/p/pandas/pandas-0.10.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b00b226937a563fe055a9d95598bde4a diff --git a/metadata/md5-cache/dev-python/paramiko-1.10.0 b/metadata/md5-cache/dev-python/paramiko-1.10.0 index 601d95d523e3..03de1a6c505c 100644 --- a/metadata/md5-cache/dev-python/paramiko-1.10.0 +++ b/metadata/md5-cache/dev-python/paramiko-1.10.0 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-python/pycrypto-2.1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/p/paramiko/paramiko-1.10.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8eb492d6c506561ad6cbc1aec30aefe9 diff --git a/metadata/md5-cache/dev-python/paramiko-1.9.0-r1 b/metadata/md5-cache/dev-python/paramiko-1.9.0-r1 index f5be73e182a3..c1f4b6a55b81 100644 --- a/metadata/md5-cache/dev-python/paramiko-1.9.0-r1 +++ b/metadata/md5-cache/dev-python/paramiko-1.9.0-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=dev-python/pycrypto-2.1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/p/paramiko/paramiko-1.9.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2879478541cbed8158dceb3c6ca776ce diff --git a/metadata/md5-cache/dev-python/passlib-1.6.1 b/metadata/md5-cache/dev-python/passlib-1.6.1 index 2fba87edf41c..0219dc283be9 100644 --- a/metadata/md5-cache/dev-python/passlib-1.6.1 +++ b/metadata/md5-cache/dev-python/passlib-1.6.1 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/passlib/passlib-1.6.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9b7375a741a9377b9b425f2ca41fd914 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 587fd1e68c74..9b7f2ae5c596 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 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] flup? ( dev-python/flup[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) openid? ( dev-python/python-openid[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/P/Paste/Paste-1.7.5.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3103b014d333fa5a3f0950fa01803dbe 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 a8d45bcee802..7bb28a30725b 100644 --- a/metadata/md5-cache/dev-python/pastedeploy-1.5.0-r1 +++ b/metadata/md5-cache/dev-python/pastedeploy-1.5.0-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/paste[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/P/PasteDeploy/PasteDeploy-1.5.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d519eaf22e9538d8d40b275c8e42c9c8 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 09df0244528e..e953e5b4acd8 100644 --- a/metadata/md5-cache/dev-python/paver-1.1.1-r1 +++ b/metadata/md5-cache/dev-python/paver-1.1.1-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/P/Paver/Paver-1.1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b4e2f23f4d9e74622b7c09b420716460 diff --git a/metadata/md5-cache/dev-python/paver-1.2.0 b/metadata/md5-cache/dev-python/paver-1.2.0 index 018ce064f0c2..9b19754043f6 100644 --- a/metadata/md5-cache/dev-python/paver-1.2.0 +++ b/metadata/md5-cache/dev-python/paver-1.2.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) 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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/P/Paver/Paver-1.2.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6e23d203fe1a1f57b16ed1cc44e2833f diff --git a/metadata/md5-cache/dev-python/pdfrw-0.1 b/metadata/md5-cache/dev-python/pdfrw-0.1 index b6d8202053b4..9427218d874c 100644 --- a/metadata/md5-cache/dev-python/pdfrw-0.1 +++ b/metadata/md5-cache/dev-python/pdfrw-0.1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pdfrw/pdfrw-0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=07ba3c3f182012912413afc071a24bb7 diff --git a/metadata/md5-cache/dev-python/peak-rules-0.5 b/metadata/md5-cache/dev-python/peak-rules-0.5 new file mode 100644 index 000000000000..4ace971f5c14 --- /dev/null +++ b/metadata/md5-cache/dev-python/peak-rules-0.5 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/bytecodeassembler-0.6[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/addons-0.6[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/extremes-1.1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] test? ( >=dev-python/importing-1.10[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Generic functions and business rules support systems +EAPI=5 +HOMEPAGE=http://peak.telecommunity.com/ https://pypi.python.org/pypi/PEAK-Rules/ +IUSE=test python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=ZPL +RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_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 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=6d90b777527f67d226f4c79ef12e7cc4 diff --git a/metadata/md5-cache/dev-python/pep8-1.4 b/metadata/md5-cache/dev-python/pep8-1.4 index 7b5fd408ac0a..80226a689f42 100644 --- a/metadata/md5-cache/dev-python/pep8-1.4 +++ b/metadata/md5-cache/dev-python/pep8-1.4 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/p/pep8/pep8-1.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=93e9e9ea5fe0308c1fbda2eed7671cf6 diff --git a/metadata/md5-cache/dev-python/pep8-1.4.1 b/metadata/md5-cache/dev-python/pep8-1.4.1 index 794a875ff254..800c1da71b71 100644 --- a/metadata/md5-cache/dev-python/pep8-1.4.1 +++ b/metadata/md5-cache/dev-python/pep8-1.4.1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/p/pep8/pep8-1.4.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=20b556e4f9bfdaf4ef8cf81117627bc9 diff --git a/metadata/md5-cache/dev-python/pep8-1.4.2 b/metadata/md5-cache/dev-python/pep8-1.4.2 index 4e5868a9889e..98b304a3787e 100644 --- a/metadata/md5-cache/dev-python/pep8-1.4.2 +++ b/metadata/md5-cache/dev-python/pep8-1.4.2 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/p/pep8/pep8-1.4.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7108b76c7e221c775b1207a283567ef9 diff --git a/metadata/md5-cache/dev-python/pep8-1.4.5 b/metadata/md5-cache/dev-python/pep8-1.4.5 index ced46f720519..a54a49058156 100644 --- a/metadata/md5-cache/dev-python/pep8-1.4.5 +++ b/metadata/md5-cache/dev-python/pep8-1.4.5 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/p/pep8/pep8-1.4.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6e9e3062c60979725869e3bd12d2fef5 diff --git a/metadata/md5-cache/dev-python/pexpect-2.4-r1 b/metadata/md5-cache/dev-python/pexpect-2.4-r1 index 66f7a522fc52..046475bfc43c 100644 --- a/metadata/md5-cache/dev-python/pexpect-2.4-r1 +++ b/metadata/md5-cache/dev-python/pexpect-2.4-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://pypi/p/pexpect/pexpect-2.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ef58afdc07a1a8ddf5c6737a4efa7f85 diff --git a/metadata/md5-cache/dev-python/pip-1.3.1 b/metadata/md5-cache/dev-python/pip-1.3.1 index d149e90d43e6..314757e3c59f 100644 --- a/metadata/md5-cache/dev-python/pip-1.3.1 +++ b/metadata/md5-cache/dev-python/pip-1.3.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/pip/pip-1.3.1.tar.gz -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=22e9e0b9f6dd55edd4a85cdd49857c44 diff --git a/metadata/md5-cache/dev-python/ply-3.4-r1 b/metadata/md5-cache/dev-python/ply-3.4-r1 index 4fc08a49a5f4..ba6ae3ffff6c 100644 --- a/metadata/md5-cache/dev-python/ply-3.4-r1 +++ b/metadata/md5-cache/dev-python/ply-3.4-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://www.dabeaz.com/ply/ply-3.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=81567fee6330f3a3884d96ae88b94971 diff --git a/metadata/md5-cache/dev-python/pmw-1.3.3 b/metadata/md5-cache/dev-python/pmw-1.3.3 index 2a61ede297e1..b9e7d9c56754 100644 --- a/metadata/md5-cache/dev-python/pmw-1.3.3 +++ b/metadata/md5-cache/dev-python/pmw-1.3.3 @@ -10,5 +10,5 @@ RDEPEND=!dev-python/pmw:0 python_targets_python2_5? ( dev-lang/python:2.5[tk] ) RESTRICT=test SLOT=py2 SRC_URI=mirror://sourceforge/pmw/Pmw.1.3.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8d88173cf9c8e3eceb1a038a98e87e00 diff --git a/metadata/md5-cache/dev-python/pmw-2.0.0 b/metadata/md5-cache/dev-python/pmw-2.0.0 index ab641dc706ec..c14c563d2a7c 100644 --- a/metadata/md5-cache/dev-python/pmw-2.0.0 +++ b/metadata/md5-cache/dev-python/pmw-2.0.0 @@ -10,5 +10,5 @@ RDEPEND=!dev-python/pmw:0 python_targets_python3_1? ( dev-lang/python:3.1[tk] ) RESTRICT=test SLOT=py3 SRC_URI=mirror://sourceforge/pmw/Pmw.2.0.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7a80cf781492c06f27aff8717b65c20a diff --git a/metadata/md5-cache/dev-python/prettytable-0.6-r1 b/metadata/md5-cache/dev-python/prettytable-0.6-r1 index 23a920d94b5d..116c175ec1e6 100644 --- a/metadata/md5-cache/dev-python/prettytable-0.6-r1 +++ b/metadata/md5-cache/dev-python/prettytable-0.6-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools 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 ) 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(-)] SLOT=0 SRC_URI=https://prettytable.googlecode.com/files/prettytable-0.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=20d8c144f860e3ae4b584d60810a4e15 diff --git a/metadata/md5-cache/dev-python/prettytable-0.7.1 b/metadata/md5-cache/dev-python/prettytable-0.7.1 index e14983949529..c5d59773bc20 100644 --- a/metadata/md5-cache/dev-python/prettytable-0.7.1 +++ b/metadata/md5-cache/dev-python/prettytable-0.7.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=https://prettytable.googlecode.com/files/prettytable-0.7.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=229bab1511c42b1d81b935c2582c52db diff --git a/metadata/md5-cache/dev-python/progressbar-2.3-r1 b/metadata/md5-cache/dev-python/progressbar-2.3-r1 index 53f18de15c99..8b47bc176afa 100644 --- a/metadata/md5-cache/dev-python/progressbar-2.3-r1 +++ b/metadata/md5-cache/dev-python/progressbar-2.3-r1 @@ -9,5 +9,5 @@ LICENSE=|| ( LGPL-2.1 BSD ) RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://python-progressbar.googlecode.com/files/progressbar-2.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b013e800e0f1f5c4629ad2dcddd65f15 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 3fa8b95bcc96..8c275667cf88 100644 --- a/metadata/md5-cache/dev-python/pry-0.2.1-r1 +++ b/metadata/md5-cache/dev-python/pry-0.2.1-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=!dev-ruby/pry python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/p/pry/pry-0.2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=855bbc97147e3e063e5bf6085cebfb09 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 680d409e8206..2d4c88231bb9 100644 --- a/metadata/md5-cache/dev-python/psycopg-2.4.6-r1 +++ b/metadata/md5-cache/dev-python/psycopg-2.4.6-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-db/postgresql-base-8.1 python_targets_python2_5? ( dev-lang/python RESTRICT=test SLOT=2 SRC_URI=mirror://pypi/p/psycopg2/psycopg2-2.4.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7f1047ac2bf35f1df1bab0eb88b1e1ba 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 0fb91efaf32a..adfd76d0ad74 100644 --- a/metadata/md5-cache/dev-python/psycopg-2.4.6-r2 +++ b/metadata/md5-cache/dev-python/psycopg-2.4.6-r2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-db/postgresql-base-8.1 python_targets_python2_5? ( dev-lang/python RESTRICT=test SLOT=2 SRC_URI=mirror://pypi/p/psycopg2/psycopg2-2.4.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=df224685aedb0848aad152968145dfbf diff --git a/metadata/md5-cache/dev-python/psycopg-2.5 b/metadata/md5-cache/dev-python/psycopg-2.5 index 3e9751d91314..9a18d3bcc5c6 100644 --- a/metadata/md5-cache/dev-python/psycopg-2.5 +++ b/metadata/md5-cache/dev-python/psycopg-2.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-db/postgresql-base-8.1 python_targets_python2_5? ( dev-lang/python RESTRICT=test SLOT=2 SRC_URI=mirror://pypi/p/psycopg2/psycopg2-2.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2109a7ae2b1d65abed44e28e69012db7 diff --git a/metadata/md5-cache/dev-python/pudb-2012.3-r1 b/metadata/md5-cache/dev-python/pudb-2012.3-r1 index a36008916190..a14e5ff4a6a3 100644 --- a/metadata/md5-cache/dev-python/pudb-2012.3-r1 +++ b/metadata/md5-cache/dev-python/pudb-2012.3-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/urwid dev-python/pygments python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/p/pudb/pudb-2012.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fd8a8f6d76f8903225dde64ebe071d7f diff --git a/metadata/md5-cache/dev-python/pudb-2013.1 b/metadata/md5-cache/dev-python/pudb-2013.1 index 561e127e56d6..e1f6639f7b6d 100644 --- a/metadata/md5-cache/dev-python/pudb-2013.1 +++ b/metadata/md5-cache/dev-python/pudb-2013.1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/urwid[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] dev-python/pygments[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/p/pudb/pudb-2013.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=437e6b1d12fd0210a429af58e4496aae 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 7958e448479e..b2a688f47a27 100644 --- a/metadata/md5-cache/dev-python/py-1.4.12-r1 +++ b/metadata/md5-cache/dev-python/py-1.4.12-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/py/py-1.4.12.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=09aff903e1d256f46786d443e7522d91 diff --git a/metadata/md5-cache/dev-python/py-1.4.13 b/metadata/md5-cache/dev-python/py-1.4.13 index a5ed592d16c0..ca46e546a77e 100644 --- a/metadata/md5-cache/dev-python/py-1.4.13 +++ b/metadata/md5-cache/dev-python/py-1.4.13 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/py/py-1.4.13.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f941ef1b282e0dfd60c45e3ad6d956fb diff --git a/metadata/md5-cache/dev-python/py-amqp-1.0.6-r1 b/metadata/md5-cache/dev-python/py-amqp-1.0.6-r1 index 4c8e111e1451..bf5c30b2e389 100644 --- a/metadata/md5-cache/dev-python/py-amqp-1.0.6-r1 +++ b/metadata/md5-cache/dev-python/py-amqp-1.0.6-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/amqp/amqp-1.0.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=07ba5e4fc03088325b5cf59794414ea6 diff --git a/metadata/md5-cache/dev-python/py-amqp-1.0.8 b/metadata/md5-cache/dev-python/py-amqp-1.0.8 index 0020239fca82..f161ece0e6d7 100644 --- a/metadata/md5-cache/dev-python/py-amqp-1.0.8 +++ b/metadata/md5-cache/dev-python/py-amqp-1.0.8 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/amqp/amqp-1.0.8.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e031e1619522242f5ee02f1f8cf8f221 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 5401e30945c4..93618d5a788d 100644 --- a/metadata/md5-cache/dev-python/py-amqp-1.0.9 +++ b/metadata/md5-cache/dev-python/py-amqp-1.0.9 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/a/amqp/amqp-1.0.9.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d6e0ee7615949f422e3fda5bcc7b45af 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 431145b37835..7888a33c0424 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 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=app-crypt/gnupg-1.2.1-r1 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://sourceforge/py-gnupg/GnuPGInterface-0.3.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6847e8d0da8af5bb4d0c3d95ef43e221 diff --git a/metadata/md5-cache/dev-python/pyGPG-9999 b/metadata/md5-cache/dev-python/pyGPG-9999 index a2a6dbf3402a..31fb4fa3f420 100644 --- a/metadata/md5-cache/dev-python/pyGPG-9999 +++ b/metadata/md5-cache/dev-python/pyGPG-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 LICENSE=BSD RDEPEND=>=app-crypt/gnupg-2.0.0 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7e95b1ff2e440431dafbcfd27767cb27 diff --git a/metadata/md5-cache/dev-python/pyamg-2.0.5 b/metadata/md5-cache/dev-python/pyamg-2.0.5 index e287c0b30d6a..55e9315568d8 100644 --- a/metadata/md5-cache/dev-python/pyamg-2.0.5 +++ b/metadata/md5-cache/dev-python/pyamg-2.0.5 @@ -10,5 +10,5 @@ RDEPEND=sci-libs/scipy[python_targets_python2_5(-)?,python_targets_python2_6(-)? RESTRICT=test SLOT=0 SRC_URI=http://pyamg.googlecode.com/files/pyamg-2.0.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b5224f8909e510c56fe0ccafd0214cbf diff --git a/metadata/md5-cache/dev-python/pyasn1-0.1.6 b/metadata/md5-cache/dev-python/pyasn1-0.1.6 index f444f1e511f1..d0fb5c9a8c0b 100644 --- a/metadata/md5-cache/dev-python/pyasn1-0.1.6 +++ b/metadata/md5-cache/dev-python/pyasn1-0.1.6 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pyasn1/pyasn1-0.1.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5a9139fc5eae2d5e23c88f72ee0ca342 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 a1acbf4fe695..33d401149cc4 100644 --- a/metadata/md5-cache/dev-python/pybloomfiltermmap-0.3.11-r1 +++ b/metadata/md5-cache/dev-python/pybloomfiltermmap-0.3.11-r1 @@ -4,10 +4,10 @@ DESCRIPTION=A Bloom filter (bloomfilter) for Python built on mmap EAPI=5 HOMEPAGE=http://pypi.python.org/pypi/pybloomfiltermmap IUSE=python_targets_python2_6 python_targets_python2_7 -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=MIT RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/p/pybloomfiltermmap/pybloomfiltermmap-0.3.11.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=556da1fa21d9373af8aae646e029dab0 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=cbce4b344948a47f936b89638f89ae41 diff --git a/metadata/md5-cache/dev-python/pycparser-2.09.1 b/metadata/md5-cache/dev-python/pycparser-2.09.1 index 516d82c93752..cc0441758a6a 100644 --- a/metadata/md5-cache/dev-python/pycparser-2.09.1 +++ b/metadata/md5-cache/dev-python/pycparser-2.09.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/ply[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=a0fb23d081c17897f9081589d391339b diff --git a/metadata/md5-cache/dev-python/pycrypto-2.6-r2 b/metadata/md5-cache/dev-python/pycrypto-2.6-r2 index 8cc4ccddb3df..91da7078c7cf 100644 --- a/metadata/md5-cache/dev-python/pycrypto-2.6-r2 +++ b/metadata/md5-cache/dev-python/pycrypto-2.6-r2 @@ -9,5 +9,5 @@ LICENSE=PSF-2 public-domain RDEPEND=gmp? ( dev-libs/gmp ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2473aad5f3af80aad8c09f198b14cdbf diff --git a/metadata/md5-cache/dev-python/pycryptopp-0.6.0 b/metadata/md5-cache/dev-python/pycryptopp-0.6.0 index 056e3a125c4f..60d464ba00d8 100644 --- a/metadata/md5-cache/dev-python/pycryptopp-0.6.0 +++ b/metadata/md5-cache/dev-python/pycryptopp-0.6.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/crypto++ python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/p/pycryptopp/pycryptopp-0.6.0.1206569328141510525648634803928199668821045408958.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=5307cdd648efa7e28193d2cc737a9072 diff --git a/metadata/md5-cache/dev-python/pycuda-2012.1 b/metadata/md5-cache/dev-python/pycuda-2012.1 index 7dcd18631076..895e6120dc76 100644 --- a/metadata/md5-cache/dev-python/pycuda-2012.1 +++ b/metadata/md5-cache/dev-python/pycuda-2012.1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/boost[python] dev-python/decorator dev-python/mako dev-python/n RESTRICT=userpriv SLOT=0 SRC_URI=mirror://pypi/p/pycuda/pycuda-2012.1.tar.gz -_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=56cf38f8962f211aed16262656ee8f67 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 fe8ea0b62edf..ec87daf44880 100644 --- a/metadata/md5-cache/dev-python/pycurl-7.19.0-r2 +++ b/metadata/md5-cache/dev-python/pycurl-7.19.0-r2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=net-misc/curl-7.25.0-r1[ssl=] ssl? ( net-misc/curl[curl_ssl_gnutls=,curl_ssl_nss=,curl_ssl_openssl=,-curl_ssl_axtls,-curl_ssl_cyassl,-curl_ssl_polarssl] curl_ssl_gnutls? ( >=net-libs/gnutls-2.11.0 ) ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://pycurl.sourceforge.net/download/pycurl-7.19.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0e5773507f89b40794c6829869e74b4c 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 02d89e4b7718..4a069dc7d6db 100644 --- a/metadata/md5-cache/dev-python/pycurl-7.19.0-r3 +++ b/metadata/md5-cache/dev-python/pycurl-7.19.0-r3 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=net-misc/curl-7.25.0-r1[ssl=] ssl? ( net-misc/curl[curl_ssl_gnutls=,curl_ssl_nss=,curl_ssl_openssl=,-curl_ssl_axtls,-curl_ssl_cyassl,-curl_ssl_polarssl] curl_ssl_gnutls? ( >=net-libs/gnutls-2.11.0 ) ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://pycurl.sourceforge.net/download/pycurl-7.19.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=83450a337b7a04fca90bb9a2d85eeff1 diff --git a/metadata/md5-cache/dev-python/pyelftools-0.20-r2 b/metadata/md5-cache/dev-python/pyelftools-0.20-r2 index ad95e53c8be7..75dfe265d52e 100644 --- a/metadata/md5-cache/dev-python/pyelftools-0.20-r2 +++ b/metadata/md5-cache/dev-python/pyelftools-0.20-r2 @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/p/pyelftools/pyelftools-0.20.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e0b6115f579e81d96e9ec59d7ba5f73a diff --git a/metadata/md5-cache/dev-python/pyev-0.8.1 b/metadata/md5-cache/dev-python/pyev-0.8.1 index 8181ed5e3ee3..a911c09cf70f 100644 --- a/metadata/md5-cache/dev-python/pyev-0.8.1 +++ b/metadata/md5-cache/dev-python/pyev-0.8.1 @@ -9,5 +9,5 @@ LICENSE=|| ( BSD GPL-2 ) RDEPEND=dev-libs/libev dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/p/pyev/pyev-0.8.1-4.04.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5292fa20917798b61470120ae5e0495d 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 22e6d38eb7d7..7e494768b9b0 100644 --- a/metadata/md5-cache/dev-python/pyfltk-1.3.0-r1 +++ b/metadata/md5-cache/dev-python/pyfltk-1.3.0-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=>=x11-libs/fltk-1.3.0:1[opengl] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/pyfltk/pyFltk-1.3.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1539bd5ac40383b0a47646d30b1cd572 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 74365f0ac5f8..ca784cbcf630 100644 --- a/metadata/md5-cache/dev-python/pyftpdlib-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/pyftpdlib-1.0.1-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=ssl? ( dev-python/pyopenssl ) python_targets_python2_5? ( dev-lang/python:2.5[ssl] ) python_targets_python2_6? ( dev-lang/python:2.6[ssl] ) python_targets_python2_7? ( dev-lang/python:2.7[ssl] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[ssl] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://pyftpdlib.googlecode.com/files/pyftpdlib-1.0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=41c82f6707cf3434c8f01e267e5dff90 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 48236c1eb6a8..c11357c5c137 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 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/numpy[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] >=media-libs/sdl-image-1.2.2[png,jpeg] >=media-libs/sdl-mixer-1.2.4 >=media-libs/sdl-ttf-2.0.6 >=media-libs/smpeg-0.4.4-r1 X? ( >=media-libs/libsdl-1.2.5[X,video] ) !X? ( >=media-libs/libsdl-1.2.5 ) python_targets_python2_5? ( dev-lang/python:2.5 ) 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 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://people.apache.org/~Arfrever/gentoo/pygame-1.9.2_pre20120101.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=794c9f0d35753b7dfc3742cf31d7bc9f 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 07e2cac605df..1a1b045ec18c 100644 --- a/metadata/md5-cache/dev-python/pygit2-0.17.3-r1 +++ b/metadata/md5-cache/dev-python/pygit2-0.17.3-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2-with-linking-exception RDEPEND==dev-libs/libgit2-0.17* python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=https://github.com/libgit2/pygit2/tarball/v0.17.3 -> pygit2-0.17.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=69959e926e2b77f0de868764dec97189 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 8ae72295c7af..5bfe906dea20 100644 --- a/metadata/md5-cache/dev-python/pyglet-1.1.4-r2 +++ b/metadata/md5-cache/dev-python/pyglet-1.1.4-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=virtual/opengl alsa? ( media-libs/alsa-lib[alisp] ) gtk? ( x11-libs/gtk+:2 ) openal? ( media-libs/openal ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://pyglet.googlecode.com/files/pyglet-1.1.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a17e6eb9803c204d97ad0412e7dbf31d diff --git a/metadata/md5-cache/dev-python/pygments-1.5-r1 b/metadata/md5-cache/dev-python/pygments-1.5-r1 index f3c096d7cd5f..cf739afd34fb 100644 --- a/metadata/md5-cache/dev-python/pygments-1.5-r1 +++ b/metadata/md5-cache/dev-python/pygments-1.5-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/P/Pygments/Pygments-1.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e7d5f5eb593dbd5627e2db514f183e40 diff --git a/metadata/md5-cache/dev-python/pygments-1.6 b/metadata/md5-cache/dev-python/pygments-1.6 index b7a01fd5a290..ad3c4bff1019 100644 --- a/metadata/md5-cache/dev-python/pygments-1.6 +++ b/metadata/md5-cache/dev-python/pygments-1.6 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/P/Pygments/Pygments-1.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0e451ac2aaee47ab8e54ee543769e809 diff --git a/metadata/md5-cache/dev-python/pygobject-2.28.6-r53 b/metadata/md5-cache/dev-python/pygobject-2.28.6-r53 index ffc1d71988e8..bd0fe3785942 100644 --- a/metadata/md5-cache/dev-python/pygobject-2.28.6-r53 +++ b/metadata/md5-cache/dev-python/pygobject-2.28.6-r53 @@ -4,10 +4,10 @@ DESCRIPTION=GLib's GObject library bindings for Python EAPI=5 HOMEPAGE=http://www.pygtk.org/ IUSE=examples libffi test python_targets_python2_6 python_targets_python2_7 test -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.24.0:2 libffi? ( virtual/libffi:= ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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/glib-2.8:2 >=x11-libs/pango-1.16 >=dev-libs/atk-1.12 >=x11-libs/gtk+-2.24:2 >=dev-python/pycairo-1.0.2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/pygobject-2.26.8-r53:2[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(-)] >=gnome-base/libglade-2.5:2.0 SLOT=2 SRC_URI=mirror://gnome/sources/pygtk/2.24/pygtk-2.24.0.tar.bz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=bd1d92ad1afc4a019148fe3adc257c07 +_md5_=53281d9a2ae189a91a29d3e8db1a6d37 diff --git a/metadata/md5-cache/dev-python/pyh2o-9999 b/metadata/md5-cache/dev-python/pyh2o-9999 index c10564c9192f..c8ed4c36c941 100644 --- a/metadata/md5-cache/dev-python/pyh2o-9999 +++ b/metadata/md5-cache/dev-python/pyh2o-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1c3417c882238683d73dfcc27e68fb27 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 56b2070562f3..24ad4698fe88 100644 --- a/metadata/md5-cache/dev-python/pyinotify-0.9.4-r1 +++ b/metadata/md5-cache/dev-python/pyinotify-0.9.4-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-0.9.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=30a96f924780669109debf150b25294c 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 cbc6c92536d2..84ada08f059f 100644 --- a/metadata/md5-cache/dev-python/pyliblzma-0.5.3-r1 +++ b/metadata/md5-cache/dev-python/pyliblzma-0.5.3-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=app-arch/xz-utils python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/p/pyliblzma/pyliblzma-0.5.3.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 4865f6793e7d..f9bcb42c6257 100644 --- a/metadata/md5-cache/dev-python/pylibmc-1.2.3 +++ b/metadata/md5-cache/dev-python/pylibmc-1.2.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-libs/libmemcached-0.32 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pylibmc/pylibmc-1.2.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4cd7f853a5004b84d69ca051255763f9 diff --git a/metadata/md5-cache/dev-python/pylint-0.27.0-r1 b/metadata/md5-cache/dev-python/pylint-0.27.0-r1 index 735df7b1092a..7ed2a05cc652 100644 --- a/metadata/md5-cache/dev-python/pylint-0.27.0-r1 +++ b/metadata/md5-cache/dev-python/pylint-0.27.0-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-python/logilab-common-0.53.0 >=dev-python/astng-0.21.1 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=ftp://ftp.logilab.org/pub/pylint/pylint-0.27.0.tar.gz mirror://pypi/p/pylint/pylint-0.27.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=46b03be0ee71779e6e08785fd28913f6 diff --git a/metadata/md5-cache/dev-python/pymongo-2.4.2-r1 b/metadata/md5-cache/dev-python/pymongo-2.4.2-r1 index e64be9820086..7551d16d04e5 100644 --- a/metadata/md5-cache/dev-python/pymongo-2.4.2-r1 +++ b/metadata/md5-cache/dev-python/pymongo-2.4.2-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-db/mongodb python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pymongo/pymongo-2.4.2.tar.gz -_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3d0c150ed5d0084e431d4825b2c92feb diff --git a/metadata/md5-cache/dev-python/pymongo-2.5 b/metadata/md5-cache/dev-python/pymongo-2.5 index 21e06ea158ec..4094efaa37ee 100644 --- a/metadata/md5-cache/dev-python/pymongo-2.5 +++ b/metadata/md5-cache/dev-python/pymongo-2.5 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-db/mongodb python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pymongo/pymongo-2.5.tar.gz -_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c6cbd4bdd60c999892fad98140e24c4d diff --git a/metadata/md5-cache/dev-python/pymountboot-0.2.1 b/metadata/md5-cache/dev-python/pymountboot-0.2.1 index 3409aa9e2ccd..3e6a8bef4591 100644 --- a/metadata/md5-cache/dev-python/pymountboot-0.2.1 +++ b/metadata/md5-cache/dev-python/pymountboot-0.2.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=sys-apps/util-linux-2.20 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/pymountboot/downloads/pymountboot-0.2.1.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4a6faae29e4f8a3a8c4b36f2bc09491a diff --git a/metadata/md5-cache/dev-python/pymountboot-0.2.2 b/metadata/md5-cache/dev-python/pymountboot-0.2.2 index d47a5d4fa7c1..b50dc55367ab 100644 --- a/metadata/md5-cache/dev-python/pymountboot-0.2.2 +++ b/metadata/md5-cache/dev-python/pymountboot-0.2.2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=sys-apps/util-linux-2.20 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://bitbucket/mgorny/pymountboot/downloads/pymountboot-0.2.2.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4f79650f02b85a289bf7bcddb7d072a8 diff --git a/metadata/md5-cache/dev-python/pymountboot-9999 b/metadata/md5-cache/dev-python/pymountboot-9999 index f439fb96d17a..48ef94b340c3 100644 --- a/metadata/md5-cache/dev-python/pymountboot-9999 +++ b/metadata/md5-cache/dev-python/pymountboot-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 LICENSE=BSD RDEPEND=>=sys-apps/util-linux-2.20 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bda7802189cd6259045c00d66f91b53a 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 ea74d142649f..bff26aab03c5 100644 --- a/metadata/md5-cache/dev-python/pynzb-0.1.0-r1 +++ b/metadata/md5-cache/dev-python/pynzb-0.1.0-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pynzb/pynzb-0.1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2363cecd5cab166171655c6017295a66 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 45cd55eb3508..f40fd08819c8 100644 --- a/metadata/md5-cache/dev-python/pyopengl-3.0.2-r1 +++ b/metadata/md5-cache/dev-python/pyopengl-3.0.2-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=media-libs/freeglut virtual/opengl x11-libs/libXi x11-libs/libXmu tk? ( dev-tcltk/togl ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) 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://pypi/P/PyOpenGL/PyOpenGL-3.0.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=61d6f4efa450b80e2f71fd4791db113e diff --git a/metadata/md5-cache/dev-python/pyopenssl-0.13-r1 b/metadata/md5-cache/dev-python/pyopenssl-0.13-r1 index d43da41f7208..ef487e68440a 100644 --- a/metadata/md5-cache/dev-python/pyopenssl-0.13-r1 +++ b/metadata/md5-cache/dev-python/pyopenssl-0.13-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/openssl-0.9.6g python_targets_python2_5? ( dev-lang/python:2. REQUIRED_USE=doc? ( || ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 ) ) SLOT=0 SRC_URI=mirror://pypi/p/pyOpenSSL/pyOpenSSL-0.13.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cab3ba606d1a3e1b43e2717748d9526f 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 ec895ffc698d..2319d37bcf37 100644 --- a/metadata/md5-cache/dev-python/pypam-0.5.0-r2 +++ b/metadata/md5-cache/dev-python/pypam-0.5.0-r2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=sys-libs/pam-0.64 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://www.pangalactic.org/PyPAM/PyPAM-0.5.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=691f0f1660aab3eeefa01f33f2c24c22 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 12cf2d19de43..74c9ca5f0c9f 100644 --- a/metadata/md5-cache/dev-python/pyparsing-1.5.6-r2 +++ b/metadata/md5-cache/dev-python/pyparsing-1.5.6-r2 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://sourceforge/pyparsing/pyparsing-1.5.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eb19df301cb9e1b60855b232681598b8 diff --git a/metadata/md5-cache/dev-python/pyparsing-1.5.7 b/metadata/md5-cache/dev-python/pyparsing-1.5.7 index fcdff842c321..d35972be0745 100644 --- a/metadata/md5-cache/dev-python/pyparsing-1.5.7 +++ b/metadata/md5-cache/dev-python/pyparsing-1.5.7 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=!dev-python/pyparsing:0 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=py2 SRC_URI=mirror://sourceforge/pyparsing/pyparsing-1.5.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c343532d65c09843395399946624eba4 diff --git a/metadata/md5-cache/dev-python/pyparsing-2.0.0 b/metadata/md5-cache/dev-python/pyparsing-2.0.0 index f4b0d826f487..3a309a2d6051 100644 --- a/metadata/md5-cache/dev-python/pyparsing-2.0.0 +++ b/metadata/md5-cache/dev-python/pyparsing-2.0.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=!dev-python/pyparsing:0 python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=py3 SRC_URI=mirror://sourceforge/pyparsing/pyparsing-2.0.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d00307d8ed431e4decb0027cd6a878c5 diff --git a/metadata/md5-cache/dev-python/pypax-0.8.1 b/metadata/md5-cache/dev-python/pypax-0.8.1 index deb925285009..0f0548946c1e 100644 --- a/metadata/md5-cache/dev-python/pypax-0.8.1 +++ b/metadata/md5-cache/dev-python/pypax-0.8.1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2 REQUIRED_USE=|| ( ptpax xtpax ) SLOT=0 SRC_URI=http://dev.gentoo.org/~blueness/elfix/elfix-0.8.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f10221b2c28353de0973d072866bf721 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 223ecc401274..328af1ebd587 100644 --- a/metadata/md5-cache/dev-python/pypax-0.8.1-r1 +++ b/metadata/md5-cache/dev-python/pypax-0.8.1-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Python module to get or set either PT_PAX and/or XATTR_PAX flags EAPI=5 HOMEPAGE=http://dev.gentoo.org/~blueness/elfix/ http://www.gentoo.org/proj/en/hardened/pax-quickstart.xml IUSE=+ptpax +xtpax python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_python3_3 python_targets_pypy1_9 python_targets_pypy2_0 -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86 LICENSE=GPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] REQUIRED_USE=|| ( ptpax xtpax ) SLOT=0 SRC_URI=http://dev.gentoo.org/~blueness/elfix/elfix-0.8.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=232db37ed0a3332de7f1b372e55d9486 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=c43d62d7a83eb51a56f266283e569101 diff --git a/metadata/md5-cache/dev-python/pyprotocols-1.0_pre2306-r1 b/metadata/md5-cache/dev-python/pyprotocols-1.0_pre2306-r1 new file mode 100644 index 000000000000..cf729c7e7e46 --- /dev/null +++ b/metadata/md5-cache/dev-python/pyprotocols-1.0_pre2306-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/decoratortools-1.4[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/pyrex-0.9.9[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +DESCRIPTION=Extends the PEP 246 adapt function with a new 'declaration API' +EAPI=5 +HOMEPAGE=http://peak.telecommunity.com/PyProtocols.html http://pypi.python.org/pypi/PyProtocols http://svn.eby-sarna.com/PyProtocols/ +IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~amd64 ~ia64 ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos +LICENSE=|| ( PSF-2 ZPL ) +RDEPEND=>=dev-python/decoratortools-1.4[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +SLOT=0 +SRC_URI=mirror://gentoo/PyProtocols-1.0a0dev_r2306.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=4ab35c2cde55b22f1cf3158bfd80cd82 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 1221cb4a3c9a..06e337460f88 100644 --- a/metadata/md5-cache/dev-python/pyquery-1.2.1-r1 +++ b/metadata/md5-cache/dev-python/pyquery-1.2.1-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-python/lxml-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(-)] dev-python/cssselect[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/webob-1.2_rc1[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 ) 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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/p/pyquery/pyquery-1.2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 4cffad4a4cd1..ccc744e26768 100644 --- a/metadata/md5-cache/dev-python/pyquery-1.2.4 +++ b/metadata/md5-cache/dev-python/pyquery-1.2.4 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-python/lxml-2.1[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(-)] dev-python/cssselect[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(-)] >=dev-python/webob-1.2_rc1[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(-)] 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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/p/pyquery/pyquery-1.2.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6d63e059f7d4d04c5dabe7335d6b493c diff --git a/metadata/md5-cache/dev-python/pyrax-1.3.2 b/metadata/md5-cache/dev-python/pyrax-1.3.2 index 8504f6087865..3aba70cc54fe 100644 --- a/metadata/md5-cache/dev-python/pyrax-1.3.2 +++ b/metadata/md5-cache/dev-python/pyrax-1.3.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/httplib2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/keyring[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/prettytable >=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(-)] dev-python/python-swiftclient[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rackspace-novaclient[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] 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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/p/pyrax/pyrax-1.3.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6af94c5b6816ebd84bb11734f67590cf diff --git a/metadata/md5-cache/dev-python/pyrax-1.3.5 b/metadata/md5-cache/dev-python/pyrax-1.3.5 index 4c7cd8f433d3..a8fc85f90f4b 100644 --- a/metadata/md5-cache/dev-python/pyrax-1.3.5 +++ b/metadata/md5-cache/dev-python/pyrax-1.3.5 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/httplib2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/keyring[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/prettytable >=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(-)] dev-python/python-swiftclient[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rackspace-novaclient[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] 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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/p/pyrax/pyrax-1.3.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=34228cb727fc36129c5871a2fc677eca diff --git a/metadata/md5-cache/dev-python/pyrax-1.3.6 b/metadata/md5-cache/dev-python/pyrax-1.3.6 index 1e5c443e9540..381796ed5571 100644 --- a/metadata/md5-cache/dev-python/pyrax-1.3.6 +++ b/metadata/md5-cache/dev-python/pyrax-1.3.6 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/httplib2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/keyring[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/prettytable >=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(-)] dev-python/python-swiftclient[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rackspace-novaclient[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] 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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/p/pyrax/pyrax-1.3.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=71ef44f97c68b273d9bc0df851dd2d3e diff --git a/metadata/md5-cache/dev-python/pyrax-9999 b/metadata/md5-cache/dev-python/pyrax-9999 index 247175e78545..20b040b994a4 100644 --- a/metadata/md5-cache/dev-python/pyrax-9999 +++ b/metadata/md5-cache/dev-python/pyrax-9999 @@ -7,5 +7,5 @@ IUSE=test python_targets_python2_6 python_targets_python2_7 LICENSE=Apache-2.0 RDEPEND=dev-python/httplib2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/keyring[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/prettytable >=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(-)] dev-python/python-swiftclient[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rackspace-novaclient[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] 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 ) python_targets_python2_7? ( dev-lang/python: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 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=85794d6f3fd8f2193671b0109642256c 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 b1ba4f7ff630..bf8cc9a103bc 100644 --- a/metadata/md5-cache/dev-python/pyrex-0.9.9-r1 +++ b/metadata/md5-cache/dev-python/pyrex-0.9.9-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a213cce4e40c4f741c5ae3579c0d7946 diff --git a/metadata/md5-cache/dev-python/pysctp-0.6 b/metadata/md5-cache/dev-python/pysctp-0.6 index 3b2209261baa..2573eb2898a0 100644 --- a/metadata/md5-cache/dev-python/pysctp-0.6 +++ b/metadata/md5-cache/dev-python/pysctp-0.6 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=net-misc/lksctp-tools python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=https://github.com/philpraxis/pysctp/archive/v0.6.tar.gz -> pysctp-0.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c812e239a5ed1653e931a0a79e4a5999 diff --git a/metadata/md5-cache/dev-python/pyserial-2.6-r1 b/metadata/md5-cache/dev-python/pyserial-2.6-r1 index 6dd7f0dcdc6d..ce4db66761f3 100644 --- a/metadata/md5-cache/dev-python/pyserial-2.6-r1 +++ b/metadata/md5-cache/dev-python/pyserial-2.6-r1 @@ -9,5 +9,5 @@ LICENSE=PSF-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://pypi/p/pyserial/pyserial-2.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=988dd3d9ae1de19bbefe4e2973d5d89c 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 4af7295780b8..fdbaa0e4f7de 100644 --- a/metadata/md5-cache/dev-python/pyspf-2.0.7-r1 +++ b/metadata/md5-cache/dev-python/pyspf-2.0.7-r1 @@ -9,5 +9,5 @@ LICENSE=PSF-2 RDEPEND=dev-python/authres[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] || ( dev-python/pydns:2 dev-python/pydns:0 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/p/pyspf/pyspf-2.0.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 97bf0b960398..e7c6ffa224be 100644 --- a/metadata/md5-cache/dev-python/pysvn-1.7.7 +++ b/metadata/md5-cache/dev-python/pysvn-1.7.7 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycxx-6.2.0 =dev-python/py-1.4.12[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://pypi/p/pytest/pytest-2.3.3.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=08e21245be9f163d600a2eca9d02f8e3 diff --git a/metadata/md5-cache/dev-python/pytest-2.3.4 b/metadata/md5-cache/dev-python/pytest-2.3.4 index 8216f751fcd9..41744b2aa3f9 100644 --- a/metadata/md5-cache/dev-python/pytest-2.3.4 +++ b/metadata/md5-cache/dev-python/pytest-2.3.4 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-python/py-1.4.12[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pytest/pytest-2.3.4.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f9f657e2757d6d6f23df30699871bc4d diff --git a/metadata/md5-cache/dev-python/pytest-cov-1.6 b/metadata/md5-cache/dev-python/pytest-cov-1.6 index 1527fca4a58e..0ed40a0a437a 100644 --- a/metadata/md5-cache/dev-python/pytest-cov-1.6 +++ b/metadata/md5-cache/dev-python/pytest-cov-1.6 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/pytest[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/cov-core[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 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python: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(-)] SLOT=0 SRC_URI=mirror://pypi/p/pytest-cov/pytest-cov-1.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 a087f8e8814b..19edff21199f 100644 --- a/metadata/md5-cache/dev-python/pytest-runner-1.1-r1 +++ b/metadata/md5-cache/dev-python/pytest-runner-1.1-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/pytest[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pytest-runner/pytest-runner-1.1.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bfc5ba8cfe8a09e2b4b7c156b78ee0ab diff --git a/metadata/md5-cache/dev-python/python-cinderclient-1.0.2 b/metadata/md5-cache/dev-python/python-cinderclient-1.0.2 index e83317aa3249..8bd851a7ab3c 100644 --- a/metadata/md5-cache/dev-python/python-cinderclient-1.0.2 +++ b/metadata/md5-cache/dev-python/python-cinderclient-1.0.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <=dev-python/prettytable-0.7 <=dev-python/requests-1.0 dev-python/simplejson[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/p/python-cinderclient/python-cinderclient-1.0.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=31b1fe9b22f306cfb02d4fd9468fdb3d 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 f0b8c1a7777e..d25e4ffc24d7 100644 --- a/metadata/md5-cache/dev-python/python-dateutil-2.1-r1 +++ b/metadata/md5-cache/dev-python/python-dateutil-2.1-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/six[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] sys-libs/timezone-data !=dev-python/pygtk-2.24.0 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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/pygtkmvc/python-gtkmvc-1.99.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=62ea76f892d1d181287b121d05eccb52 diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-0.2.2-r1 b/metadata/md5-cache/dev-python/python-keystoneclient-0.2.2-r1 index b2d4469fbc3f..afa533d383e9 100644 --- a/metadata/md5-cache/dev-python/python-keystoneclient-0.2.2-r1 +++ b/metadata/md5-cache/dev-python/python-keystoneclient-0.2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_py RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-keystoneclient/python-keystoneclient-0.2.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ac8a954431fa2f10190264c23e97c6bd diff --git a/metadata/md5-cache/dev-python/python-keystoneclient-9999 b/metadata/md5-cache/dev-python/python-keystoneclient-9999 index cee7bbe25189..9295cc24c86c 100644 --- a/metadata/md5-cache/dev-python/python-keystoneclient-9999 +++ b/metadata/md5-cache/dev-python/python-keystoneclient-9999 @@ -8,5 +8,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/iso8601[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/prettytable >=dev-python/requests-0.8.8 <=dev-python/requests-1.0 dev-python/simplejson[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 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] RESTRICT=test SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6879c642f0b36fe06f6bb82e22e33bd1 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 a3b97e891c57..21eeb444d5a4 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 @@ -9,5 +9,5 @@ LICENSE=PSF-2 RDEPEND=>=net-nds/openldap-2.4 dev-python/pyasn1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sasl? ( dev-libs/cyrus-sasl ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/p/python-ldap/python-ldap-2.4.10.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=79f838a20b278b2c5b7d766e3a07b125 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 2a42efb45335..e8cff2a6e946 100644 --- a/metadata/md5-cache/dev-python/python-mhash-1.4-r1 +++ b/metadata/md5-cache/dev-python/python-mhash-1.4-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=app-crypt/mhash python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/mhash/python-mhash-1.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bdaf59207819b3602e92b235a84c9eec 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 476f8620467f..5c0542041e07 100644 --- a/metadata/md5-cache/dev-python/python-mpd-0.4.6 +++ b/metadata/md5-cache/dev-python/python-mpd-0.4.6 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=0703f19ae8571528703d3e7caf94a4ea 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 a2d4bb123b3e..697a8d0a5737 100644 --- a/metadata/md5-cache/dev-python/python-mpd-0.5.1 +++ b/metadata/md5-cache/dev-python/python-mpd-0.5.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=8cf1cf692eda1063fe992fc665af9928 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 aa7647dd9698..678dc689c22f 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 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=media-libs/libdiscid python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://ftp.musicbrainz.org/pub/musicbrainz/python-musicbrainz2/python-musicbrainz2-0.7.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5d81d85f823105df3d09fe2cb4f6698e diff --git a/metadata/md5-cache/dev-python/python-novaclient-2.10.0-r1 b/metadata/md5-cache/dev-python/python-novaclient-2.10.0-r1 index b69b2085f275..7fcea34de1aa 100644 --- a/metadata/md5-cache/dev-python/python-novaclient-2.10.0-r1 +++ b/metadata/md5-cache/dev-python/python-novaclient-2.10.0-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=virtual/python-argparse[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/httplib2 dev-python/prettytable dev-python/simplejson[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/p/python-novaclient/python-novaclient-2.10.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cc358621488866e91e5d1af338f954fc 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 ce9fe7cca7fe..25fe133c39da 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 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_5(-)?,python_targets_pyth RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-novaclient/python-novaclient-2.11.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ccb1685a67385ecf46f9de9b07121623 diff --git a/metadata/md5-cache/dev-python/python-novaclient-2.13.0 b/metadata/md5-cache/dev-python/python-novaclient-2.13.0 index 11385a6a6337..df72ff352571 100644 --- a/metadata/md5-cache/dev-python/python-novaclient-2.13.0 +++ b/metadata/md5-cache/dev-python/python-novaclient-2.13.0 @@ -10,5 +10,5 @@ RDEPEND=virtual/python-argparse[python_targets_python2_5(-)?,python_targets_pyth RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/p/python-novaclient/python-novaclient-2.13.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8e77095a6217ebf0b2b65857e39030f6 diff --git a/metadata/md5-cache/dev-python/python-novaclient-9999 b/metadata/md5-cache/dev-python/python-novaclient-9999 index 1d1f9a16bae0..2961d1a22d98 100644 --- a/metadata/md5-cache/dev-python/python-novaclient-9999 +++ b/metadata/md5-cache/dev-python/python-novaclient-9999 @@ -7,5 +7,5 @@ IUSE=test python_targets_python2_5 python_targets_python2_6 python_targets_pytho LICENSE=Apache-2.0 RDEPEND=virtual/python-argparse[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/httplib2 dev-python/prettytable dev-python/simplejson[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b283afbcd04ad75f7e6ba42577bb21b7 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 cba6a37ace4a..42682dc59078 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 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=mysql? ( >=dev-python/mysql-python-1.2.2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) postgres? ( dev-python/psycopg[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5[sqlite?] ) python_targets_python2_6? ( dev-lang/python:2.6[sqlite?] ) python_targets_python2_7? ( dev-lang/python:2.7[sqlite?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://gentoo/python-openid-2.2.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b5b42a8d1f6efda8f8d511c4105b0cd5 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 558271681dd4..c07aae3bac09 100644 --- a/metadata/md5-cache/dev-python/python-pam-0.1.4 +++ b/metadata/md5-cache/dev-python/python-pam-0.1.4 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/p/pam/pam-0.1.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e76f3d1eb22e08b4480b3e29081c6a3c 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 283427c90db1..006be39f1f57 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 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=app-text/poppler:=[qt4] dev-python/PyQt4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/sip-4.9.1[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 ) python_targets_python2_7? ( dev-lang/python: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=http://python-poppler-qt4.googlecode.com/files/python-poppler-qt4-0.16.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7138172def76b44e622fa51d9444d84b diff --git a/metadata/md5-cache/dev-python/python-quantumclient-2.1 b/metadata/md5-cache/dev-python/python-quantumclient-2.1 index fd02da377d89..c48a62eb20d2 100644 --- a/metadata/md5-cache/dev-python/python-quantumclient-2.1 +++ b/metadata/md5-cache/dev-python/python-quantumclient-2.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/cliff-1.2.1 dev-python/httplib2 >=dev-python/prettytable-0.6 dev-python/simplejson dev-python/pyparsing python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/p/python-quantumclient/python-quantumclient-2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b0865a3d42b8b687e7ec832ccd18cf7f diff --git a/metadata/md5-cache/dev-python/python-quantumclient-2.2.0 b/metadata/md5-cache/dev-python/python-quantumclient-2.2.0 index 75a1d8cd2190..0f57a3d781d5 100644 --- a/metadata/md5-cache/dev-python/python-quantumclient-2.2.0 +++ b/metadata/md5-cache/dev-python/python-quantumclient-2.2.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/cliff-1.3.1 dev-python/httplib2 dev-python/iso8601 >=dev-python/prettytable-0.6 =dev-python/pyparsing-1.5.6 =sys-libs/timezone-data-2012h python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://pypi/p/pytz/pytz-2012h.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fda12cdaa6a67e5df14003f0268a59d2 diff --git a/metadata/md5-cache/dev-python/pytz-2012j b/metadata/md5-cache/dev-python/pytz-2012j index 071285dfeed0..5657826751cc 100644 --- a/metadata/md5-cache/dev-python/pytz-2012j +++ b/metadata/md5-cache/dev-python/pytz-2012j @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=sys-libs/timezone-data-2012j python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pytz/pytz-2012j.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5c052294e68e4a8b70eb6d35b2002799 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 af698987eaf3..d993f5821a7f 100644 --- a/metadata/md5-cache/dev-python/pyx-0.12.1-r1 +++ b/metadata/md5-cache/dev-python/pyx-0.12.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=virtual/tex-base python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://sourceforge/pyx/PyX-0.12.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=509fef495f6cf21a15506f547bf06e7f 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 a225828bfdf8..cdef7d3e5d39 100644 --- a/metadata/md5-cache/dev-python/pyxattr-0.5.0-r1 +++ b/metadata/md5-cache/dev-python/pyxattr-0.5.0-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=sys-apps/attr python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-)] SLOT=0 SRC_URI=mirror://sourceforge/pyxattr/pyxattr-0.5.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=51e3a4c07e3a2047241b908d1e32acbb diff --git a/metadata/md5-cache/dev-python/pyxattr-0.5.1 b/metadata/md5-cache/dev-python/pyxattr-0.5.1 index 2ddcc2706050..0915020b1231 100644 --- a/metadata/md5-cache/dev-python/pyxattr-0.5.1 +++ b/metadata/md5-cache/dev-python/pyxattr-0.5.1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=sys-apps/attr python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/p/pyxattr/pyxattr-0.5.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=01c2e99b3747f63d9725526c23c58b58 diff --git a/metadata/md5-cache/dev-python/pyxattr-0.5.2 b/metadata/md5-cache/dev-python/pyxattr-0.5.2 index c423fefda7c9..dc41dd082242 100644 --- a/metadata/md5-cache/dev-python/pyxattr-0.5.2 +++ b/metadata/md5-cache/dev-python/pyxattr-0.5.2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=sys-apps/attr python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=da543dfb54e9c44ec13a990eefcce019 diff --git a/metadata/md5-cache/dev-python/pyxattr-9999 b/metadata/md5-cache/dev-python/pyxattr-9999 index 521b235d40c4..e1003fd5a42f 100644 --- a/metadata/md5-cache/dev-python/pyxattr-9999 +++ b/metadata/md5-cache/dev-python/pyxattr-9999 @@ -7,5 +7,5 @@ IUSE=test python_targets_python2_5 python_targets_python2_6 python_targets_pytho LICENSE=LGPL-2.1 RDEPEND=sys-apps/attr python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=63fae865359d15f6a6665714e7711c01 diff --git a/metadata/md5-cache/dev-python/pyxdg-0.25 b/metadata/md5-cache/dev-python/pyxdg-0.25 index e4b2a2c3f1a5..1eec5a5f6220 100644 --- a/metadata/md5-cache/dev-python/pyxdg-0.25 +++ b/metadata/md5-cache/dev-python/pyxdg-0.25 @@ -9,5 +9,5 @@ LICENSE=LGPL-2 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=http://people.freedesktop.org/~takluyver/pyxdg-0.25.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e4bad0fba87a96bdf281a1ade40aa3a7 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 d05a678da843..e82e338a9df6 100644 --- a/metadata/md5-cache/dev-python/pyxml-0.8.4-r3 +++ b/metadata/md5-cache/dev-python/pyxml-0.8.4-r3 @@ -9,5 +9,5 @@ LICENSE=BSD CNRI MIT PSF-2 public-domain RDEPEND=>=dev-libs/expat-1.95.6 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/pyxml/PyXML-0.8.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=80d8e95c64e5d0ed1432e014f0091058 diff --git a/metadata/md5-cache/dev-python/pyyaml-3.10-r1 b/metadata/md5-cache/dev-python/pyyaml-3.10-r1 index b4d4e6ff1f35..b313c731e105 100644 --- a/metadata/md5-cache/dev-python/pyyaml-3.10-r1 +++ b/metadata/md5-cache/dev-python/pyyaml-3.10-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=libyaml? ( dev-libs/libyaml ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://pyyaml.org/download/pyyaml/PyYAML-3.10.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fa7a40482fc28c19e791ade4beb80908 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 480998720e85..e52382e75ebf 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 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=>=net-libs/zeromq-2.1.9 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/p/pyzmq/pyzmq-2.2.0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=53a9fa3dda4478d09a56b6f791b308f6 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 6ed832fb3022..2f3687c37c85 100644 --- a/metadata/md5-cache/dev-python/rackspace-auth-openstack-1.0 +++ b/metadata/md5-cache/dev-python/rackspace-auth-openstack-1.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/r/rackspace-auth-openstack/rackspace-auth-openstack-1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2bee7972655443f39f35da8d942fb7c2 diff --git a/metadata/md5-cache/dev-python/rackspace-auth-openstack-9999 b/metadata/md5-cache/dev-python/rackspace-auth-openstack-9999 index e11ba62593b3..08db39e060d7 100644 --- a/metadata/md5-cache/dev-python/rackspace-auth-openstack-9999 +++ b/metadata/md5-cache/dev-python/rackspace-auth-openstack-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 LICENSE=Apache-2.0 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9223ec68c66760d9378764ee4bd9b315 diff --git a/metadata/md5-cache/dev-python/rackspace-novaclient-1.2 b/metadata/md5-cache/dev-python/rackspace-novaclient-1.2 index 041e07c97c5e..e48e3fe5c4a1 100644 --- a/metadata/md5-cache/dev-python/rackspace-novaclient-1.2 +++ b/metadata/md5-cache/dev-python/rackspace-novaclient-1.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/python-novaclient[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rackspace-auth-openstack[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/os-diskconfig-python-novaclient-ext[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rax-backup-schedule-python-novaclient-ext[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/os-networksv2-python-novaclient-ext[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rax-default-network-flags-python-novaclient-ext[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/r/rackspace-novaclient/rackspace-novaclient-1.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=988dcbdb846e80617628edffb6dafb60 diff --git a/metadata/md5-cache/dev-python/rackspace-novaclient-9999 b/metadata/md5-cache/dev-python/rackspace-novaclient-9999 index 78f2730ca7f2..681ca9c4023c 100644 --- a/metadata/md5-cache/dev-python/rackspace-novaclient-9999 +++ b/metadata/md5-cache/dev-python/rackspace-novaclient-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 LICENSE=Apache-2.0 RDEPEND=dev-python/python-novaclient[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rackspace-auth-openstack[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/os-diskconfig-python-novaclient-ext[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rax-backup-schedule-python-novaclient-ext[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/os-networksv2-python-novaclient-ext[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/rax-default-network-flags-python-novaclient-ext[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3ba21718d60ea40ea1cdb251b3ce5bdd 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 04569ee693a3..9e5da7e6dc12 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 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=44370a076d6ad666f9f3b13f22639e5c 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 756430b9c820..04fb1e5e2559 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 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=497b2edf7dfa6edcf95639b14557f8cc 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 f801e5dcf807..3360e99e45f2 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 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f617f64fd6d01d2ca0bb6cd498c08a87 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 7af07034b72d..9e2071d78a5a 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 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 LICENSE=Apache-2.0 RDEPEND=>=dev-python/python-novaclient-2.10.0[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3dad145231f7ca5bf4980fcb9687869e 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 fbd17a4b1e08..2c4e50140468 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 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0f789d4846afda7902c1b8b06e95b26e diff --git a/metadata/md5-cache/dev-python/reportlab-2.6 b/metadata/md5-cache/dev-python/reportlab-2.6 index 21463002914d..cccd75a015b5 100644 --- a/metadata/md5-cache/dev-python/reportlab-2.6 +++ b/metadata/md5-cache/dev-python/reportlab-2.6 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/imaging media-fonts/ttf-bitstream-vera media-libs/libart_lgpl sys-libs/zlib python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3122e39f616ffca655409ff0f2fae785 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 7ca41d7c40a1..9f74a7eff4f6 100644 --- a/metadata/md5-cache/dev-python/repoze-lru-0.6-r1 +++ b/metadata/md5-cache/dev-python/repoze-lru-0.6-r1 @@ -9,5 +9,5 @@ LICENSE=repoze RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/r/repoze.lru/repoze.lru-0.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ed0f1453477265523b41bc00e31dfb9b 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 84bc7159d17c..ef9c57f4ee55 100644 --- a/metadata/md5-cache/dev-python/requests-0.14.2-r1 +++ b/metadata/md5-cache/dev-python/requests-0.14.2-r1 @@ -10,5 +10,5 @@ RDEPEND=app-misc/ca-certificates dev-python/chardet[python_targets_python2_6(-)? RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/r/requests/requests-0.14.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b341f12afe4d5b419e3316b733f0ef9a diff --git a/metadata/md5-cache/dev-python/requests-1.0.4 b/metadata/md5-cache/dev-python/requests-1.0.4 index 372830e73afe..4aa11d2e9a60 100644 --- a/metadata/md5-cache/dev-python/requests-1.0.4 +++ b/metadata/md5-cache/dev-python/requests-1.0.4 @@ -10,5 +10,5 @@ RDEPEND=app-misc/ca-certificates dev-python/charade[python_targets_python2_6(-)? RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/r/requests/requests-1.0.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c595efdac15eb9856787142c60d8a76b diff --git a/metadata/md5-cache/dev-python/requests-1.1.0 b/metadata/md5-cache/dev-python/requests-1.1.0 index 697efdfca2bd..54ac3f237ad7 100644 --- a/metadata/md5-cache/dev-python/requests-1.1.0 +++ b/metadata/md5-cache/dev-python/requests-1.1.0 @@ -10,5 +10,5 @@ RDEPEND=app-misc/ca-certificates dev-python/charade[python_targets_python2_6(-)? RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/r/requests/requests-1.1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=87a6f3a340cf9c8c7c0c34086b52ab56 diff --git a/metadata/md5-cache/dev-python/requests-1.2.0 b/metadata/md5-cache/dev-python/requests-1.2.0 index 4f5f869e7f17..01de56ef6554 100644 --- a/metadata/md5-cache/dev-python/requests-1.2.0 +++ b/metadata/md5-cache/dev-python/requests-1.2.0 @@ -10,5 +10,5 @@ RDEPEND=app-misc/ca-certificates dev-python/charade[python_targets_python2_6(-)? RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/r/requests/requests-1.2.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c41b4bebd0f38c9958b025b342f91565 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 c215bf538c0c..f0aaae446c40 100644 --- a/metadata/md5-cache/dev-python/requests-cache-0.3.0 +++ b/metadata/md5-cache/dev-python/requests-cache-0.3.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-python/requests-1.1.0 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/r/requests-cache/requests-cache-0.3.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a303dc032bd2c1726fc60850c960f0e1 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 b82969ee1333..d0bf92406fe4 100644 --- a/metadata/md5-cache/dev-python/restkit-4.2.1-r1 +++ b/metadata/md5-cache/dev-python/restkit-4.2.1-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=cli? ( dev-python/ipython dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] ) dev-python/webob >=dev-python/socketpool-0.5.0 >=dev-python/http-parser-0.7.7 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/r/restkit/restkit-4.2.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0942c9c398e7c2c21161fd7b61a4f7b7 diff --git a/metadata/md5-cache/dev-python/robotframework-2.7.6 b/metadata/md5-cache/dev-python/robotframework-2.7.6 index d2a559ccf63c..14f391f83549 100644 --- a/metadata/md5-cache/dev-python/robotframework-2.7.6 +++ b/metadata/md5-cache/dev-python/robotframework-2.7.6 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://robotframework.googlecode.com/files/robotframework-2.7.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 6e68a1c6f15f..7daae5b6ee08 100644 --- a/metadata/md5-cache/dev-python/robotframework-2.7.7 +++ b/metadata/md5-cache/dev-python/robotframework-2.7.7 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://robotframework.googlecode.com/files/robotframework-2.7.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=65436419f200a46c3e79fe66f6f63a17 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 6c7b203dd6c2..1cdeeb2405f3 100644 --- a/metadata/md5-cache/dev-python/robotframework-selenium2library-1.1.0 +++ b/metadata/md5-cache/dev-python/robotframework-selenium2library-1.1.0 @@ -9,5 +9,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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/r/robotframework-selenium2library/robotframework-selenium2library-1.1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2730c7defdd912eab2e321430f034549 diff --git a/metadata/md5-cache/dev-python/robotframework-selenium2library-9999 b/metadata/md5-cache/dev-python/robotframework-selenium2library-9999 index 6e787a5065ab..4af4bac45b04 100644 --- a/metadata/md5-cache/dev-python/robotframework-selenium2library-9999 +++ b/metadata/md5-cache/dev-python/robotframework-selenium2library-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 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 ) python_targets_python2_7? ( dev-lang/python: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 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=36ecba2d1a6569392ee2e83b4d92ae59 diff --git a/metadata/md5-cache/dev-python/robotframework-sshlibrary-1.1 b/metadata/md5-cache/dev-python/robotframework-sshlibrary-1.1 index 4123b2ed38b2..4963371e7f74 100644 --- a/metadata/md5-cache/dev-python/robotframework-sshlibrary-1.1 +++ b/metadata/md5-cache/dev-python/robotframework-sshlibrary-1.1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/paramiko[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/robotframework[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 ) python_targets_python2_7? ( dev-lang/python: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=http://robotframework-sshlibrary.googlecode.com/files/robotframework-sshlibrary-1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=76e4b1312e4e21c0e31fdd8504e036d1 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 29dfa3785b2b..bf09619fb11a 100644 --- a/metadata/md5-cache/dev-python/routes-1.12.3-r1 +++ b/metadata/md5-cache/dev-python/routes-1.12.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/R/Routes/Routes-1.12.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=018607c302e89cdbb4ac6f3f162c113d diff --git a/metadata/md5-cache/dev-python/routes-1.13-r1 b/metadata/md5-cache/dev-python/routes-1.13-r1 index dc63130e4b69..d0e6a16381b4 100644 --- a/metadata/md5-cache/dev-python/routes-1.13-r1 +++ b/metadata/md5-cache/dev-python/routes-1.13-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/webob[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/repoze-lru[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/R/Routes/Routes-1.13.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fdb54a6c2e945be21cad8efa858ad139 diff --git a/metadata/md5-cache/dev-python/rpy-2.3.2 b/metadata/md5-cache/dev-python/rpy-2.3.2 index f4b7f162613f..a0a45f611de9 100644 --- a/metadata/md5-cache/dev-python/rpy-2.3.2 +++ b/metadata/md5-cache/dev-python/rpy-2.3.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 MPL-1.1 RDEPEND=>=dev-lang/R-2.8 dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !<=dev-python/rpy-1.0.2-r2 python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/r/rpy2/rpy2-2.3.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0bc2ebde8d99c714492d3f4a4b1690ee diff --git a/metadata/md5-cache/dev-python/rpy-2.3.3 b/metadata/md5-cache/dev-python/rpy-2.3.3 index 1fd027faadfc..57c2b40bc95a 100644 --- a/metadata/md5-cache/dev-python/rpy-2.3.3 +++ b/metadata/md5-cache/dev-python/rpy-2.3.3 @@ -9,5 +9,5 @@ LICENSE=AGPL-3 GPL-2 LGPL-2.1 MPL-1.1 RDEPEND=>=dev-lang/R-2.8 dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !<=dev-python/rpy-1.0.2-r2 python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/r/rpy2/rpy2-2.3.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f010536d69378c018f62bcf230fff949 diff --git a/metadata/md5-cache/dev-python/rpy-2.3.4 b/metadata/md5-cache/dev-python/rpy-2.3.4 index 8ee2ef260024..7a8f78751c3b 100644 --- a/metadata/md5-cache/dev-python/rpy-2.3.4 +++ b/metadata/md5-cache/dev-python/rpy-2.3.4 @@ -9,5 +9,5 @@ LICENSE=AGPL-3 GPL-2 LGPL-2.1 MPL-1.1 RDEPEND=>=dev-lang/R-2.8 dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] !<=dev-python/rpy-1.0.2-r2 python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/r/rpy2/rpy2-2.3.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0acb1c292cb60933eb0c88dd3020a900 diff --git a/metadata/md5-cache/dev-python/rst2pdf-0.93-r1 b/metadata/md5-cache/dev-python/rst2pdf-0.93-r1 index 803dfbd6950b..05a131720d67 100644 --- a/metadata/md5-cache/dev-python/rst2pdf-0.93-r1 +++ b/metadata/md5-cache/dev-python/rst2pdf-0.93-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/docutils[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/imaging[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pdfrw[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/reportlab-2.4[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://rst2pdf.googlecode.com/files/rst2pdf-0.93.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cab674ec8c33dbb2b6b3e24833bf679b diff --git a/metadata/md5-cache/dev-python/ruledispatch-0.5_pre2306-r2 b/metadata/md5-cache/dev-python/ruledispatch-0.5_pre2306-r2 new file mode 100644 index 000000000000..330bbf2c16a2 --- /dev/null +++ b/metadata/md5-cache/dev-python/ruledispatch-0.5_pre2306-r2 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/pyprotocols-1.0_pre2306[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +DESCRIPTION=Rule-based Dispatching and Generic Functions +EAPI=5 +HOMEPAGE=http://peak.telecommunity.com/ +IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=|| ( PSF-2.4 ZPL ) +RDEPEND=>=dev-python/pyprotocols-1.0_pre2306[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +SLOT=0 +SRC_URI=mirror://gentoo/RuleDispatch-0.5a0.dev-r2306.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=3bd2bd85b78318a665e754b2b040d7ad diff --git a/metadata/md5-cache/dev-python/selenium-2.29.0 b/metadata/md5-cache/dev-python/selenium-2.29.0 index 66bd04212e2e..112822fef69f 100644 --- a/metadata/md5-cache/dev-python/selenium-2.29.0 +++ b/metadata/md5-cache/dev-python/selenium-2.29.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/s/selenium/selenium-2.29.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b53a4643fa87294c2658a4ec2cb53118 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 e068b7d7f481..f5415af877ee 100644 --- a/metadata/md5-cache/dev-python/setproctitle-1.1.6-r1 +++ b/metadata/md5-cache/dev-python/setproctitle-1.1.6-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/s/setproctitle/setproctitle-1.1.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d42d202f6e10c86e9ad37d8b13853808 diff --git a/metadata/md5-cache/dev-python/setproctitle-1.1.7 b/metadata/md5-cache/dev-python/setproctitle-1.1.7 index 802eab040bc1..60def9444dba 100644 --- a/metadata/md5-cache/dev-python/setproctitle-1.1.7 +++ b/metadata/md5-cache/dev-python/setproctitle-1.1.7 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/s/setproctitle/setproctitle-1.1.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fb01c4d4ff69264a657e757b9efb03fb 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 cefbd917245f..144236e5d78a 100644 --- a/metadata/md5-cache/dev-python/setuptools-0.6.30-r1 +++ b/metadata/md5-cache/dev-python/setuptools-0.6.30-r1 @@ -9,5 +9,5 @@ LICENSE=PSF-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/d/distribute/distribute-0.6.30.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=21254da7e18b58788edcd4db8a25debb diff --git a/metadata/md5-cache/dev-python/setuptools-0.6.32 b/metadata/md5-cache/dev-python/setuptools-0.6.32 index 2c8c68969f3c..89e474fbf2f6 100644 --- a/metadata/md5-cache/dev-python/setuptools-0.6.32 +++ b/metadata/md5-cache/dev-python/setuptools-0.6.32 @@ -9,5 +9,5 @@ LICENSE=PSF-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/d/distribute/distribute-0.6.32.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7a1178a2b5f438b044b8e42c681b8005 diff --git a/metadata/md5-cache/dev-python/setuptools-0.6.33 b/metadata/md5-cache/dev-python/setuptools-0.6.33 index 645b9b424a84..fb74298c623d 100644 --- a/metadata/md5-cache/dev-python/setuptools-0.6.33 +++ b/metadata/md5-cache/dev-python/setuptools-0.6.33 @@ -9,5 +9,5 @@ LICENSE=PSF-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/d/distribute/distribute-0.6.33.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=263b297123ac9daf1d9544c4e8646aeb diff --git a/metadata/md5-cache/dev-python/setuptools-9999 b/metadata/md5-cache/dev-python/setuptools-9999 index 4006c7d8dc31..e22b6968ec3b 100644 --- a/metadata/md5-cache/dev-python/setuptools-9999 +++ b/metadata/md5-cache/dev-python/setuptools-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 LICENSE=PSF-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 mercurial 7e8c2c49cfd90701e20a78850f066802 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 mercurial 7e8c2c49cfd90701e20a78850f066802 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=af12d5a74b1f55998459feb39840bbcf 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 09e3f4d7d6c7..92f204e3a5e7 100644 --- a/metadata/md5-cache/dev-python/setuptools-git-1.0_beta1 +++ b/metadata/md5-cache/dev-python/setuptools-git-1.0_beta1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://pypi/s/setuptools-git/setuptools-git-1.0b1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=96bb287d9d45fe5d065901cf63d5e2d7 diff --git a/metadata/md5-cache/dev-python/sh-1.07 b/metadata/md5-cache/dev-python/sh-1.07 index 87e41c9e3183..fed632a6130e 100644 --- a/metadata/md5-cache/dev-python/sh-1.07 +++ b/metadata/md5-cache/dev-python/sh-1.07 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=https://github.com/amoffat/sh/archive/1.07.tar.gz -> sh-1.07.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f725e2c2fa1620130793c06f31f57ce9 diff --git a/metadata/md5-cache/dev-python/sh-1.08 b/metadata/md5-cache/dev-python/sh-1.08 index 6977f7218911..3bbc686f96d6 100644 --- a/metadata/md5-cache/dev-python/sh-1.08 +++ b/metadata/md5-cache/dev-python/sh-1.08 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=https://github.com/amoffat/sh/archive/1.08.tar.gz -> sh-1.08.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5858bbf3be6d6f3a93551c58739d7419 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 4ea1c2e14c7a..a5bebca7eb82 100644 --- a/metadata/md5-cache/dev-python/simplegeneric-0.8.1-r1 +++ b/metadata/md5-cache/dev-python/simplegeneric-0.8.1-r1 @@ -9,5 +9,5 @@ LICENSE=ZPL RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://pypi/s/simplegeneric/simplegeneric-0.8.1.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ec650a0175992f3fcc95553fe62bf328 diff --git a/metadata/md5-cache/dev-python/simplejson-3.0.4-r1 b/metadata/md5-cache/dev-python/simplejson-3.0.4-r1 index 811259896afa..058af9386b89 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.0.4-r1 +++ b/metadata/md5-cache/dev-python/simplejson-3.0.4-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.0.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dc6a3cbda2f1f2b9f6dc0a2a5029671f diff --git a/metadata/md5-cache/dev-python/simplejson-3.0.5 b/metadata/md5-cache/dev-python/simplejson-3.0.5 index 4c460d758508..3deb7ba78daf 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.0.5 +++ b/metadata/md5-cache/dev-python/simplejson-3.0.5 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.0.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d5afab09afa6b79142a161bc6c741831 diff --git a/metadata/md5-cache/dev-python/simplejson-3.0.7 b/metadata/md5-cache/dev-python/simplejson-3.0.7 index 7264abb43b24..8b0efc162952 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.0.7 +++ b/metadata/md5-cache/dev-python/simplejson-3.0.7 @@ -9,5 +9,5 @@ LICENSE=|| ( MIT AFL-2.1 ) RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.0.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=06a1398132bcac4824b9848cd103674d diff --git a/metadata/md5-cache/dev-python/simplejson-3.1.0 b/metadata/md5-cache/dev-python/simplejson-3.1.0 index d9395628ff6d..b49e176ba8bb 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.1.0 +++ b/metadata/md5-cache/dev-python/simplejson-3.1.0 @@ -9,5 +9,5 @@ LICENSE=|| ( MIT AFL-2.1 ) RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1c570ae88b336a6ce0ec1cd0bce5d8b9 diff --git a/metadata/md5-cache/dev-python/simplejson-3.1.2 b/metadata/md5-cache/dev-python/simplejson-3.1.2 index 10e4d77b73c2..10b9998f02d0 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.1.2 +++ b/metadata/md5-cache/dev-python/simplejson-3.1.2 @@ -9,5 +9,5 @@ LICENSE=|| ( MIT AFL-2.1 ) RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.1.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1c0557a78623529547c774efdddbc9ea diff --git a/metadata/md5-cache/dev-python/simplejson-3.1.3 b/metadata/md5-cache/dev-python/simplejson-3.1.3 index aafccee298d5..0c060ca8955d 100644 --- a/metadata/md5-cache/dev-python/simplejson-3.1.3 +++ b/metadata/md5-cache/dev-python/simplejson-3.1.3 @@ -9,5 +9,5 @@ LICENSE=|| ( MIT AFL-2.1 ) RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/simplejson/simplejson-3.1.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=73a0c99d17f014cfa380d91aa5c4cd08 diff --git a/metadata/md5-cache/dev-python/simples3-1.0 b/metadata/md5-cache/dev-python/simples3-1.0 index 903ff2a86579..e31d30332dfa 100644 --- a/metadata/md5-cache/dev-python/simples3-1.0 +++ b/metadata/md5-cache/dev-python/simples3-1.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/simples3/simples3-1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3ffaa1ded004583e82b355a057ee300b 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 495279ac6033..a4c5b698714c 100644 --- a/metadata/md5-cache/dev-python/six-1.2.0-r1 +++ b/metadata/md5-cache/dev-python/six-1.2.0-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/six/six-1.2.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d2665e57b62f52c2e00147d2d3c588a5 diff --git a/metadata/md5-cache/dev-python/six-1.3.0 b/metadata/md5-cache/dev-python/six-1.3.0 index 186ee0de6003..d4e2bf50ec6a 100644 --- a/metadata/md5-cache/dev-python/six-1.3.0 +++ b/metadata/md5-cache/dev-python/six-1.3.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/six/six-1.3.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1b152705fa54b4b5e4aa2c374067550a diff --git a/metadata/md5-cache/dev-python/six-9999 b/metadata/md5-cache/dev-python/six-9999 index 8a1d8c677e86..771d60c6950b 100644 --- a/metadata/md5-cache/dev-python/six-9999 +++ b/metadata/md5-cache/dev-python/six-9999 @@ -7,5 +7,5 @@ IUSE=doc test python_targets_python2_5 python_targets_python2_6 python_targets_p LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 mercurial 7e8c2c49cfd90701e20a78850f066802 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 mercurial 7e8c2c49cfd90701e20a78850f066802 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=84053d43b5582f7823a2f63691894bbb 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 3a99b4a93e51..435c834cefcd 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 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=net-im/skype python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/S/Skype4Py/Skype4Py-1.0.32.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=535b7bab221bf72811111733ca5cac0f diff --git a/metadata/md5-cache/dev-python/skype4py-1.0.34 b/metadata/md5-cache/dev-python/skype4py-1.0.34 index bf67c4ff5236..7cb8352ec73d 100644 --- a/metadata/md5-cache/dev-python/skype4py-1.0.34 +++ b/metadata/md5-cache/dev-python/skype4py-1.0.34 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=net-im/skype || ( dev-python/dbus-python[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] x11-libs/libX11 ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8ecb14ee329198e0dc132de510293c53 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 ec7538b32f90..d7fe6d65dd09 100644 --- a/metadata/md5-cache/dev-python/soappy-0.12.5-r2 +++ b/metadata/md5-cache/dev-python/soappy-0.12.5-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/fpconst[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/wstools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ssl? ( dev-python/m2crypto[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5[ssl?,xml] ) python_targets_python2_6? ( dev-lang/python:2.6[ssl?,xml] ) python_targets_python2_7? ( dev-lang/python:2.7[ssl?,xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/S/SOAPpy/SOAPpy-0.12.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fc3e7b050a84972a2964f3e3e10f3754 diff --git a/metadata/md5-cache/dev-python/socketpool-0.5.2 b/metadata/md5-cache/dev-python/socketpool-0.5.2 index f9fa15f0501b..cf8f40fd04df 100644 --- a/metadata/md5-cache/dev-python/socketpool-0.5.2 +++ b/metadata/md5-cache/dev-python/socketpool-0.5.2 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/gevent python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/socketpool/socketpool-0.5.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e903ba71319fdafa0edfcb7850d8e950 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 ceeb31e5a422..af084c30fbbc 100644 --- a/metadata/md5-cache/dev-python/socketpool-0.5.2-r1 +++ b/metadata/md5-cache/dev-python/socketpool-0.5.2-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/gevent python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/s/socketpool/socketpool-0.5.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=51520c395b5b5ed8214d9d7c9327d4ed 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 98b9b163a93c..6be9ddcd011e 100644 --- a/metadata/md5-cache/dev-python/sphinx-1.1.3-r5 +++ b/metadata/md5-cache/dev-python/sphinx-1.1.3-r5 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-python/docutils-0.7[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/jinja-2.3[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/pygments-1.2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] latex? ( dev-texlive/texlive-latexextra app-text/dvipng ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/S/Sphinx/Sphinx-1.1.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a52da268393b0b5cf693d32bf04ed8ad 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 8333f211accf..189188f48f01 100644 --- a/metadata/md5-cache/dev-python/sphinx-1.1.3-r6 +++ b/metadata/md5-cache/dev-python/sphinx-1.1.3-r6 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=dev-python/docutils-0.7[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/jinja-2.3[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/pygments-1.2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] latex? ( dev-texlive/texlive-latexextra app-text/dvipng ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/S/Sphinx/Sphinx-1.1.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1bc33b5d7417756096303069686acde5 diff --git a/metadata/md5-cache/dev-python/sqlalchemy-0.7.10 b/metadata/md5-cache/dev-python/sqlalchemy-0.7.10 index 312d45d7c918..43e9c05a8156 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-0.7.10 +++ b/metadata/md5-cache/dev-python/sqlalchemy-0.7.10 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] firebird? ( dev-python/kinterbasdb ) mssql? ( dev-python/pymssql ) mysql? ( dev-python/mysql-python ) postgres? ( >=dev-python/psycopg-2 ) sqlite? ( >=dev-db/sqlite-3.3.13 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/S/SQLAlchemy/SQLAlchemy-0.7.10.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e157a49d300147e7e0fdff63083214ac diff --git a/metadata/md5-cache/dev-python/sqlalchemy-0.8.0 b/metadata/md5-cache/dev-python/sqlalchemy-0.8.0 index a134f793a6da..6f777b51f307 100644 --- a/metadata/md5-cache/dev-python/sqlalchemy-0.8.0 +++ b/metadata/md5-cache/dev-python/sqlalchemy-0.8.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] firebird? ( dev-python/kinterbasdb ) mssql? ( dev-python/pymssql ) mysql? ( dev-python/mysql-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) postgres? ( dev-python/psycopg:2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) sqlite? ( >=dev-db/sqlite-3.3.13 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/S/SQLAlchemy/SQLAlchemy-0.8.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=94f87fd1ed9887fb0d1baad3c98c2024 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 4469b99e039b..141bf7a19033 100644 --- a/metadata/md5-cache/dev-python/sudsds-1.0.1-r1 +++ b/metadata/md5-cache/dev-python/sudsds-1.0.1-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=353441787dec5d2612022378b1acbf60 diff --git a/metadata/md5-cache/dev-python/symboltype-1.0 b/metadata/md5-cache/dev-python/symboltype-1.0 new file mode 100644 index 000000000000..575c650b9f68 --- /dev/null +++ b/metadata/md5-cache/dev-python/symboltype-1.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=app-arch/unzip dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Gives access to the peak.util.symbols module +EAPI=5 +HOMEPAGE=http://peak.telecommunity.com/DevCenter/SymbolType http://pypi.python.org/pypi/SymbolType +IUSE=doc python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=ZPL +RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=mirror://pypi/S/SymbolType/SymbolType-1.0.zip -> symboltype-1.0.zip +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=6b5e2fb0a72a8948ac29a1ad360e64f7 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 d98cd6c04038..a925899f96e0 100644 --- a/metadata/md5-cache/dev-python/sympy-0.7.2-r1 +++ b/metadata/md5-cache/dev-python/sympy-0.7.2-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=mathml? ( dev-libs/libxml2:2[python] dev-libs/libxslt[python] gtk? ( x11-libs/gtkmathview[gtk] ) ) latex? ( virtual/latex-base dev-texlive/texlive-fontsextra png? ( app-text/dvipng ) pdf? ( app-text/ghostscript-gpl ) ) texmacs? ( app-office/texmacs ) ipython? ( dev-python/ipython[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(-)] ) opengl? ( dev-python/pyopengl[python_targets_python2_6?,python_targets_python2_7?] ) imaging? ( dev-python/imaging[python_targets_python2_6?,python_targets_python2_7?] ) pyglet? ( dev-python/pyglet[python_targets_python2_6?,python_targets_python2_7?] ) >=dev-python/pexpect-2.0[python_targets_python2_6?,python_targets_python2_7?] system-mpmath? ( ~dev-python/mpmath-0.17[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(-)] ) 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 ) 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(-)] 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 ) -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2daab2e16ba1ef5ac6f01429f568e601 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 b6ab38ec9d76..91ddb67c9a61 100644 --- a/metadata/md5-cache/dev-python/tempita-0.5.1-r1 +++ b/metadata/md5-cache/dev-python/tempita-0.5.1-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/T/Tempita/Tempita-0.5.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38c4920e234c9fdf866a7a04f8d031e4 diff --git a/metadata/md5-cache/dev-python/termcolor-1.1.0 b/metadata/md5-cache/dev-python/termcolor-1.1.0 index f868934c5be9..ac588e1eac13 100644 --- a/metadata/md5-cache/dev-python/termcolor-1.1.0 +++ b/metadata/md5-cache/dev-python/termcolor-1.1.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/t/termcolor/termcolor-1.1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ad6bf5b838c1b18a65f8ba1eabad753b diff --git a/metadata/md5-cache/dev-python/testfixtures-3.0.0 b/metadata/md5-cache/dev-python/testfixtures-3.0.0 index 538cfc564e5b..af5c3971417c 100644 --- a/metadata/md5-cache/dev-python/testfixtures-3.0.0 +++ b/metadata/md5-cache/dev-python/testfixtures-3.0.0 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/t/testfixtures/testfixtures-3.0.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8d1df364e39373f8b0ff31e8ff53f9e0 diff --git a/metadata/md5-cache/dev-python/testify-0.2.10 b/metadata/md5-cache/dev-python/testify-0.2.10 index 5425318dd705..1be21fa48ad3 100644 --- a/metadata/md5-cache/dev-python/testify-0.2.10 +++ b/metadata/md5-cache/dev-python/testify-0.2.10 @@ -10,5 +10,5 @@ RDEPEND=dev-python/pyyaml[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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=d0d52df7ba5a3c1e326045d16567039e 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 71523bb37af6..82002474bdd2 100644 --- a/metadata/md5-cache/dev-python/testtools-0.9.24-r1 +++ b/metadata/md5-cache/dev-python/testtools-0.9.24-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a2f8d92f4ae145c8d23994600ac490c1 diff --git a/metadata/md5-cache/dev-python/transmissionrpc-0.9 b/metadata/md5-cache/dev-python/transmissionrpc-0.9 index 5fa3c1b64514..80e893fc2c7e 100644 --- a/metadata/md5-cache/dev-python/transmissionrpc-0.9 +++ b/metadata/md5-cache/dev-python/transmissionrpc-0.9 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/t/transmissionrpc/transmissionrpc-0.9.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=577135db61bc9d7fb5e7dd0494b3cba5 diff --git a/metadata/md5-cache/dev-python/transmissionrpc-9999 b/metadata/md5-cache/dev-python/transmissionrpc-9999 index ed356e61b8b3..3c2689a0c8e0 100644 --- a/metadata/md5-cache/dev-python/transmissionrpc-9999 +++ b/metadata/md5-cache/dev-python/transmissionrpc-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 py LICENSE=MIT RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 mercurial 7e8c2c49cfd90701e20a78850f066802 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 mercurial 7e8c2c49cfd90701e20a78850f066802 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cef74092096ced4b7ca1c5bd19f954db diff --git a/metadata/md5-cache/dev-python/ttystatus-0.22 b/metadata/md5-cache/dev-python/ttystatus-0.22 index 38af01e6582a..18dffe033d82 100644 --- a/metadata/md5-cache/dev-python/ttystatus-0.22 +++ b/metadata/md5-cache/dev-python/ttystatus-0.22 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://code.liw.fi/debian/pool/main/p/python-ttystatus/python-ttystatus_0.22.orig.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a9f6d84d1b9f933503e3fe04a4f345aa diff --git a/metadata/md5-cache/dev-python/turbojson-1.3-r1 b/metadata/md5-cache/dev-python/turbojson-1.3-r1 new file mode 100644 index 000000000000..12a340a5a050 --- /dev/null +++ b/metadata/md5-cache/dev-python/turbojson-1.3-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=>=dev-python/decoratortools-1.4[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/ruledispatch-0.5_pre2306[python_targets_python2_5(-)?,-python_single_target_python2_5(-),python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/simplejson-2.6.2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/peak-rules-0.5[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] test? ( dev-python/nose[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] dev-python/sqlalchemy[python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/sqlobject >=dev-python/peak-rules-0.5[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=TurboGears JSON file format support plugin +EAPI=5 +HOMEPAGE=http://pypi.python.org/pypi/TurboJson +IUSE=test python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=MIT +RDEPEND=>=dev-python/decoratortools-1.4[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/ruledispatch-0.5_pre2306[python_targets_python2_5(-)?,-python_single_target_python2_5(-),python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/simplejson-2.6.2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] >=dev-python/peak-rules-0.5[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=mirror://pypi/T/TurboJson/TurboJson-1.3.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=0c778d45e825f0f1c37acd1ca9da6d24 diff --git a/metadata/md5-cache/dev-python/tweepy-2.0 b/metadata/md5-cache/dev-python/tweepy-2.0 index 7fb45b1f5644..68cf62468fcf 100644 --- a/metadata/md5-cache/dev-python/tweepy-2.0 +++ b/metadata/md5-cache/dev-python/tweepy-2.0 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=https://github.com/tweepy/tweepy/tarball/2.0 -> tweepy-2.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=4e606dcca5e64231b4343730d558adae diff --git a/metadata/md5-cache/dev-python/twill-0.9-r1 b/metadata/md5-cache/dev-python/twill-0.9-r1 index 050649806ed9..3c2c1a1c1b95 100644 --- a/metadata/md5-cache/dev-python/twill-0.9-r1 +++ b/metadata/md5-cache/dev-python/twill-0.9-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://darcs.idyll.org/~t/projects/twill-0.9.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3a6c91a9607d59ad1c7c945dfb467a8e diff --git a/metadata/md5-cache/dev-python/twitter-1.9.2-r1 b/metadata/md5-cache/dev-python/twitter-1.9.2-r1 new file mode 100644 index 000000000000..f708586b54c6 --- /dev/null +++ b/metadata/md5-cache/dev-python/twitter-1.9.2-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=An API and command-line toolset for Twitter (twitter.com) +EAPI=5 +HOMEPAGE=http://mike.verdone.ca/twitter/ +IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_pypy1_9 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=mirror://pypi/t/twitter/twitter-1.9.2.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=7feb3398c14c1301ad3e2dc4b2eeacf4 diff --git a/metadata/md5-cache/dev-python/txAMQP-0.6.2 b/metadata/md5-cache/dev-python/txAMQP-0.6.2 index 469ba0ce7773..7a0a4142d14f 100644 --- a/metadata/md5-cache/dev-python/txAMQP-0.6.2 +++ b/metadata/md5-cache/dev-python/txAMQP-0.6.2 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=dev-python/twisted python_targets_python2_5? ( dev-lang/python:2.5 ) 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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/t/txAMQP/txAMQP-0.6.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a379db91416afc2f1c7e8181aa12e3d5 diff --git a/metadata/md5-cache/dev-python/ujson-1.30-r1 b/metadata/md5-cache/dev-python/ujson-1.30-r1 new file mode 100644 index 000000000000..6044878330f2 --- /dev/null +++ b/metadata/md5-cache/dev-python/ujson-1.30-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=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(-)] app-arch/unzip 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 ) 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(-)] +DESCRIPTION=Ultra fast JSON encoder and decoder for Python +EAPI=5 +HOMEPAGE=http://pypi.python.org/pypi/ujson/ +IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_2 +KEYWORDS=~amd64 ~x86 +LICENSE=BSD +RDEPEND=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(-)] app-arch/unzip 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 ) 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(-)] +SLOT=0 +SRC_URI=mirror://pypi/u/ujson/ujson-1.30.zip +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=f6af189b864d70749bb8bfaa928d99bc diff --git a/metadata/md5-cache/dev-python/unidecode-0.04.9-r1 b/metadata/md5-cache/dev-python/unidecode-0.04.9-r1 new file mode 100644 index 000000000000..ce51cf555573 --- /dev/null +++ b/metadata/md5-cache/dev-python/unidecode-0.04.9-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy2_0(-)] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy2_0(-)] +DESCRIPTION=Module providing ASCII transliterations of Unicode text +EAPI=5 +HOMEPAGE=http://pypi.python.org/pypi/Unidecode +IUSE=python_targets_python2_6 python_targets_python2_7 python_targets_python3_1 python_targets_python3_2 python_targets_pypy2_0 +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy2_0(-)] +SLOT=0 +SRC_URI=mirror://pypi/U/Unidecode/Unidecode-0.04.9.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=20150e2e8a9a14ea6b6342683583f769 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 86251bc41dc3..b58c3067e35e 100644 --- a/metadata/md5-cache/dev-python/unittest2-0.5.1-r1 +++ b/metadata/md5-cache/dev-python/unittest2-0.5.1-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e2bbd768b59be96a9ab09f1cc0e462a4 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 8119bdeba079..3e57927cc938 100644 --- a/metadata/md5-cache/dev-python/urlgrabber-3.9.1-r2 +++ b/metadata/md5-cache/dev-python/urlgrabber-3.9.1-r2 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/pycurl[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://urlgrabber.baseurl.org/download/urlgrabber-3.9.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8167b42c23dc87d95c40b0f211a3f498 diff --git a/metadata/md5-cache/dev-python/urllib3-1.5-r1 b/metadata/md5-cache/dev-python/urllib3-1.5-r1 index b6748f1c83a2..a1db835cb0e0 100644 --- a/metadata/md5-cache/dev-python/urllib3-1.5-r1 +++ b/metadata/md5-cache/dev-python/urllib3-1.5-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/six[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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/u/urllib3/urllib3-1.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6f78e5de6015bcd32a5a8a64c22e1b54 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 ca565680c179..640ba4a6de58 100644 --- a/metadata/md5-cache/dev-python/urwid-1.1.1-r1 +++ b/metadata/md5-cache/dev-python/urwid-1.1.1-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[ncurses] ) python_targets_python2_6? ( dev-lang/python:2.6[ncurses] ) python_targets_python2_7? ( dev-lang/python:2.7[ncurses] ) python_targets_python3_1? ( dev-lang/python:3.1[ncurses] ) python_targets_python3_2? ( dev-lang/python:3.2[ncurses] ) python_targets_python3_3? ( dev-lang/python:3.3[ncurses] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=http://excess.org/urwid/urwid-1.1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=69862346d286fe7d24221f337ccaa57b diff --git a/metadata/md5-cache/dev-python/vatnumber-1.0-r1 b/metadata/md5-cache/dev-python/vatnumber-1.0-r1 index 792cc5b38f86..27e5f5c9ce56 100644 --- a/metadata/md5-cache/dev-python/vatnumber-1.0-r1 +++ b/metadata/md5-cache/dev-python/vatnumber-1.0-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=vies? ( dev-python/suds ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://vatnumber.googlecode.com/files/vatnumber-1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3d00468c9e7f42c0a6cc990045fb83ac 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 c5693ec01130..c36bb1af9c04 100644 --- a/metadata/md5-cache/dev-python/versiontools-1.9.1-r1 +++ b/metadata/md5-cache/dev-python/versiontools-1.9.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/v/versiontools/versiontools-1.9.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=13778a275f9f787517c0bf99b800e51d 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 b2374b5b30d4..5fc374f6b30f 100644 --- a/metadata/md5-cache/dev-python/virtualenv-1.9.1-r1 +++ b/metadata/md5-cache/dev-python/virtualenv-1.9.1-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=https://github.com/pypa/virtualenv/tarball/1.9.1 -> virtualenv-1.9.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=68583ac88ba6f6acad7c61a005f4bca7 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 7b9fc4bc3beb..1515bc1d4cff 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 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/v/virtualenv-clone/virtualenv-clone-0.2.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6859e749423151b60b3421a2a9de0087 diff --git a/metadata/md5-cache/dev-python/w3lib-1.2-r1 b/metadata/md5-cache/dev-python/w3lib-1.2-r1 index 7c832385750d..62f7322099ce 100644 --- a/metadata/md5-cache/dev-python/w3lib-1.2-r1 +++ b/metadata/md5-cache/dev-python/w3lib-1.2-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/w/w3lib/w3lib-1.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=60b0ceb37e40753430a21a841b8979e4 diff --git a/metadata/md5-cache/dev-python/waitress-0.8.2 b/metadata/md5-cache/dev-python/waitress-0.8.2 index d890b6c13158..6b1a65d92d72 100644 --- a/metadata/md5-cache/dev-python/waitress-0.8.2 +++ b/metadata/md5-cache/dev-python/waitress-0.8.2 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/w/waitress/waitress-0.8.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e90f4d6980e20039430c893929ddba55 diff --git a/metadata/md5-cache/dev-python/warlock-0.7.0 b/metadata/md5-cache/dev-python/warlock-0.7.0 index 5210023cd41e..d6da31d3a05c 100644 --- a/metadata/md5-cache/dev-python/warlock-0.7.0 +++ b/metadata/md5-cache/dev-python/warlock-0.7.0 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND==dev-python/jsonpatch-0.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/jsonschema[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/w/warlock/warlock-0.7.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0fcfd35d0175df817436bfc683808a9d 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 b349769be579..91b4a4da4b82 100644 --- a/metadata/md5-cache/dev-python/webob-1.0.8-r1 +++ b/metadata/md5-cache/dev-python/webob-1.0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2 RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebOb/WebOb-1.0.8.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 ea7b7afb6072..1d1cf45b993c 100644 --- a/metadata/md5-cache/dev-python/webob-1.2.3-r1 +++ b/metadata/md5-cache/dev-python/webob-1.2.3-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,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_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/W/WebOb/WebOb-1.2.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b26b722dd7e8ad8ec43d9f7a3253f3c1 diff --git a/metadata/md5-cache/dev-python/webpy-0.37-r1 b/metadata/md5-cache/dev-python/webpy-0.37-r1 index 0a823fa9a058..990496b7a349 100644 --- a/metadata/md5-cache/dev-python/webpy-0.37-r1 +++ b/metadata/md5-cache/dev-python/webpy-0.37-r1 @@ -9,5 +9,5 @@ LICENSE=public-domain RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://www.webpy.org/static/web.py-0.37.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a22e7665ee6cb9ba1b32865ec2bdb048 diff --git a/metadata/md5-cache/dev-python/websockify-0.4.1 b/metadata/md5-cache/dev-python/websockify-0.4.1 new file mode 100644 index 000000000000..0d60905d59e6 --- /dev/null +++ b/metadata/md5-cache/dev-python/websockify-0.4.1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-vcs/git +DESCRIPTION=WebSockets support for any application/server +EAPI=5 +HOMEPAGE=https://github.com/kanaka/websockify +IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-3 +RDEPEND=dev-python/numpy[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +SLOT=0 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=1b3511045c350b3137679a3086dcf17a 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 a7a7f65bcf27..b87f16c256fe 100644 --- a/metadata/md5-cache/dev-python/webtest-1.4.3-r1 +++ b/metadata/md5-cache/dev-python/webtest-1.4.3-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-python/webob-0.9.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(-)] 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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-1.4.3.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d505589ae483c9167a3eeab3385553d8 diff --git a/metadata/md5-cache/dev-python/webtest-2.0.1 b/metadata/md5-cache/dev-python/webtest-2.0.1 index 0728be2552c2..6676dfeb40b6 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.1 +++ b/metadata/md5-cache/dev-python/webtest-2.0.1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=dev-python/webob-0.9.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(-)] 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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.1.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 c6877f02ccd8..44369fa4e747 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.2 +++ b/metadata/md5-cache/dev-python/webtest-2.0.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/webob-0.9.2[python_targets_python2_6(-)?,python_targets_pyt RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.2.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 c855020c2c39..43ed079bb5b8 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.3 +++ b/metadata/md5-cache/dev-python/webtest-2.0.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/webob-0.9.2[python_targets_python2_6(-)?,python_targets_pyt RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.3.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 7e2509fd7cad..1c360ab75be2 100644 --- a/metadata/md5-cache/dev-python/webtest-2.0.4 +++ b/metadata/md5-cache/dev-python/webtest-2.0.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/webob-0.9.2[python_targets_python2_6(-)?,python_targets_pyt RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WebTest/WebTest-2.0.4.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e3ce5f390a6a772fa2b756d2b369a3da 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 2d9dd7dad627..6970f6717711 100644 --- a/metadata/md5-cache/dev-python/wehjit-0.2.2-r1 +++ b/metadata/md5-cache/dev-python/wehjit-0.2.2-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/genshi dev-python/assets[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pygments[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 ) python_targets_python2_7? ( dev-lang/python: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=http://jderose.fedorapeople.org/wehjit/0.2.2/wehjit-0.2.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bf29f8e9b040c3c5bb7ab5c49252e53d diff --git a/metadata/md5-cache/dev-python/werkzeug-0.8.3-r1 b/metadata/md5-cache/dev-python/werkzeug-0.8.3-r1 index 0b5056c1959d..8867fbbb004e 100644 --- a/metadata/md5-cache/dev-python/werkzeug-0.8.3-r1 +++ b/metadata/md5-cache/dev-python/werkzeug-0.8.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/simplejson python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/W/Werkzeug/Werkzeug-0.8.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ba31d207d23632b7f56053ef7e80491e 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 94e559cdeedd..7d8d9fc0789b 100644 --- a/metadata/md5-cache/dev-python/whisper-0.9.10-r1 +++ b/metadata/md5-cache/dev-python/whisper-0.9.10-r1 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/w/whisper/whisper-0.9.10.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d7d895067ffe40c4b9758e254216836a diff --git a/metadata/md5-cache/dev-python/whoosh-2.4.1-r1 b/metadata/md5-cache/dev-python/whoosh-2.4.1-r1 index b4dc74652506..483068bf8267 100644 --- a/metadata/md5-cache/dev-python/whoosh-2.4.1-r1 +++ b/metadata/md5-cache/dev-python/whoosh-2.4.1-r1 @@ -9,5 +9,5 @@ LICENSE=BSD-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/W/Whoosh/Whoosh-2.4.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=691a6b72b775e82cb2855ec7a3b50019 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 da0fec8f5533..c5ebce453139 100644 --- a/metadata/md5-cache/dev-python/workerpool-0.9.2-r1 +++ b/metadata/md5-cache/dev-python/workerpool-0.9.2-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/w/workerpool/workerpool-0.9.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=94ca5aec630c71d364305bbd6a21b6fd 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 6f2e52cd11b4..3fda08889665 100644 --- a/metadata/md5-cache/dev-python/ws4py-0.2.4-r1 +++ b/metadata/md5-cache/dev-python/ws4py-0.2.4-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6[threads?] ) python_targets_python2_7? ( dev-lang/python: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(-)] SLOT=0 SRC_URI=https://github.com/Lawouach/WebSocket-for-Python/tarball/v0.2.4 -> ws4py-0.2.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=da14c3f00b0d61385b357f4ae26416cc diff --git a/metadata/md5-cache/dev-python/wsgilog-0.3-r1 b/metadata/md5-cache/dev-python/wsgilog-0.3-r1 index a964b6fb14b9..39a73090081c 100644 --- a/metadata/md5-cache/dev-python/wsgilog-0.3-r1 +++ b/metadata/md5-cache/dev-python/wsgilog-0.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/w/wsgilog/wsgilog-0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9a22de1d8fe9e3067b4696367716efa6 diff --git a/metadata/md5-cache/dev-python/wsgiproxy2-0.1 b/metadata/md5-cache/dev-python/wsgiproxy2-0.1 index 614b33b3f642..4f177f964f99 100644 --- a/metadata/md5-cache/dev-python/wsgiproxy2-0.1 +++ b/metadata/md5-cache/dev-python/wsgiproxy2-0.1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/urllib3 dev-python/socketpool[python_targets_python2_6(-)?,py RESTRICT=test SLOT=0 SRC_URI=mirror://pypi/W/WSGIProxy2/WSGIProxy2-0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=da12084f9a54d80a0b83463f654c9621 diff --git a/metadata/md5-cache/dev-python/wstools-0.4-r1 b/metadata/md5-cache/dev-python/wstools-0.4-r1 index 03e4d1b16cf0..6c116566eaa2 100644 --- a/metadata/md5-cache/dev-python/wstools-0.4-r1 +++ b/metadata/md5-cache/dev-python/wstools-0.4-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[xml(+)] ) python_targets_python2_6? ( dev-lang/python:2.6[xml(+)] ) python_targets_python2_7? ( dev-lang/python:2.7[xml(+)] ) python_targets_pypy1_9? ( dev-python/pypy:1.9[xml(+)] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[xml(+)] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/w/wstools/wstools-0.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=baaa224bff2c4189b5379ce5dcbb8401 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 9d4e52e4ede0..54ab91dc1206 100644 --- a/metadata/md5-cache/dev-python/wtforms-1.0.3-r1 +++ b/metadata/md5-cache/dev-python/wtforms-1.0.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/W/WTForms/WTForms-1.0.3.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4e71b57330defe6cfdf6049316269f73 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 f1442e96c35d..6087e677968a 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 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=>=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 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +DEPEND=>=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 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=>=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 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +RDEPEND=>=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 ) python_targets_python2_7? ( dev-lang/python: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=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 7a734a903498a04a0722152a124aa3a5 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 -_md5_=7c365157b9b5bbdc15313a21b4000c51 +_eclasses_=alternatives 7a734a903498a04a0722152a124aa3a5 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 +_md5_=551cc982910e4f9ae5e903f8c0e6cf90 diff --git a/metadata/md5-cache/dev-python/wxpython-2.9.4.1 b/metadata/md5-cache/dev-python/wxpython-2.9.4.1 deleted file mode 100644 index 037ab6ce5977..000000000000 --- a/metadata/md5-cache/dev-python/wxpython-2.9.4.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm prepare setup -DEPEND=>=x11-libs/wxGTK-2.9.4.1:2.9[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools 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 ) opengl? ( dev-python/pyopengl ) virtual/pkgconfig || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) -DESCRIPTION=A blending of the wxWindows C++ class library with Python -EAPI=4 -HOMEPAGE=http://www.wxpython.org/ -IUSE=cairo examples opengl -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd -LICENSE=wxWinLL-3 -RDEPEND=>=x11-libs/wxGTK-2.9.4.1:2.9[opengl?,tiff,X] dev-libs/glib:2 dev-python/setuptools 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 ) opengl? ( dev-python/pyopengl ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* ) -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 7a734a903498a04a0722152a124aa3a5 distutils 77fc6005d2dfcc7bdb5ec363a49d9912 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 -_md5_=c58c9554415d42e39657deefc0cf0b53 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 cedfea659b12..8828c41e180e 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 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm prepare test -DEPEND=>=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 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +DEPEND=>=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 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=>=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 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +RDEPEND=>=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 ) python_targets_python2_7? ( dev-lang/python: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=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 7a734a903498a04a0722152a124aa3a5 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 -_md5_=6ebc3f29253e8a7a0cdcaab6504e1719 +_eclasses_=alternatives 7a734a903498a04a0722152a124aa3a5 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 +_md5_=ec7058ccfba7de42efa99a47bbca982c diff --git a/metadata/md5-cache/dev-python/xlrd-0.9.0 b/metadata/md5-cache/dev-python/xlrd-0.9.0 index 8a1ce4cc84ec..517aee8efcc5 100644 --- a/metadata/md5-cache/dev-python/xlrd-0.9.0 +++ b/metadata/md5-cache/dev-python/xlrd-0.9.0 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/x/xlrd/xlrd-0.9.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e4f303d6c15d70f8123a95dedfe2a842 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 beaed1f8096d..079ff32040f3 100644 --- a/metadata/md5-cache/dev-python/xlwt-0.7.4-r1 +++ b/metadata/md5-cache/dev-python/xlwt-0.7.4-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/x/xlwt/xlwt-0.7.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f48c7c3f46c7d0c820c7e485a497f00e diff --git a/metadata/md5-cache/dev-python/yapsy-1.10.1 b/metadata/md5-cache/dev-python/yapsy-1.10.1 index 334fd7f36123..67972328dcc4 100644 --- a/metadata/md5-cache/dev-python/yapsy-1.10.1 +++ b/metadata/md5-cache/dev-python/yapsy-1.10.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_python3_2(-)?,-python_single_target_python2_7(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://sourceforge/yapsy/Yapsy-1.10.1/Yapsy-1.10.1-pythons2n3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3850bc4547025d42bfd1a6b90b1076ba 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 b0d3154022a1..84f894d8aafe 100644 --- a/metadata/md5-cache/dev-python/yenc-0.4.0-r1 +++ b/metadata/md5-cache/dev-python/yenc-0.4.0-r1 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://www.golug.it/pub/yenc/yenc-0.4.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 02f43122078d..43118f38a91c 100644 --- a/metadata/md5-cache/dev-python/yolk-0.4.3-r1 +++ b/metadata/md5-cache/dev-python/yolk-0.4.3-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/setuptools dev-python/yolk-portage python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/y/yolk/yolk-0.4.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0be6bce457fe4ae04e69bf3d42eac8be diff --git a/metadata/md5-cache/dev-qt/qt-creator-2.7.0 b/metadata/md5-cache/dev-qt/qt-creator-2.7.0 index 85451b8875b4..1128334a8825 100644 --- a/metadata/md5-cache/dev-qt/qt-creator-2.7.0 +++ b/metadata/md5-cache/dev-qt/qt-creator-2.7.0 @@ -4,11 +4,11 @@ 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 bazaar clearcase cmake cvs fakevim git madde mercurial perforce qnx subversion valgrind linguas_cs linguas_de linguas_es linguas_fr linguas_hu linguas_it linguas_ja linguas_pl linguas_ru linguas_sl linguas_uk linguas_zh_CN linguas_zh_TW -KEYWORDS=~amd64 ~x86 +KEYWORDS=~amd64 ~arm ~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* >=dev-qt/qtcore-4.8.0:4[ssl] >=dev-qt/qtdeclarative-4.8.0: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[python] examples? ( >=dev-qt/qtdemo-4.8.0:4 ) SLOT=0 SRC_URI=http://releases.qt-project.org/qtcreator/2.7.0/qt-creator-2.7.0-src.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multilib ded93e450747134a079e647d888aa80b qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1bbb0d83dbee18b6518653f2b1b68e22 +_md5_=03cedf3f8eb04e5de258a2997052f5d8 diff --git a/metadata/md5-cache/dev-qt/qt-meta-4.8 b/metadata/md5-cache/dev-qt/qt-meta-4.8 index 41954ab70741..ab86cf4ce66c 100644 --- a/metadata/md5-cache/dev-qt/qt-meta-4.8 +++ b/metadata/md5-cache/dev-qt/qt-meta-4.8 @@ -1,5 +1,5 @@ DEFINED_PHASES=postinst -DESCRIPTION=The Qt toolkit is a comprehensive C++ application development framework +DESCRIPTION=Cross-platform application development framework EAPI=2 HOMEPAGE=http://qt-project.org/ http://qt.nokia.com/ IUSE=dbus kde opengl openvg qt3support @@ -7,4 +7,4 @@ KEYWORDS=amd64 ~arm ~ia64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=|| ( LGPL-2.1 GPL-3 ) RDEPEND=>=dev-qt/qthelp-4.8:4 >=dev-qt/qtcore-4.8:4 dbus? ( >=dev-qt/qtdbus-4.8:4 ) >=dev-qt/qtdeclarative-4.8:4 >=dev-qt/qtgui-4.8:4 >=dev-qt/qtmultimedia-4.8:4 opengl? ( >=dev-qt/qtopengl-4.8:4 ) openvg? ( >=dev-qt/qtopenvg-4.8:4 ) kde? ( media-libs/phonon ) !kde? ( || ( >=dev-qt/qtphonon-4.8:4 media-libs/phonon ) ) qt3support? ( >=dev-qt/qt3support-4.8:4 ) >=dev-qt/qtscript-4.8:4 >=dev-qt/qtsql-4.8:4 >=dev-qt/qtsvg-4.8:4 >=dev-qt/qttest-4.8:4 >=dev-qt/qtwebkit-4.8:4 >=dev-qt/qtxmlpatterns-4.8:4 SLOT=4 -_md5_=d1582fb2bb6648c2d2f2a286de949456 +_md5_=13de618684eadbfd5bcf7c72bc82f529 diff --git a/metadata/md5-cache/dev-qt/qt3support-4.8.4 b/metadata/md5-cache/dev-qt/qt3support-4.8.4 index 76605f8a24e0..60fc429363fd 100644 --- a/metadata/md5-cache/dev-qt/qt3support-4.8.4 +++ b/metadata/md5-cache/dev-qt/qt3support-4.8.4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=~dev-qt/qtcore-4.8.4[aqua=,debug=,qt3support] ~dev-qt/qtgui-4.8.4[accessibility=,aqua=,debug=,qt3support] ~dev-qt/qtsql-4.8.4[aqua=,debug=,qt3support] virtual/pkgconfig -DESCRIPTION=The Qt3 support module for the Qt toolkit +DESCRIPTION=The Qt3Support module for the Qt toolkit EAPI=4 HOMEPAGE=http://qt-project.org/ http://qt.digia.com/ IUSE=+accessibility aqua debug pch c++0x +exceptions @@ -10,4 +10,4 @@ RDEPEND=~dev-qt/qtcore-4.8.4[aqua=,debug=,qt3support] ~dev-qt/qtgui-4.8.4[access SLOT=4 SRC_URI=http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-4.8.4.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b qt4-build e47af8e569a8a0680e57fbe8bb24aea8 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=004acf702af9c79cd851ba16dda56582 +_md5_=d38b563777d2acec5787eebe82398880 diff --git a/metadata/md5-cache/dev-qt/qtcore-4.8.4-r2 b/metadata/md5-cache/dev-qt/qtcore-4.8.4-r2 index 73164c3fe865..9e0e03c974e0 100644 --- a/metadata/md5-cache/dev-qt/qtcore-4.8.4-r2 +++ b/metadata/md5-cache/dev-qt/qtcore-4.8.4-r2 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-libs/zlib glib? ( dev-libs/glib:2 ) icu? ( >=dev-libs/icu-49:= ) ssl? ( dev-libs/openssl ) !=dev-libs/icu-49:= ) ssl SLOT=4 SRC_URI=http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-4.8.4.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b qt4-build e47af8e569a8a0680e57fbe8bb24aea8 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=73c55f596fb441fe270472d044708dd3 +_md5_=6c7dc17268cecdddd349719b4f2cdb1b diff --git a/metadata/md5-cache/dev-qt/qtcore-4.8.4-r4 b/metadata/md5-cache/dev-qt/qtcore-4.8.4-r4 index 41a15a025e1d..c7232a8507ca 100644 --- a/metadata/md5-cache/dev-qt/qtcore-4.8.4-r4 +++ b/metadata/md5-cache/dev-qt/qtcore-4.8.4-r4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-libs/zlib glib? ( dev-libs/glib:2 ) icu? ( >=dev-libs/icu-49:= ) ssl? ( dev-libs/openssl ) !=dev-libs/icu-49:= ) ssl SLOT=4 SRC_URI=http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-4.8.4.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b qt4-build e47af8e569a8a0680e57fbe8bb24aea8 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=a09739b65dc6169c05fbe6af404af923 +_md5_=53df7e9f074e5d1f0ca3457510422908 diff --git a/metadata/md5-cache/dev-qt/qtcore-4.8.4-r5 b/metadata/md5-cache/dev-qt/qtcore-4.8.4-r5 index ec730453cb4c..ffce59d0ec90 100644 --- a/metadata/md5-cache/dev-qt/qtcore-4.8.4-r5 +++ b/metadata/md5-cache/dev-qt/qtcore-4.8.4-r5 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=sys-libs/zlib glib? ( dev-libs/glib:2 ) icu? ( >=dev-libs/icu-49:= ) ssl? ( dev-libs/openssl ) !=dev-libs/icu-49:= ) ssl SLOT=4 SRC_URI=http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-4.8.4.tar.gz http://dev.gentoo.org/~pesa/patches/qtcore-4.8.4-update-defaultNumberingSystem.patch.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b qt4-build e47af8e569a8a0680e57fbe8bb24aea8 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=064ed73894574d042fcd1b40683740b1 +_md5_=00b8b4599fcb2fadacc7b2053bec8314 diff --git a/metadata/md5-cache/dev-qt/qtdemo-4.8.4 b/metadata/md5-cache/dev-qt/qtdemo-4.8.4 index 112390eb46f8..898ab70d9e82 100644 --- a/metadata/md5-cache/dev-qt/qtdemo-4.8.4 +++ b/metadata/md5-cache/dev-qt/qtdemo-4.8.4 @@ -4,10 +4,10 @@ DESCRIPTION=Demonstration module and examples for the Qt toolkit EAPI=4 HOMEPAGE=http://qt-project.org/ http://qt.digia.com/ IUSE=dbus declarative kde multimedia opengl openvg qt3support webkit xmlpatterns aqua debug pch c++0x +exceptions -KEYWORDS=amd64 ppc ppc64 x86 ~x64-macos +KEYWORDS=amd64 ~arm ppc ppc64 x86 ~x64-macos LICENSE=|| ( LGPL-2.1 GPL-3 ) RDEPEND=~dev-qt/qthelp-4.8.4:4[aqua=,debug=] ~dev-qt/qtcore-4.8.4:4[aqua=,debug=,qt3support?] ~dev-qt/qtgui-4.8.4:4[aqua=,debug=,qt3support?] ~dev-qt/qtscript-4.8.4:4[aqua=,debug=] ~dev-qt/qtsql-4.8.4:4[aqua=,debug=,qt3support?] ~dev-qt/qtsvg-4.8.4:4[aqua=,debug=] ~dev-qt/qttest-4.8.4:4[aqua=,debug=] dbus? ( ~dev-qt/qtdbus-4.8.4:4[aqua=,debug=] ) declarative? ( ~dev-qt/qtdeclarative-4.8.4:4[aqua=,debug=,webkit?] ) kde? ( media-libs/phonon[aqua=] ) !kde? ( || ( ~dev-qt/qtphonon-4.8.4:4[aqua=,debug=] media-libs/phonon[aqua=] ) ) multimedia? ( ~dev-qt/qtmultimedia-4.8.4:4[aqua=,debug=] ) opengl? ( ~dev-qt/qtopengl-4.8.4:4[aqua=,debug=,qt3support?] ) openvg? ( ~dev-qt/qtopenvg-4.8.4:4[aqua=,debug=,qt3support?] ) qt3support? ( ~dev-qt/qt3support-4.8.4:4[aqua=,debug=] ) webkit? ( ~dev-qt/qtwebkit-4.8.4:4[aqua=,debug=] ) xmlpatterns? ( ~dev-qt/qtxmlpatterns-4.8.4:4[aqua=,debug=] ) SLOT=4 SRC_URI=http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-4.8.4.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b qt4-build e47af8e569a8a0680e57fbe8bb24aea8 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=83643110f81d664fa9b05dce529ee013 +_md5_=1090d3a1cc10eb76b4e906d9a94597d1 diff --git a/metadata/md5-cache/dev-qt/qtscript-4.8.4 b/metadata/md5-cache/dev-qt/qtscript-4.8.4 index 58e877fe8d4f..92e45c57ab87 100644 --- a/metadata/md5-cache/dev-qt/qtscript-4.8.4 +++ b/metadata/md5-cache/dev-qt/qtscript-4.8.4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=~dev-qt/qtcore-4.8.4[aqua=,debug=] virtual/pkgconfig -DESCRIPTION=The ECMAScript module for the Qt toolkit +DESCRIPTION=The QtScript module for the Qt toolkit EAPI=4 HOMEPAGE=http://qt-project.org/ http://qt.digia.com/ IUSE=iconv +jit aqua debug pch c++0x +exceptions @@ -10,4 +10,4 @@ RDEPEND=~dev-qt/qtcore-4.8.4[aqua=,debug=] SLOT=4 SRC_URI=http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-4.8.4.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b qt4-build e47af8e569a8a0680e57fbe8bb24aea8 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=0aa8efeb89a324a23448c479cbd5a318 +_md5_=80a9ca58418cd6c5ab54de3696d6ef07 diff --git a/metadata/md5-cache/dev-qt/qttest-4.8.4 b/metadata/md5-cache/dev-qt/qttest-4.8.4 index 8affed74145b..bb1af682d830 100644 --- a/metadata/md5-cache/dev-qt/qttest-4.8.4 +++ b/metadata/md5-cache/dev-qt/qttest-4.8.4 @@ -1,6 +1,6 @@ DEFINED_PHASES=compile configure install postinst postrm prepare setup test unpack DEPEND=~dev-qt/qtcore-4.8.4[aqua=,debug=] virtual/pkgconfig -DESCRIPTION=The testing framework module for the Qt toolkit +DESCRIPTION=The QtTest module for unit testing Qt applications and libraries EAPI=4 HOMEPAGE=http://qt-project.org/ http://qt.digia.com/ IUSE=aqua debug pch c++0x +exceptions @@ -10,4 +10,4 @@ RDEPEND=~dev-qt/qtcore-4.8.4[aqua=,debug=] SLOT=4 SRC_URI=http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-4.8.4.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b qt4-build e47af8e569a8a0680e57fbe8bb24aea8 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=1f84976bc32c5f3ec3180ba0e65aed1b +_md5_=d12c4647c4f6d509521377e8cd3999f7 diff --git a/metadata/md5-cache/dev-ruby/json-1.7.7-r1 b/metadata/md5-cache/dev-ruby/json-1.7.7-r1 new file mode 100644 index 000000000000..f63e9e9da541 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/json-1.7.7-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=dev-util/ragel ruby_targets_ruby18? ( dev-ruby/rake[ruby_targets_ruby18] ) ruby_targets_ruby19? ( dev-ruby/rake[ruby_targets_ruby19] ) 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_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_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_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_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 JSON implementation as a Ruby extension. +EAPI=5 +HOMEPAGE=http://json.rubyforge.org/ +IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 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=|| ( Ruby GPL-2 ) +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/json-1.7.7.gem +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=c2b4c8a7afb59d2f43d462c2fe4c0875 diff --git a/metadata/md5-cache/dev-ruby/metasploit_data_models-0.6.4 b/metadata/md5-cache/dev-ruby/metasploit_data_models-0.6.4 new file mode 100644 index 000000000000..74b9cf142b3b --- /dev/null +++ b/metadata/md5-cache/dev-ruby/metasploit_data_models-0.6.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=test? ( ruby_targets_ruby18? ( >=dev-ruby/activerecord-3.2.10[ruby_targets_ruby18,postgres] ) ruby_targets_ruby19? ( >=dev-ruby/activerecord-3.2.10[ruby_targets_ruby19,postgres] ) ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) test? ( ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ) +DESCRIPTION=The database layer for Metasploit +EAPI=5 +HOMEPAGE=https://github.com/rapid7/metasploit_data_models +IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 test +KEYWORDS=~amd64 ~arm ~x86 +LICENSE=BSD +RDEPEND=ruby_targets_ruby18? ( >=dev-ruby/activerecord-3.2.10[ruby_targets_ruby18,postgres] ) ruby_targets_ruby19? ( >=dev-ruby/activerecord-3.2.10[ruby_targets_ruby19,postgres] ) ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) +REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ) +SLOT=0 +SRC_URI=https://github.com/rapid7/metasploit_data_models/archive/0.6.4.tar.gz -> metasploit_data_models-0.6.4.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=23832685f90a90d51812199f06726ffb diff --git a/metadata/md5-cache/dev-ruby/minitest-4.5.0 b/metadata/md5-cache/dev-ruby/minitest-4.5.0 index 887ae06be05e..47fcbe20ea9b 100644 --- a/metadata/md5-cache/dev-ruby/minitest-4.5.0 +++ b/metadata/md5-cache/dev-ruby/minitest-4.5.0 @@ -4,11 +4,11 @@ DESCRIPTION=minitest/unit is a small and fast replacement for ruby's huge and sl EAPI=5 HOMEPAGE=https://github.com/seattlerb/minitest IUSE=doc test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 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 +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=MIT RDEPEND=ruby_targets_ruby18? ( dev-lang/ruby:1.8 ) ruby_targets_ruby19? ( dev-lang/ruby:1.9 ) ruby_targets_ree18? ( dev-lang/ruby-enterprise:1.8 ) ruby_targets_jruby? ( dev-java/jruby ) ruby_targets_ruby18? ( virtual/rubygems[ruby_targets_ruby18] ) ruby_targets_ruby19? ( virtual/rubygems[ruby_targets_ruby19] ) ruby_targets_ree18? ( virtual/rubygems[ruby_targets_ree18] ) ruby_targets_jruby? ( virtual/rubygems[ruby_targets_jruby] ) REQUIRED_USE=|| ( ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_ree18 ruby_targets_jruby ) SLOT=0 SRC_URI=mirror://rubygems/minitest-4.5.0.gem _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=19020e997e3b778c91fe4adcd8b8e267 +_md5_=a1f2e930867f7d444959fe3ccf05662a diff --git a/metadata/md5-cache/dev-ruby/mixlib-cli-1.3.0 b/metadata/md5-cache/dev-ruby/mixlib-cli-1.3.0 new file mode 100644 index 000000000000..f78d874b61ba --- /dev/null +++ b/metadata/md5-cache/dev-ruby/mixlib-cli-1.3.0 @@ -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_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=Mixin for creating command line applications +EAPI=4 +HOMEPAGE=http://github.com/opscode/mixlib-cli +IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby test test +KEYWORDS=~amd64 ~x86 ~x86-fbsd +LICENSE=Apache-2.0 +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=https://github.com/opscode/mixlib-cli/archive/1.3.0.tar.gz -> mixlib-cli-1.3.0.tgz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=38de46f40fa1c8788f0edfb465e3fe77 diff --git a/metadata/md5-cache/dev-ruby/mocha-0.13.3 b/metadata/md5-cache/dev-ruby/mocha-0.13.3 new file mode 100644 index 000000000000..d58e2f6cdeeb --- /dev/null +++ b/metadata/md5-cache/dev-ruby/mocha-0.13.3 @@ -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_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_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_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_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_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_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 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_jruby doc test test +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=MIT +RDEPEND=ruby_targets_ruby18? ( dev-ruby/metaclass[ruby_targets_ruby18] ) ruby_targets_ruby19? ( dev-ruby/metaclass[ruby_targets_ruby19] ) 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_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/mocha-0.13.3.gem +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=f1c33d15ff4e2d4b2a1ecce497f16ba7 diff --git a/metadata/md5-cache/dev-ruby/multi_xml-0.5.3 b/metadata/md5-cache/dev-ruby/multi_xml-0.5.3 new file mode 100644 index 000000000000..4e2dfffe4e2c --- /dev/null +++ b/metadata/md5-cache/dev-ruby/multi_xml-0.5.3 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install prepare setup test unpack +DEPEND=ruby_targets_ruby18? ( doc? ( dev-ruby/yard[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/yard[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/yard[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? ( doc? ( dev-ruby/rake[ruby_targets_ruby18] ) ) ruby_targets_ruby19? ( doc? ( dev-ruby/rake[ruby_targets_ruby19] ) ) ruby_targets_jruby? ( doc? ( dev-ruby/rake[ruby_targets_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 generic swappable back-end for XML parsing +EAPI=4 +HOMEPAGE=http://rdoc.info/gems/multi_xml +IUSE=elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby doc test test +KEYWORDS=~amd64 ~ppc ~x86 +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/multi_xml-0.5.3.gem +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=6e4c22a9d395eccf0296234123b068ab diff --git a/metadata/md5-cache/dev-ruby/multipart-post-1.2.0 b/metadata/md5-cache/dev-ruby/multipart-post-1.2.0 new file mode 100644 index 000000000000..3ae79ace87a8 --- /dev/null +++ b/metadata/md5-cache/dev-ruby/multipart-post-1.2.0 @@ -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_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] ) 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=Adds a streamy multipart form post capability to Net::HTTP. +EAPI=5 +HOMEPAGE=http://github.com/nicksieger/multipart-post +IUSE=test elibc_FreeBSD ruby_targets_ruby18 ruby_targets_ruby19 ruby_targets_jruby test +KEYWORDS=~amd64 ~x86 +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/multipart-post-1.2.0.gem +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 java-utils-2 dcda71e114d638cdf01db57b8445337d multilib ded93e450747134a079e647d888aa80b ruby-fakegem d2a1d4e0903b29b09c892b21b79fcf46 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=cfa7ae71da03743cc18e6c4289d5e7c5 diff --git a/metadata/md5-cache/dev-scheme/chicken-4.8.0.2 b/metadata/md5-cache/dev-scheme/chicken-4.8.0.3 similarity index 85% rename from metadata/md5-cache/dev-scheme/chicken-4.8.0.2 rename to metadata/md5-cache/dev-scheme/chicken-4.8.0.3 index d4bc06f0ae5a..3b05fb5d65d4 100644 --- a/metadata/md5-cache/dev-scheme/chicken-4.8.0.2 +++ b/metadata/md5-cache/dev-scheme/chicken-4.8.0.3 @@ -9,6 +9,6 @@ LICENSE=BSD RDEPEND=emacs? ( virtual/emacs app-emacs/scheme-complete ) RESTRICT=test SLOT=0 -SRC_URI=http://code.call-cc.org/releases/4.8.0/chicken-4.8.0.2.tar.gz +SRC_URI=http://code.call-cc.org/releases/4.8.0/chicken-4.8.0.3.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=7e6d62c612d0f9a83a604de5d432d382 +_md5_=5bc17054014e97d28ee65de36f7a966e 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 fc279f77c405..6c162b157da0 100644 --- a/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 +++ b/metadata/md5-cache/dev-tcltk/snack-2.2.10-r6 @@ -10,5 +10,5 @@ RDEPEND=dev-lang/tcl dev-lang/tk alsa? ( media-libs/alsa-lib ) python? ( python_ RESTRICT=test SLOT=0 SRC_URI=http://www.speech.kth.se/snack/dist/snack2.2.10.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b4a4cb087d74ef38b53ece03bb977f75 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 f70f4c296d8b..20227a9fcd1d 100644 --- a/metadata/md5-cache/dev-tex/dot2tex-2.8.7-r1 +++ b/metadata/md5-cache/dev-tex/dot2tex-2.8.7-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=virtual/pyparsing[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] media-gfx/pydot[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] media-gfx/graphviz python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://dot2tex.googlecode.com/files/dot2tex-2.8.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8e58ac61d0ec283915a9db4bf413c480 diff --git a/metadata/md5-cache/dev-util/a8-0.11-r2 b/metadata/md5-cache/dev-util/a8-0.11-r2 index e7644dbd77a1..4a7a4c24cb5d 100644 --- a/metadata/md5-cache/dev-util/a8-0.11-r2 +++ b/metadata/md5-cache/dev-util/a8-0.11-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=>=dev-python/dbus-python-1[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/logbook[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/psutil dev-python/pyyaml[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/pygtk-2.22[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/pygtkhelpers-0.4.3 dev-python/setuptools[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(-)] >=x11-libs/vte-0.28.2-r206:0[python,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] app-editors/gvim app-editors/vim python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://pypi/a/a8/a8-0.11.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=15a4878f2038046258023e0129edee4a diff --git a/metadata/md5-cache/dev-util/cdiff-0.3 b/metadata/md5-cache/dev-util/cdiff-0.3 index 02395e65de4b..95abd15a1562 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.3 +++ b/metadata/md5-cache/dev-util/cdiff-0.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=19c8823897ab063b7c8ca0805dc8b1b4 diff --git a/metadata/md5-cache/dev-util/cdiff-0.4 b/metadata/md5-cache/dev-util/cdiff-0.4 index 77de2a253b17..5c95ce44ca28 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.4 +++ b/metadata/md5-cache/dev-util/cdiff-0.4 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a54558fc2a6da74923a82aa8eb6c8973 diff --git a/metadata/md5-cache/dev-util/cdiff-0.5 b/metadata/md5-cache/dev-util/cdiff-0.5 index 6c0a7ae6de09..679094a6aaf9 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.5 +++ b/metadata/md5-cache/dev-util/cdiff-0.5 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=510b3c3c334c43aa5e076581cae49378 diff --git a/metadata/md5-cache/dev-util/cdiff-0.5.1 b/metadata/md5-cache/dev-util/cdiff-0.5.1 index 1e6e9f8b6cb4..6076da10a4c5 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.5.1 +++ b/metadata/md5-cache/dev-util/cdiff-0.5.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.5.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=53bee4ca50c6eaf4391454c2f5e681c8 diff --git a/metadata/md5-cache/dev-util/cdiff-0.6 b/metadata/md5-cache/dev-util/cdiff-0.6 index 9628e17f75a6..0d4a90d4dbb6 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.6 +++ b/metadata/md5-cache/dev-util/cdiff-0.6 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9692df18368ca104ada35d9b1d7b4316 diff --git a/metadata/md5-cache/dev-util/cdiff-0.7 b/metadata/md5-cache/dev-util/cdiff-0.7 index 047209ed87ac..95dd0cd9501a 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.7 +++ b/metadata/md5-cache/dev-util/cdiff-0.7 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8d0c92aef965f9968791d6c3c40b77a9 diff --git a/metadata/md5-cache/dev-util/cdiff-0.7.1 b/metadata/md5-cache/dev-util/cdiff-0.7.1 index 2799d05c82e2..b06490b04d93 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.7.1 +++ b/metadata/md5-cache/dev-util/cdiff-0.7.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.7.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b3cd5c4210cce24a2e7878453de40198 diff --git a/metadata/md5-cache/dev-util/cdiff-0.8 b/metadata/md5-cache/dev-util/cdiff-0.8 index d610fdd24123..e608cf8860a7 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.8 +++ b/metadata/md5-cache/dev-util/cdiff-0.8 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.8.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ea34a5b69735404a5b578da00518ad32 diff --git a/metadata/md5-cache/dev-util/cdiff-0.9 b/metadata/md5-cache/dev-util/cdiff-0.9 index 94ce7e1cfc5e..91a11963857d 100644 --- a/metadata/md5-cache/dev-util/cdiff-0.9 +++ b/metadata/md5-cache/dev-util/cdiff-0.9 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=!app-misc/colordiff dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-)] SLOT=0 SRC_URI=mirror://pypi/c/cdiff/cdiff-0.9.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=26f78800227c941d86cce6e06a6aac3d diff --git a/metadata/md5-cache/dev-util/cligh-0.1_p20120630 b/metadata/md5-cache/dev-util/cligh-0.1_p20120630 index 6f619bc795b9..c94b2970df34 100644 --- a/metadata/md5-cache/dev-util/cligh-0.1_p20120630 +++ b/metadata/md5-cache/dev-util/cligh-0.1_p20120630 @@ -9,5 +9,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 ) python_targets_python2_7? ( dev-lang/python: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=https://github.com/CMB/cligh/archive/401ce7405d3dc7a90bd519dce8ae9be3bdef43ac.tar.gz -> cligh-0.1_p20120630.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=933058601c78bf0b18ee1825e5e91a0c diff --git a/metadata/md5-cache/dev-util/cligh-9999 b/metadata/md5-cache/dev-util/cligh-9999 index 7e42f00b080b..17a3de4f0e93 100644 --- a/metadata/md5-cache/dev-util/cligh-9999 +++ b/metadata/md5-cache/dev-util/cligh-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 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 ) python_targets_python2_7? ( dev-lang/python: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 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 464eadc50a84..b4bbbec1139d 100644 --- a/metadata/md5-cache/dev-util/cmdtest-0.6 +++ b/metadata/md5-cache/dev-util/cmdtest-0.6 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://code.liw.fi/debian/pool/main/c/cmdtest/cmdtest_0.6.orig.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c6d9786a1d33aa27396a1af770d0dc47 diff --git a/metadata/md5-cache/dev-util/coccigrep-1.12 b/metadata/md5-cache/dev-util/coccigrep-1.12 index 92bab55e745e..3284ffbd2b6b 100644 --- a/metadata/md5-cache/dev-util/coccigrep-1.12 +++ b/metadata/md5-cache/dev-util/coccigrep-1.12 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-util/coccinelle[python] virtual/python-argparse[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] emacs? ( virtual/emacs ) vim? ( || ( app-editors/vim app-editors/gvim ) ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=https://github.com/regit/coccigrep/archive/v1.12.tar.gz -> coccigrep-1.12.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=d9a1a3ee72ff732f7deca102394a30c2 diff --git a/metadata/md5-cache/dev-util/d-feet-0.1.15 b/metadata/md5-cache/dev-util/d-feet-0.1.15 index a7b5858da6e8..52ab4211c959 100644 --- a/metadata/md5-cache/dev-util/d-feet-0.1.15 +++ b/metadata/md5-cache/dev-util/d-feet-0.1.15 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=sys-apps/dbus-1.0 >=dev-python/dbus-python-0.82.3 dev-python/pygtk:2 gnome? ( dev-python/libwnck-python ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://gnome/sources/d-feet/0.1/d-feet-0.1.15.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4520af41b1fcb480601e8a24c948ee06 diff --git a/metadata/md5-cache/dev-util/d-feet-0.3.1 b/metadata/md5-cache/dev-util/d-feet-0.3.1 index 89ffa7b682c7..f86758d6d624 100644 --- a/metadata/md5-cache/dev-util/d-feet-0.3.1 +++ b/metadata/md5-cache/dev-util/d-feet-0.3.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.34:2 dev-python/pygobject:3 >=sys-apps/dbus-1 x11-libs/gtk+:3[introspection] x11-libs/libwnck:3[introspection] python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) dev-python/python-exec[python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,-python_single_target_python2_7(-),-python_single_target_pypy1_9(-)] SLOT=0 SRC_URI=mirror://gnome/sources/d-feet/0.3/d-feet-0.3.1.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0242e7ffed1005a0cfc165de87dc3bea diff --git a/metadata/md5-cache/dev-util/d-feet-0.3.3 b/metadata/md5-cache/dev-util/d-feet-0.3.3 index 02cad080b393..96090204df60 100644 --- a/metadata/md5-cache/dev-util/d-feet-0.3.3 +++ b/metadata/md5-cache/dev-util/d-feet-0.3.3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.34:2 >=dev-python/pygobject-3.3.91:3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=sys-apps/dbus-1 >=x11-libs/gtk+-3.6:3[introspection] x11-libs/libwnck:3[introspection] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://gnome/sources/d-feet/0.3/d-feet-0.3.3.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d41b3a2912f71a4250b763648b12a527 diff --git a/metadata/md5-cache/dev-util/gdbus-codegen-2.34.2 b/metadata/md5-cache/dev-util/gdbus-codegen-2.34.2 index c5e70d24ff22..e12dce10d3e8 100644 --- a/metadata/md5-cache/dev-util/gdbus-codegen-2.34.2 +++ b/metadata/md5-cache/dev-util/gdbus-codegen-2.34.2 @@ -10,5 +10,5 @@ PDEPEND=>=dev-libs/glib-2.34.2:2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) python_targets_python3_1? ( dev-lang/python:3.1[xml] ) python_targets_python3_2? ( dev-lang/python:3.2[xml] ) python_targets_python3_3? ( dev-lang/python:3.3[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) python_targets_python3_1? ( dev-lang/python:3.1[xml] ) python_targets_python3_2? ( dev-lang/python:3.2[xml] ) python_targets_python3_3? ( dev-lang/python:3.3[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://gnome/sources/glib/2.34/glib-2.34.2.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=01cb6ba0771d6eec6c46714e2cb39889 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 93193e9a54af..019aade0e109 100644 --- a/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3 +++ b/metadata/md5-cache/dev-util/gdbus-codegen-2.34.3 @@ -10,5 +10,5 @@ PDEPEND=>=dev-libs/glib-2.34.3:2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) python_targets_python3_1? ( dev-lang/python:3.1[xml] ) python_targets_python3_2? ( dev-lang/python:3.2[xml] ) python_targets_python3_3? ( dev-lang/python:3.3[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) python_targets_python3_1? ( dev-lang/python:3.1[xml] ) python_targets_python3_2? ( dev-lang/python:3.2[xml] ) python_targets_python3_3? ( dev-lang/python:3.3[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://gnome/sources/glib/2.34/glib-2.34.3.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=2611ab4dff91e68d5bde17a32386d6d7 diff --git a/metadata/md5-cache/dev-util/gdbus-codegen-2.36.0 b/metadata/md5-cache/dev-util/gdbus-codegen-2.36.0 index b63d6611b53d..26e5775c3461 100644 --- a/metadata/md5-cache/dev-util/gdbus-codegen-2.36.0 +++ b/metadata/md5-cache/dev-util/gdbus-codegen-2.36.0 @@ -10,5 +10,5 @@ PDEPEND=>=dev-libs/glib-2.36.0:2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) python_targets_python3_1? ( dev-lang/python:3.1[xml] ) python_targets_python3_2? ( dev-lang/python:3.2[xml] ) python_targets_python3_3? ( dev-lang/python:3.3[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) python_targets_python3_1? ( dev-lang/python:3.1[xml] ) python_targets_python3_2? ( dev-lang/python:3.2[xml] ) python_targets_python3_3? ( dev-lang/python:3.3[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=mirror://gnome/sources/glib/2.36/glib-2.36.0.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome.org 8fef8f967214f56e08fa92d61163d891 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=97bedb90f71ee7a81105453e7923af54 diff --git a/metadata/md5-cache/dev-util/glade-3.12.2 b/metadata/md5-cache/dev-util/glade-3.12.2 index 8d7131400ccb..6c9d24b6a38c 100644 --- a/metadata/md5-cache/dev-util/glade-3.12.2 +++ b/metadata/md5-cache/dev-util/glade-3.12.2 @@ -4,10 +4,10 @@ DESCRIPTION=A user interface designer for GTK+ and GNOME EAPI=4 HOMEPAGE=http://glade.gnome.org/ IUSE=+introspection python debug -KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=GPL-2+ FDL-1.1+ RDEPEND=dev-libs/atk[introspection?] >=dev-libs/glib-2.32:2 >=dev-libs/libxml2-2.4.0:2 x11-libs/cairo x11-libs/gdk-pixbuf:2[introspection?] >=x11-libs/gtk+-3.4:3[introspection?] x11-libs/pango[introspection?] introspection? ( >=dev-libs/gobject-introspection-0.10.1 ) python? ( >=dev-python/pygobject-2.90.4:3 ) SLOT=3.10 SRC_URI=mirror://gnome/sources/glade/3.12/glade-3.12.2.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2870c07349773f023378040bacbab85b +_md5_=ca7d946cbd9e14589edcda4ac2bcee01 diff --git a/metadata/md5-cache/dev-util/glade-3.8.3 b/metadata/md5-cache/dev-util/glade-3.8.3 index ffad3990e501..e259ebe06cf8 100644 --- a/metadata/md5-cache/dev-util/glade-3.8.3 +++ b/metadata/md5-cache/dev-util/glade-3.8.3 @@ -4,10 +4,10 @@ DESCRIPTION=A user interface designer for GTK+ and GNOME EAPI=5 HOMEPAGE=http://glade.gnome.org/ IUSE=gnome python debug -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=GPL-2+ FDL-1.1+ RDEPEND=>=dev-libs/glib-2.8:2 >=x11-libs/gtk+-2.24:2 >=dev-libs/libxml2-2.4:2 gnome? ( >=gnome-base/libgnomeui-2 >=gnome-base/libbonoboui-2 ) python? ( >=dev-python/pygtk-2.10:2 ) python? ( =dev-lang/python-2* ) SLOT=3/11 SRC_URI=mirror://gnome/sources/glade3/3.8/glade3-3.8.3.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=271db79fe3e08d24eb06e9836279abf3 +_md5_=d1d9ebd78a736516343cf335513f4973 diff --git a/metadata/md5-cache/dev-util/gob-2.0.19 b/metadata/md5-cache/dev-util/gob-2.0.19 index 393026a0a62b..ab1cf6a21569 100644 --- a/metadata/md5-cache/dev-util/gob-2.0.19 +++ b/metadata/md5-cache/dev-util/gob-2.0.19 @@ -3,10 +3,10 @@ DEPEND=>=dev-libs/glib-2:2 sys-devel/flex virtual/pkgconfig virtual/yacc app-arc DESCRIPTION=Preprocessor for making GTK+ objects with inline C code EAPI=5 HOMEPAGE=http://www.jirka.org/gob.html -KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos +KEYWORDS=alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos LICENSE=GPL-2+ RDEPEND=>=dev-libs/glib-2:2 SLOT=2 SRC_URI=mirror://gnome/sources/gob2/2.0/gob2-2.0.19.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=4af3f64dfdeeb319fba8f5cb393a7c28 +_md5_=4c7bcc8b472a47949019d8b5a5132a17 diff --git a/metadata/md5-cache/dev-util/gtk-builder-convert-2.24.16 b/metadata/md5-cache/dev-util/gtk-builder-convert-2.24.16 index b45bdcf94c77..0ee2ce04a064 100644 --- a/metadata/md5-cache/dev-util/gtk-builder-convert-2.24.16 +++ b/metadata/md5-cache/dev-util/gtk-builder-convert-2.24.16 @@ -4,10 +4,10 @@ DESCRIPTION=Converts Glade files to GtkBuilder XML format EAPI=5 HOMEPAGE=http://www.gtk.org/ IUSE=python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_single_target_python2_5 python_single_target_python2_6 python_single_target_python2_7 -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~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 +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~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 LICENSE=LGPL-2+ RDEPEND=!<=x11-libs/gtk+-2.24.10:2 python_single_target_python2_5? ( dev-lang/python:2.5[xml] ) python_single_target_python2_6? ( dev-lang/python:2.6[xml] ) python_single_target_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_5(+)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] SLOT=0 SRC_URI=mirror://gnome/sources/gtk+/2.24/gtk+-2.24.16.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome.org 8fef8f967214f56e08fa92d61163d891 multilib ded93e450747134a079e647d888aa80b python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=933735e04d38049a2b6aaf0b8fbadeb1 +_md5_=31c41defea3446d429171d8780c92d7e diff --git a/metadata/md5-cache/dev-util/howdoi-1.1.1 b/metadata/md5-cache/dev-util/howdoi-1.1.1 index 2b80fe3a2c4a..f1aeebe0688d 100644 --- a/metadata/md5-cache/dev-util/howdoi-1.1.1 +++ b/metadata/md5-cache/dev-util/howdoi-1.1.1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/pygments[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/pyquery[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/requests[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(-)] virtual/python-argparse[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 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_3? ( dev-lang/python: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(-)] SLOT=0 SRC_URI=mirror://pypi/h/howdoi/howdoi-1.1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=50b9280637e003e1a5b372624e25016b diff --git a/metadata/md5-cache/dev-util/howdoi-1.1.2 b/metadata/md5-cache/dev-util/howdoi-1.1.2 index d84a991784ab..211c5698c925 100644 --- a/metadata/md5-cache/dev-util/howdoi-1.1.2 +++ b/metadata/md5-cache/dev-util/howdoi-1.1.2 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=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/pyquery[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/requests[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(-)] 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 ) 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(-)] SLOT=0 SRC_URI=mirror://pypi/h/howdoi/howdoi-1.1.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7e69b195b99ddf6fb9eadee04af0f52c diff --git a/metadata/md5-cache/dev-util/kbuild-0.1.9998_pre20120806 b/metadata/md5-cache/dev-util/kbuild-0.1.9998_pre20120806 index ef67c36e24c5..b4fc0f026775 100644 --- a/metadata/md5-cache/dev-util/kbuild-0.1.9998_pre20120806 +++ b/metadata/md5-cache/dev-util/kbuild-0.1.9998_pre20120806 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile install prepare -DEPEND=sys-devel/flex sys-devel/gettext virtual/yacc =sys-devel/automake-1.9* >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=sys-devel/flex sys-devel/gettext virtual/yacc || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A makefile framework for writing simple makefiles for complex tasks EAPI=4 HOMEPAGE=http://svn.netlabs.org/kbuild/wiki -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 SLOT=0 SRC_URI=http://dev.gentoo.org/~polynomial-c/kBuild-0.1.9998-pre20120806-src.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=26bdbcaae392d603c80435f66bed9ab9 +_md5_=2804a7b601787fba24b00abb8d48fd56 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 52f7fa38337a..a45ef137b718 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 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/PyQt4[webkit] dev-python/simplejson dev-python/pyinotify 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 ) python_targets_python2_7? ( dev-lang/python: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=https://github.com/ninja-ide/ninja-ide/tarball/v2.1.1 -> ninja-ide-2.1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=dbbf88d7179a2269898022a80a42ba25 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 f14ec950f659..f8ee11032fa3 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 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/PyQt4[webkit,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/simplejson[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyinotify[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 ) python_targets_python2_7? ( dev-lang/python: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=https://github.com/ninja-ide/ninja-ide/tarball/v2.1.1 -> ninja-ide-2.1.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=0b144cd211772e80c8538ed773d9ee67 diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-2.02.0807.1535 b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-2.02.0807.1535 index dee2f590c1b6..03886e425e5d 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-2.02.0807.1535 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-2.02.0807.1535 @@ -9,5 +9,5 @@ RDEPEND=dev-util/nvidia-cuda-toolkit >=x11-drivers/nvidia-drivers-177.73 media-l RESTRICT=binchecks SLOT=0 SRC_URI=http://developer.download.nvidia.com/compute/cuda/2_0/linux/sdk/NVIDIA_CUDA_SDK_2.02.0807.1535_linux.run -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d9f865c81a22a7615064b26b6164fd15 diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-2.2-r1 b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-2.2-r1 index 235450b00d1f..636d13724b70 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-2.2-r1 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-2.2-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-util/nvidia-cuda-toolkit-2.2 examples? ( !emulation? ( >=x11-drive RESTRICT=binchecks SLOT=0 SRC_URI=http://developer.download.nvidia.com/compute/cuda/2_2/sdk/cudasdk_2.2_linux.run -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=6bf4a841563f0fa9405eb66635228e0d diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2 b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2 index f4be42a3af1b..f16c98f16f1a 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2 @@ -9,5 +9,5 @@ LICENSE=CUDPP RDEPEND=>=dev-util/nvidia-cuda-toolkit-4.2 examples? ( >=x11-drivers/nvidia-drivers-260.19.21 ) media-libs/freeglut SLOT=0 SRC_URI=http://developer.download.nvidia.com/compute/cuda/4_2/rel/sdk/gpucomputingsdk_4.2.9_linux.run -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=c581c86f43be25014d01a8c8168d55f6 diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2.9-r1 b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2.9-r1 index 1b820e458967..e61240f6c3e4 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2.9-r1 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2.9-r1 @@ -9,5 +9,5 @@ LICENSE=CUDPP RDEPEND=>=dev-util/nvidia-cuda-toolkit-4.2.9 media-libs/freeglut examples? ( >=x11-drivers/nvidia-drivers-296 media-libs/glew ) SLOT=0 SRC_URI=http://developer.download.nvidia.com/compute/cuda/4_2/rel/sdk/gpucomputingsdk_4.2.9_linux.run -_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a6ea79e127b4eb05ba0128261e4305b3 diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2.9-r2 b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2.9-r2 index 7cf2f439bfc6..2d4ebb5d04ac 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2.9-r2 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-4.2.9-r2 @@ -9,5 +9,5 @@ LICENSE=CUDPP RDEPEND=>=dev-util/nvidia-cuda-toolkit-4.2.9 media-libs/freeglut examples? ( >=x11-drivers/nvidia-drivers-296 media-libs/glew ) SLOT=0 SRC_URI=http://developer.download.nvidia.com/compute/cuda/4_2/rel/sdk/gpucomputingsdk_4.2.9_linux.run -_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=9dd3077b975b4f9f4dad4d9f06ca21d1 diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-5.0.35 b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-5.0.35 index bb8fa7a715d7..37719d5587b1 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-5.0.35 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-5.0.35 @@ -9,5 +9,5 @@ LICENSE=CUDPP RDEPEND=>=dev-util/nvidia-cuda-toolkit-5.0.35 media-libs/freeglut examples? ( media-libs/freeimage media-libs/glew virtual/mpi >=x11-drivers/nvidia-drivers-304.54 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/nvidia-cuda-sdk-5.0.35-asneeded.patch.xz amd64? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_64_fedora16-1.run ) x86? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_32_fedora16-1.run ) -_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=78cbdf822dafaeeb7391019ad79e84de diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-5.0.35-r1 b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-5.0.35-r1 index 9c95d66abd93..5e7ca0a3775e 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-sdk-5.0.35-r1 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-sdk-5.0.35-r1 @@ -9,5 +9,5 @@ LICENSE=CUDPP RDEPEND=>=dev-util/nvidia-cuda-toolkit-5.0.35 media-libs/freeglut examples? ( media-libs/freeimage media-libs/glew virtual/mpi >=x11-drivers/nvidia-drivers-304.54 ) SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/nvidia-cuda-sdk-5.0.35-asneeded.patch.xz amd64? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_64_fedora16-1.run ) x86? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_32_fedora16-1.run ) -_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=fc7f748b0ef28f8168d25b9cc4b40d64 diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-4.2.9-r2 b/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-4.2.9-r2 index 8cc3d738aa7c..3c398a198648 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-4.2.9-r2 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-4.2.9-r2 @@ -8,5 +8,5 @@ LICENSE=NVIDIA RDEPEND=|| ( sys-devel/gcc:4.4 sys-devel/gcc:4.5 sys-devel/gcc:4.6 ) !<=x11-drivers/nvidia-drivers-270.41 debugger? ( sys-libs/libtermcap-compat ) profiler? ( >=virtual/jre-1.6 ) SLOT=0 SRC_URI=amd64? ( http://developer.download.nvidia.com/compute/cuda/4_2/rel/toolkit/cudatoolkit_4.2.9_linux_64_ubuntu11.04.run ) x86? ( http://developer.download.nvidia.com/compute/cuda/4_2/rel/toolkit/cudatoolkit_4.2.9_linux_32_ubuntu11.04.run ) -_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4420ec0ab7c531f9a77daf6d668f6d2f diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-5.0.35-r2 b/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-5.0.35-r2 index 026f7de5f75b..2cbe706914c6 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-5.0.35-r2 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-5.0.35-r2 @@ -8,5 +8,5 @@ LICENSE=NVIDIA RDEPEND=sys-devel/gcc:4.6[cxx] !<=x11-drivers/nvidia-drivers-270.41 debugger? ( sys-libs/libtermcap-compat sys-libs/ncurses[tinfo] ) profiler? ( >=virtual/jre-1.6 ) SLOT=0 SRC_URI=amd64? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_64_fedora16-1.run ) x86? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_32_fedora16-1.run ) -_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=96eb3b7cef5d8d2f2ceabaa4969aceb0 diff --git a/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-5.0.35-r3 b/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-5.0.35-r3 index 594cfd8b1311..e79544373cfc 100644 --- a/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-5.0.35-r3 +++ b/metadata/md5-cache/dev-util/nvidia-cuda-toolkit-5.0.35-r3 @@ -8,5 +8,5 @@ LICENSE=NVIDIA RDEPEND=sys-devel/gcc:4.6[cxx] !<=x11-drivers/nvidia-drivers-270.41 debugger? ( sys-libs/libtermcap-compat sys-libs/ncurses[tinfo] ) eclipse? ( >=virtual/jre-1.6 ) profiler? ( >=virtual/jre-1.6 ) SLOT=0 SRC_URI=amd64? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_64_fedora16-1.run ) x86? ( http://developer.download.nvidia.com/compute/cuda/5_0/rel-update-1/installers//cuda_5.0.35_linux_32_fedora16-1.run ) -_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=cuda c61985801c2bd258ba06cd958995c2ff eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=29e995e5408ef5a1d4675fe26c58f8b1 diff --git a/metadata/md5-cache/dev-util/pkgconf-0.8.12 b/metadata/md5-cache/dev-util/pkgconf-0.8.12 deleted file mode 100644 index 06a853d267e9..000000000000 --- a/metadata/md5-cache/dev-util/pkgconf-0.8.12 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install prepare -DESCRIPTION=pkg-config compatible replacement with no dependencies other than ANSI C89 -EAPI=4 -HOMEPAGE=https://github.com/pkgconf/pkgconf -IUSE=+pkg-config strict -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~ppc-macos ~x64-macos ~x86-macos ~sparc64-solaris -LICENSE=BSD-1 -RDEPEND=pkg-config? ( !dev-util/pkgconfig !dev-util/pkg-config-lite !dev-util/pkgconfig-openbsd[pkg-config] ) -SLOT=0 -SRC_URI=http://tortois.es/~nenolod/distfiles/pkgconf-0.8.12.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=5994aee92877390039b15dc5984c2eb7 diff --git a/metadata/md5-cache/dev-util/pkgconf-0.9.1 b/metadata/md5-cache/dev-util/pkgconf-0.9.2 similarity index 87% rename from metadata/md5-cache/dev-util/pkgconf-0.9.1 rename to metadata/md5-cache/dev-util/pkgconf-0.9.2 index 01c9aa92f5d2..210788a32bcb 100644 --- a/metadata/md5-cache/dev-util/pkgconf-0.9.1 +++ b/metadata/md5-cache/dev-util/pkgconf-0.9.2 @@ -7,6 +7,6 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=BSD-1 RDEPEND=pkg-config? ( !dev-util/pkgconfig !dev-util/pkg-config-lite !dev-util/pkgconfig-openbsd[pkg-config] ) SLOT=0 -SRC_URI=http://tortois.es/~nenolod/distfiles/pkgconf-0.9.1.tar.bz2 +SRC_URI=http://tortois.es/~nenolod/distfiles/pkgconf-0.9.2.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ff39c05e4093593d4ba7cc636f82e15c +_md5_=b970dc988726f4837bccac21da4dc9ad diff --git a/metadata/md5-cache/dev-util/premake-3.7 b/metadata/md5-cache/dev-util/premake-3.7 new file mode 100644 index 000000000000..2047078cd4f8 --- /dev/null +++ b/metadata/md5-cache/dev-util/premake-3.7 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install +DEPEND=app-arch/unzip +DESCRIPTION=A makefile generation tool +EAPI=5 +HOMEPAGE=http://industriousone.com/premake +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 +SLOT=3 +SRC_URI=mirror://sourceforge/premake/premake-src-3.7.zip +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=814eca063d62842dd52b414a5a20f415 diff --git a/metadata/md5-cache/dev-util/premake-4.3-r1 b/metadata/md5-cache/dev-util/premake-4.3-r1 new file mode 100644 index 000000000000..e4a28674c04b --- /dev/null +++ b/metadata/md5-cache/dev-util/premake-4.3-r1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile install prepare +DEPEND=app-arch/unzip +DESCRIPTION=A makefile generation tool +EAPI=5 +HOMEPAGE=http://industriousone.com/premake +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=BSD +SLOT=4 +SRC_URI=mirror://sourceforge/premake/premake-4.3-src.zip +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=d6c3fa7c27a6a49ec6d51db7bb1a3e28 diff --git a/metadata/md5-cache/dev-util/rbtools-0.4.3 b/metadata/md5-cache/dev-util/rbtools-0.4.3 index 6313752793ee..c039c4d1f026 100644 --- a/metadata/md5-cache/dev-util/rbtools-0.4.3 +++ b/metadata/md5-cache/dev-util/rbtools-0.4.3 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://downloads.reviewboard.org/releases/RBTools/0.4/RBTools-0.4.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=9a78ce38aede8547ecf3a57427e0781d 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 427ca9b90c04..246ae7f3bbce 100644 --- a/metadata/md5-cache/dev-util/scons-2.2.0-r1 +++ b/metadata/md5-cache/dev-util/scons-2.2.0-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[threads(+)] ) python_targets_python2_6? ( dev-lang/python:2.6[threads(+)] ) python_targets_python2_7? ( dev-lang/python:2.7[threads(+)] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=57663cbf6bc57f517d8c4cf772c3e4e2 diff --git a/metadata/md5-cache/dev-util/stubgen-2.08 b/metadata/md5-cache/dev-util/stubgen-2.08 index 212a9b1a8d12..a3e27330ea3e 100644 --- a/metadata/md5-cache/dev-util/stubgen-2.08 +++ b/metadata/md5-cache/dev-util/stubgen-2.08 @@ -2,9 +2,9 @@ DEFINED_PHASES=compile install DESCRIPTION=a member function stub generator for C++ EAPI=4 HOMEPAGE=http://www.radwin.org/michael/projects/stubgen/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=BSD SLOT=0 SRC_URI=http://www.radwin.org/michael/projects/stubgen/dist/stubgen-2.08.tar.gz _eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=5e538d1a37e3f14ca07329e7e25ab9d4 +_md5_=f7b9ac38d49d4eadfea120a2329fadc4 diff --git a/metadata/md5-cache/dev-util/synopsis-0.13 b/metadata/md5-cache/dev-util/synopsis-0.13 index 9b96be3ca2fb..176b0698993d 100644 --- a/metadata/md5-cache/dev-util/synopsis-0.13 +++ b/metadata/md5-cache/dev-util/synopsis-0.13 @@ -9,5 +9,5 @@ LICENSE=GPL-2 LGPL-2.1 RDEPEND=dev-libs/boehm-gc media-gfx/graphviz python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://synopsis.fresco.org/download/synopsis-0.13.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=10b9d86cbf31985db82500d034a68e75 diff --git a/metadata/md5-cache/dev-util/valgrind-3.6.1 b/metadata/md5-cache/dev-util/valgrind-3.6.1 index ba11b830ac69..641ce6fd7641 100644 --- a/metadata/md5-cache/dev-util/valgrind-3.6.1 +++ b/metadata/md5-cache/dev-util/valgrind-3.6.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=mpi? ( virtual/mpi ) SLOT=0 SRC_URI=http://www.valgrind.org/downloads/valgrind-3.6.1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3ddb263dda992cde54ae58d3a527107b diff --git a/metadata/md5-cache/dev-util/valgrind-3.6.1-r1 b/metadata/md5-cache/dev-util/valgrind-3.6.1-r1 index 9a3ff950ae79..c45ba984bc83 100644 --- a/metadata/md5-cache/dev-util/valgrind-3.6.1-r1 +++ b/metadata/md5-cache/dev-util/valgrind-3.6.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=mpi? ( virtual/mpi ) SLOT=0 SRC_URI=http://www.valgrind.org/downloads/valgrind-3.6.1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=146bcb073cf691ff2562362484b18547 diff --git a/metadata/md5-cache/dev-util/valgrind-3.6.1-r3 b/metadata/md5-cache/dev-util/valgrind-3.6.1-r3 index 5b18e9b6741c..01e7663b0c6d 100644 --- a/metadata/md5-cache/dev-util/valgrind-3.6.1-r3 +++ b/metadata/md5-cache/dev-util/valgrind-3.6.1-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=mpi? ( virtual/mpi ) SLOT=0 SRC_URI=http://www.valgrind.org/downloads/valgrind-3.6.1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5821294d5a6cd83c441294b463647879 diff --git a/metadata/md5-cache/dev-util/valgrind-3.6.1-r4 b/metadata/md5-cache/dev-util/valgrind-3.6.1-r4 index c56e0fd57973..2c79a499531e 100644 --- a/metadata/md5-cache/dev-util/valgrind-3.6.1-r4 +++ b/metadata/md5-cache/dev-util/valgrind-3.6.1-r4 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=mpi? ( virtual/mpi ) SLOT=0 SRC_URI=http://www.valgrind.org/downloads/valgrind-3.6.1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1678f5ffdadeba0927c603c44e9d2da5 diff --git a/metadata/md5-cache/dev-util/valgrind-3.7.0-r4 b/metadata/md5-cache/dev-util/valgrind-3.7.0-r4 index c7fb10b14743..17a616d44825 100644 --- a/metadata/md5-cache/dev-util/valgrind-3.7.0-r4 +++ b/metadata/md5-cache/dev-util/valgrind-3.7.0-r4 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=mpi? ( virtual/mpi ) SLOT=0 SRC_URI=http://www.valgrind.org/downloads/valgrind-3.7.0.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=98b4c203a48b421640c9d1fa820f8ae5 diff --git a/metadata/md5-cache/dev-util/valgrind-3.8.0 b/metadata/md5-cache/dev-util/valgrind-3.8.0 index e7afe2bb6815..cc176d5ff757 100644 --- a/metadata/md5-cache/dev-util/valgrind-3.8.0 +++ b/metadata/md5-cache/dev-util/valgrind-3.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=mpi? ( virtual/mpi ) SLOT=0 SRC_URI=http://www.valgrind.org/downloads/valgrind-3.8.0.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a40f15a22d93492f1bf3751444dee4f1 diff --git a/metadata/md5-cache/dev-util/valgrind-3.8.1 b/metadata/md5-cache/dev-util/valgrind-3.8.1 index 4575d51f16d1..7ad0ff118561 100644 --- a/metadata/md5-cache/dev-util/valgrind-3.8.1 +++ b/metadata/md5-cache/dev-util/valgrind-3.8.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=mpi? ( virtual/mpi ) SLOT=0 SRC_URI=http://www.valgrind.org/downloads/valgrind-3.8.1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=40bffaacf6c341db6639810340b4a7eb 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 1266a524d646..a13682d87f81 100644 --- a/metadata/md5-cache/dev-util/xxdiff-4.0_beta1_p20110426 +++ b/metadata/md5-cache/dev-util/xxdiff-4.0_beta1_p20110426 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-qt/qtgui:4 python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://gentoo/xxdiff-4.0_beta1_p20110426.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f944a45138c332cecea84aba82b1a7a1 diff --git a/metadata/md5-cache/dev-vcs/mercurial-2.5.2 b/metadata/md5-cache/dev-vcs/mercurial-2.5.2 index 36e4ccf82c0f..e7d4c97f7ac7 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-2.5.2 +++ b/metadata/md5-cache/dev-vcs/mercurial-2.5.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-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_5? ( dev-lang/python:2.5[threads] ) python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://mercurial.selenic.com/release/mercurial-2.5.2.tar.gz -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a0d6f3c80cbf9dee818a4e2bd44f7c48 diff --git a/metadata/md5-cache/dev-vcs/mercurial-2.5.4 b/metadata/md5-cache/dev-vcs/mercurial-2.5.4 new file mode 100644 index 000000000000..2689149df1e7 --- /dev/null +++ b/metadata/md5-cache/dev-vcs/mercurial-2.5.4 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm prepare test +DEPEND=emacs? ( virtual/emacs ) test? ( app-arch/unzip dev-python/pygments[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) python_targets_python2_5? ( dev-lang/python:2.5[threads] ) python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +DESCRIPTION=Scalable distributed SCM +EAPI=5 +HOMEPAGE=http://mercurial.selenic.com/ +IUSE=bugzilla emacs gpg test tk zsh-completion python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=bugzilla? ( dev-python/mysql-python[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-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_5? ( dev-lang/python:2.5[threads] ) python_targets_python2_6? ( dev-lang/python:2.6[threads] ) python_targets_python2_7? ( dev-lang/python:2.7[threads] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] +SLOT=0 +SRC_URI=http://mercurial.selenic.com/release/mercurial-2.5.4.tar.gz +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=00d0be53348e69283e94c66435f7678a diff --git a/metadata/md5-cache/dev-vcs/mercurial-9999 b/metadata/md5-cache/dev-vcs/mercurial-9999 index 654597529cef..43373490c39b 100644 --- a/metadata/md5-cache/dev-vcs/mercurial-9999 +++ b/metadata/md5-cache/dev-vcs/mercurial-9999 @@ -8,4 +8,4 @@ LICENSE=GPL-2 RDEPEND=bugzilla? ( dev-python/mysql-python ) gpg? ( app-crypt/gnupg ) tk? ( dev-lang/tk ) zsh-completion? ( app-shells/zsh ) app-misc/ca-certificates =dev-lang/python-2* =dev-lang/python-2*[threads] SLOT=0 _eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 mercurial 7e8c2c49cfd90701e20a78850f066802 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7adf8b51a4d9a6ab9d309d84a5dbe78d +_md5_=39439b44d0e40bba6f5099fc19dabb8d diff --git a/metadata/md5-cache/dev-vcs/subversion-1.7.8 b/metadata/md5-cache/dev-vcs/subversion-1.7.8 index d81788635258..72298861ef9f 100644 --- a/metadata/md5-cache/dev-vcs/subversion-1.7.8 +++ b/metadata/md5-cache/dev-vcs/subversion-1.7.8 @@ -9,5 +9,5 @@ LICENSE=Subversion GPL-2 RDEPEND=>=dev-db/sqlite-3.4 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-libs/expat sys-libs/zlib berkdb? ( >=sys-libs/db-4.0.14 ) ctypes-python? ( python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) gnome-keyring? ( dev-libs/glib:2 sys-apps/dbus gnome-base/gnome-keyring ) kde? ( sys-apps/dbus dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 >=kde-base/kdelibs-4:4 ) perl? ( dev-lang/perl ) python? ( python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ruby? ( >=dev-lang/ruby-1.8.2:1.8 ) sasl? ( dev-libs/cyrus-sasl ) webdav-neon? ( >=net-libs/neon-0.28 ) webdav-serf? ( >=net-libs/serf-0.3.0 ) apache2? ( www-servers/apache[apache2_modules_dav] ) java? ( >=virtual/jre-1.5 ) kde? ( kde-base/kwalletd ) nls? ( virtual/libintl ) perl? ( dev-perl/URI ) apache2? ( =www-servers/apache-2* ) java? ( >=dev-java/java-config-2.1.9-r1 ) dev-lang/perl[-build] SLOT=0 SRC_URI=mirror://apache/subversion/subversion-1.7.8.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 db-use 2f5d6a2718559b90a51648d8ff58be83 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 db-use 2f5d6a2718559b90a51648d8ff58be83 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd distutils-r1 164527827998977f18bc3a1eccc88b4a elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=25aaa0ceac716960d43da2bcba3170a1 diff --git a/metadata/md5-cache/dev-vcs/subversion-1.7.9 b/metadata/md5-cache/dev-vcs/subversion-1.7.9 new file mode 100644 index 000000000000..5d03066c7cd3 --- /dev/null +++ b/metadata/md5-cache/dev-vcs/subversion-1.7.9 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile config configure install postinst postrm preinst prepare setup test unpack +DEPEND=>=dev-db/sqlite-3.4 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-libs/expat sys-libs/zlib berkdb? ( >=sys-libs/db-4.0.14 ) ctypes-python? ( python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) gnome-keyring? ( dev-libs/glib:2 sys-apps/dbus gnome-base/gnome-keyring ) kde? ( sys-apps/dbus dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 >=kde-base/kdelibs-4:4 ) perl? ( dev-lang/perl ) python? ( python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ruby? ( >=dev-lang/ruby-1.8.2:1.8 ) sasl? ( dev-libs/cyrus-sasl ) webdav-neon? ( >=net-libs/neon-0.28 ) webdav-serf? ( >=net-libs/serf-0.3.0 ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] !!=virtual/jdk-1.5 ) kde? ( virtual/pkgconfig ) nls? ( sys-devel/gettext ) webdav-neon? ( virtual/pkgconfig ) apache2? ( =www-servers/apache-2* ) sys-devel/automake >=sys-devel/autoconf-2.68 sys-devel/libtool java? ( >=dev-java/java-config-2.1.9-r1 ) dev-lang/perl[-build] +DESCRIPTION=Advanced version control system +EAPI=5 +HOMEPAGE=http://subversion.apache.org/ +IUSE=apache2 berkdb ctypes-python debug doc +dso extras gnome-keyring java kde nls perl python ruby sasl vim-syntax +webdav-neon webdav-serf apache2 python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 elibc_FreeBSD java +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +LICENSE=Subversion GPL-2 +RDEPEND=>=dev-db/sqlite-3.4 >=dev-libs/apr-1.3:1 >=dev-libs/apr-util-1.3:1 dev-libs/expat sys-libs/zlib berkdb? ( >=sys-libs/db-4.0.14 ) ctypes-python? ( python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) gnome-keyring? ( dev-libs/glib:2 sys-apps/dbus gnome-base/gnome-keyring ) kde? ( sys-apps/dbus dev-qt/qtcore:4 dev-qt/qtdbus:4 dev-qt/qtgui:4 >=kde-base/kdelibs-4:4 ) perl? ( dev-lang/perl ) python? ( python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) ruby? ( >=dev-lang/ruby-1.8.2:1.8 ) sasl? ( dev-libs/cyrus-sasl ) webdav-neon? ( >=net-libs/neon-0.28 ) webdav-serf? ( >=net-libs/serf-0.3.0 ) apache2? ( www-servers/apache[apache2_modules_dav] ) java? ( >=virtual/jre-1.5 ) kde? ( kde-base/kwalletd ) nls? ( virtual/libintl ) perl? ( dev-perl/URI ) apache2? ( =www-servers/apache-2* ) java? ( >=dev-java/java-config-2.1.9-r1 ) dev-lang/perl[-build] +SLOT=0 +SRC_URI=mirror://apache/subversion/subversion-1.7.9.tar.bz2 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 db-use 2f5d6a2718559b90a51648d8ff58be83 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd distutils-r1 164527827998977f18bc3a1eccc88b4a elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=3c8aece70c2399a78571d1f0c89c07c3 diff --git a/metadata/md5-cache/dev-vcs/tortoisehg-2.7 b/metadata/md5-cache/dev-vcs/tortoisehg-2.7 index 9c53b620065c..eb74316dce65 100644 --- a/metadata/md5-cache/dev-vcs/tortoisehg-2.7 +++ b/metadata/md5-cache/dev-vcs/tortoisehg-2.7 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-vcs/mercurial-2.4 =dev-vcs/mercurial-2.4 =dev-vcs/mercurial-2.4 =sys-libs/glibc-2.4 >=sys-devel/gcc-4.3.0 !amd64? ( gnome-base/libglade RESTRICT=fetch strip SLOT=0 SRC_URI=ShadowgroundsBeta12.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0783c81026cbfbddc932cd14d1a08ca9 diff --git a/metadata/md5-cache/games-action/shadowgrounds-survivor-bin-0_beta11 b/metadata/md5-cache/games-action/shadowgrounds-survivor-bin-0_beta11 index be57979ac73d..ba8c406018c3 100644 --- a/metadata/md5-cache/games-action/shadowgrounds-survivor-bin-0_beta11 +++ b/metadata/md5-cache/games-action/shadowgrounds-survivor-bin-0_beta11 @@ -8,5 +8,5 @@ RDEPEND=>=sys-libs/glibc-2.4 >=sys-devel/gcc-4.3.0 !amd64? ( gnome-base/libglade RESTRICT=fetch strip SLOT=0 SRC_URI=SurvivorBeta11.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8156c03df43564679ad60fa6c638cd1a 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 57b9e9f2ff52..da8d5b32b33e 100644 --- a/metadata/md5-cache/games-action/slune-1.0.15-r1 +++ b/metadata/md5-cache/games-action/slune-1.0.15-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=virtual/opengl >=media-libs/libsdl-1.2.6 >=dev-python/soya-0.9 >=dev-python/py2play-0.1.9 >=dev-python/pyopenal-0.1.3 >=dev-python/pyogg-1.1 >=dev-python/pyvorbis-1.1 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://download.gna.org/slune/Slune-1.0.15.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=464bb57e70077a9e0f47e4b5d686ad44 diff --git a/metadata/md5-cache/games-action/spacetripper-demo-1 b/metadata/md5-cache/games-action/spacetripper-demo-1 index bda2e30b6424..c10a896647e0 100644 --- a/metadata/md5-cache/games-action/spacetripper-demo-1 +++ b/metadata/md5-cache/games-action/spacetripper-demo-1 @@ -7,5 +7,5 @@ RDEPEND=virtual/opengl amd64? ( app-emulation/emul-linux-x86-xlibs app-emulation RESTRICT=strip SLOT=0 SRC_URI=http://www.btinternet.com/~bongpig/spacetripperdemo.sh -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b8e8f2e89751aaaf16e144b0cf9f81d5 diff --git a/metadata/md5-cache/games-action/super-hexagon-15 b/metadata/md5-cache/games-action/super-hexagon-15 index 225c6e13e345..58a791bb4146 100644 --- a/metadata/md5-cache/games-action/super-hexagon-15 +++ b/metadata/md5-cache/games-action/super-hexagon-15 @@ -10,5 +10,5 @@ RDEPEND=virtual/glu virtual/opengl x11-libs/libX11 x11-libs/libXau x11-libs/libx RESTRICT=bindist fetch SLOT=0 SRC_URI=super-hexagon-linux-15-bin -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8283bb9ffb3d78ae547a20c23c7831b6 diff --git a/metadata/md5-cache/games-action/trine-bin-1.08 b/metadata/md5-cache/games-action/trine-bin-1.08 index 7552a8a5f625..814f584cbfc3 100644 --- a/metadata/md5-cache/games-action/trine-bin-1.08 +++ b/metadata/md5-cache/games-action/trine-bin-1.08 @@ -8,5 +8,5 @@ RDEPEND=>=sys-libs/glibc-2.4 >=sys-devel/gcc-4.3.0 dev-libs/libx86 gnome-base/li RESTRICT=fetch strip SLOT=0 SRC_URI=Trine.64.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1554bfd58315b7968833f96812b2b3a6 diff --git a/metadata/md5-cache/games-action/trine2-1.16 b/metadata/md5-cache/games-action/trine2-1.16 index d4c1ef2a366e..4e78a3fd3a9a 100644 --- a/metadata/md5-cache/games-action/trine2-1.16 +++ b/metadata/md5-cache/games-action/trine2-1.16 @@ -10,5 +10,5 @@ RDEPEND=amd64? ( app-emulation/emul-linux-x86-baselibs app-emulation/emul-linux- RESTRICT=fetch bindist SLOT=0 SRC_URI=trine2_linux_installer.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1581fa92ee84c3e90dfbd69b5fe931b5 diff --git a/metadata/md5-cache/games-arcade/aquaria-1.1.3 b/metadata/md5-cache/games-arcade/aquaria-1.1.3 index 55abcca263fc..6c7f44304225 100644 --- a/metadata/md5-cache/games-arcade/aquaria-1.1.3 +++ b/metadata/md5-cache/games-arcade/aquaria-1.1.3 @@ -8,5 +8,5 @@ RDEPEND=x86? ( media-libs/libsdl >=media-libs/openal-1.5 ) amd64? ( app-emulatio RESTRICT=strip fetch SLOT=0 SRC_URI=aquaria-lnx-humble-bundle.mojo.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8c74e9bc04ac1ae41cc4ce1b9ccd86d8 diff --git a/metadata/md5-cache/games-arcade/gunocide2ex-1.0 b/metadata/md5-cache/games-arcade/gunocide2ex-1.0 index 7c1494c2cc8a..b32067a6a595 100644 --- a/metadata/md5-cache/games-arcade/gunocide2ex-1.0 +++ b/metadata/md5-cache/games-arcade/gunocide2ex-1.0 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/libsdl[video] media-libs/sdl-ttf media-libs/sdl-mixer[vorbis] SLOT=0 SRC_URI=mirror://sourceforge/g2ex/g2ex-setup.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=55703f1db832eaaa77d9b9aec0fb3c4b diff --git a/metadata/md5-cache/games-arcade/marbleblast-demo-1.3 b/metadata/md5-cache/games-arcade/marbleblast-demo-1.3 index d7bae8fe5f5f..8b21f7584e20 100644 --- a/metadata/md5-cache/games-arcade/marbleblast-demo-1.3 +++ b/metadata/md5-cache/games-arcade/marbleblast-demo-1.3 @@ -6,5 +6,5 @@ LICENSE=MARBLEBLAST RESTRICT=strip SLOT=0 SRC_URI=ftp://ggdev-1.homelan.com/marbleblast/MarbleBlastDemo-1.3.sh.bin -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=05a1b56f5d6af8c05da05daa3cd6cc18 diff --git a/metadata/md5-cache/games-arcade/marbleblastgold-demo-1.4.1 b/metadata/md5-cache/games-arcade/marbleblastgold-demo-1.4.1 index bc0e9489de5e..05a8fdc8e69e 100644 --- a/metadata/md5-cache/games-arcade/marbleblastgold-demo-1.4.1 +++ b/metadata/md5-cache/games-arcade/marbleblastgold-demo-1.4.1 @@ -7,5 +7,5 @@ RDEPEND=sys-libs/glibc RESTRICT=strip SLOT=0 SRC_URI=ftp://ggdev-1.homelan.com/marbleblastgold/MarbleBlastGoldDemo-1.4.1.sh.bin -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=32368d730087faabf049e2d9ab868f92 diff --git a/metadata/md5-cache/games-arcade/thinktanks-demo-1.1-r1 b/metadata/md5-cache/games-arcade/thinktanks-demo-1.1-r1 index a486f8423a20..4084313aa65f 100644 --- a/metadata/md5-cache/games-arcade/thinktanks-demo-1.1-r1 +++ b/metadata/md5-cache/games-arcade/thinktanks-demo-1.1-r1 @@ -7,5 +7,5 @@ RDEPEND=media-libs/libsdl media-libs/libvorbis RESTRICT=strip SLOT=0 SRC_URI=ftp://ggdev-1.homelan.com/thinktanks/ThinkTanksDemo_v1.1.sh.bin -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d26faac102445bc7d88161f64ae28f5a diff --git a/metadata/md5-cache/games-board/pychess-0.10.1-r1 b/metadata/md5-cache/games-board/pychess-0.10.1-r1 index b5e9e717c062..29bbc3bb82a2 100644 --- a/metadata/md5-cache/games-board/pychess-0.10.1-r1 +++ b/metadata/md5-cache/games-board/pychess-0.10.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/librsvg-python dev-python/pycairo dev-python/pygobject:2 dev-python/pygtk dev-python/pygtksourceview gstreamer? ( dev-python/gst-python ) dev-python/gconf-python x11-themes/gnome-icon-theme python_targets_python2_6? ( dev-lang/python:2.6[sqlite] ) python_targets_python2_7? ( dev-lang/python: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(-)] SLOT=0 SRC_URI=http://pychess.googlecode.com/files/pychess-0.10.1.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=598fe3f3130b65663aa90b9c179583f1 diff --git a/metadata/md5-cache/games-board/pysolfc-2.0-r1 b/metadata/md5-cache/games-board/pysolfc-2.0-r1 index ae8ff66066b8..25a95daef8de 100644 --- a/metadata/md5-cache/games-board/pysolfc-2.0-r1 +++ b/metadata/md5-cache/games-board/pysolfc-2.0-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=sound? ( dev-python/pygame ) !minimal? ( dev-python/imaging[tk] dev-tcltk/tktable ) python_targets_python2_6? ( dev-lang/python:2.6[tk] ) python_targets_python2_7? ( dev-lang/python:2.7[tk] ) 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/pysolfc/PySolFC-2.0.tar.bz2 extra-cardsets? ( mirror://sourceforge/pysolfc/PySolFC-Cardsets-2.0.tar.bz2 ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e417186b19205e98d58bc734cf773034 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 a671dfead2ed..da92dea9c8bb 100644 --- a/metadata/md5-cache/games-emulation/gfceux-2.1.1-r1 +++ b/metadata/md5-cache/games-emulation/gfceux-2.1.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/pygtk games-emulation/fceux python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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/fceultra/fceux-2.1.1.src.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f854e4133a2987ab72b1d84fab0dcf28 diff --git a/metadata/md5-cache/games-emulation/zsnes-1.51-r4 b/metadata/md5-cache/games-emulation/zsnes-1.51-r4 index 6ccb0c227053..06c0073911ab 100644 --- a/metadata/md5-cache/games-emulation/zsnes-1.51-r4 +++ b/metadata/md5-cache/games-emulation/zsnes-1.51-r4 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/libsdl[audio,video] >=sys-libs/zlib-1.2.3-r1 amd64? ( >=app-emulation/emul-linux-x86-sdl-10.1 ) ao? ( media-libs/libao ) debug? ( sys-libs/ncurses ) opengl? ( virtual/opengl ) png? ( media-libs/libpng ) SLOT=0 SRC_URI=mirror://sourceforge/zsnes/zsnes151src.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games 0fb7637597e0869f6c8be79b11d0135a libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games 0fb7637597e0869f6c8be79b11d0135a libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3700f622203a9d849532e65a643604df 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 83dbca56effd..66808b579e86 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 ) 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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d449594fb83051213e7d07d7f5cdc242 diff --git a/metadata/md5-cache/games-engines/renpy-6.15.3 b/metadata/md5-cache/games-engines/renpy-6.15.3 index 7972fdb7f19b..76a099aa7b42 100644 --- a/metadata/md5-cache/games-engines/renpy-6.15.3 +++ b/metadata/md5-cache/games-engines/renpy-6.15.3 @@ -10,5 +10,5 @@ RDEPEND=>=app-admin/eselect-renpy-0.2 dev-libs/fribidi dev-python/pygame[X,pytho REQUIRED_USE=examples? ( development ) SLOT=6.15 SRC_URI=http://www.renpy.org/dl/6.15.3/renpy-6.15.3-source.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=cf5220e56339b1ee100732d0f677590c diff --git a/metadata/md5-cache/games-fps/darkplaces-20110628 b/metadata/md5-cache/games-fps/darkplaces-20110628 index f603bda11e8a..064fea41b87a 100644 --- a/metadata/md5-cache/games-fps/darkplaces-20110628 +++ b/metadata/md5-cache/games-fps/darkplaces-20110628 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=net-misc/curl cdinstall? ( games-fps/quake1-data ) demo? ( games-fps/quake1-demodata ) textures? ( >=games-fps/quake1-textures-20050820 ) opengl? ( virtual/jpeg media-libs/libogg media-libs/libvorbis virtual/opengl alsa? ( media-libs/alsa-lib ) sdl? ( media-libs/libsdl ) x11-libs/libX11 x11-libs/libXpm x11-libs/libXxf86dga x11-libs/libXxf86vm ) !opengl? ( sdl? ( virtual/jpeg media-libs/libogg media-libs/libvorbis virtual/opengl alsa? ( media-libs/alsa-lib ) sdl? ( media-libs/libsdl ) x11-libs/libX11 x11-libs/libXpm x11-libs/libXxf86dga x11-libs/libXxf86vm ) ) !opengl? ( !sdl? ( !dedicated? ( virtual/jpeg media-libs/libogg media-libs/libvorbis virtual/opengl alsa? ( media-libs/alsa-lib ) sdl? ( media-libs/libsdl ) x11-libs/libX11 x11-libs/libXpm x11-libs/libXxf86dga x11-libs/libXxf86vm ) ) ) SLOT=0 SRC_URI=http://icculus.org/twilight/darkplaces/files/darkplacesengine20110628.zip lights? ( http://www.fuhquake.net/files/extras/fuhquake-lits.rar http://www.kgbsyndicate.com/romi/id1.pk3 ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b8dd5285787eb467709ab6b9403e8fb5 diff --git a/metadata/md5-cache/games-fps/darkplaces-20121222 b/metadata/md5-cache/games-fps/darkplaces-20121222 index 3da3f60c34d4..16ba306bd835 100644 --- a/metadata/md5-cache/games-fps/darkplaces-20121222 +++ b/metadata/md5-cache/games-fps/darkplaces-20121222 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=net-misc/curl cdinstall? ( games-fps/quake1-data ) demo? ( games-fps/quake1-demodata ) textures? ( >=games-fps/quake1-textures-20050820 ) opengl? ( virtual/jpeg media-libs/libogg media-libs/libvorbis virtual/opengl alsa? ( media-libs/alsa-lib ) sdl? ( media-libs/libsdl ) x11-libs/libX11 x11-libs/libXpm x11-libs/libXxf86dga x11-libs/libXxf86vm ) !opengl? ( sdl? ( virtual/jpeg media-libs/libogg media-libs/libvorbis virtual/opengl alsa? ( media-libs/alsa-lib ) sdl? ( media-libs/libsdl ) x11-libs/libX11 x11-libs/libXpm x11-libs/libXxf86dga x11-libs/libXxf86vm ) ) !opengl? ( !sdl? ( !dedicated? ( virtual/jpeg media-libs/libogg media-libs/libvorbis virtual/opengl alsa? ( media-libs/alsa-lib ) sdl? ( media-libs/libsdl ) x11-libs/libX11 x11-libs/libXpm x11-libs/libXxf86dga x11-libs/libXxf86vm ) ) ) SLOT=0 SRC_URI=http://icculus.org/twilight/darkplaces/files/darkplacesengine20121222.zip lights? ( http://www.fuhquake.net/files/extras/fuhquake-lits.rar http://www.kgbsyndicate.com/romi/id1.pk3 ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d351c0bbca694780bf3739b45db5b1cc diff --git a/metadata/md5-cache/games-fps/doom3-1.3.1304 b/metadata/md5-cache/games-fps/doom3-1.3.1304 index 47e29db93d9d..2a08f35fb33d 100644 --- a/metadata/md5-cache/games-fps/doom3-1.3.1304 +++ b/metadata/md5-cache/games-fps/doom3-1.3.1304 @@ -9,5 +9,5 @@ RDEPEND=sys-libs/glibc opengl? ( virtual/opengl ) alsa? ( >=media-libs/alsa-lib- RESTRICT=strip SLOT=0 SRC_URI=mirror://idsoftware/doom3/linux/doom3-linux-1.3.1.1304.x86.run http://zerowing.idsoftware.com/linux/doom3.png -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f56c735249a5f5eee0039e48e649b374 diff --git a/metadata/md5-cache/games-fps/doom3-demo-1.1.1286 b/metadata/md5-cache/games-fps/doom3-demo-1.1.1286 index 1511ec023bea..00e313fce04d 100644 --- a/metadata/md5-cache/games-fps/doom3-demo-1.1.1286 +++ b/metadata/md5-cache/games-fps/doom3-demo-1.1.1286 @@ -8,5 +8,5 @@ RDEPEND=opengl? ( virtual/opengl ) sys-libs/glibc amd64? ( app-emulation/emul-li RESTRICT=strip mirror SLOT=0 SRC_URI=mirror://3dgamers/doom3/doom3-linux-1.1.1286-demo.x86.run mirror://idsoftware/doom3/linux/doom3-linux-1.1.1286-demo.x86.run mirror://gentoo/doom3.png -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e795049ecb52595d427f1bfe5c2471f4 diff --git a/metadata/md5-cache/games-fps/duke3d-20040817-r2 b/metadata/md5-cache/games-fps/duke3d-20040817-r2 index e67bd850e2a4..ccc053e01373 100644 --- a/metadata/md5-cache/games-fps/duke3d-20040817-r2 +++ b/metadata/md5-cache/games-fps/duke3d-20040817-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/libsdl media-libs/sdl-mixer media-sound/timidity++ media-sound/timidity-eawpatches perl? ( dev-lang/perl[-ithreads] ) opengl? ( virtual/opengl ) SLOT=0 SRC_URI=mirror://gentoo/duke3d-20040817.tar.bz2 demo? ( ftp://ftp.3drealms.com/share/3dduke13.zip ftp://ftp.planetmirror.com/pub/gameworld/downloads/3dduke13.zip ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8e871badb7e11d6f94c6047639fe1b25 diff --git a/metadata/md5-cache/games-fps/enemy-territory-2.60b b/metadata/md5-cache/games-fps/enemy-territory-2.60b index 9e21b83bc04e..1835924516d0 100644 --- a/metadata/md5-cache/games-fps/enemy-territory-2.60b +++ b/metadata/md5-cache/games-fps/enemy-territory-2.60b @@ -9,5 +9,5 @@ RDEPEND=sys-libs/glibc dedicated? ( app-misc/screen ) !dedicated? ( virtual/open RESTRICT=mirror strip SLOT=0 SRC_URI=mirror://3dgamers/wolfensteinet/et-linux-2.60.x86.run mirror://idsoftware/et/linux/et-linux-2.60.x86.run ftp://ftp.red.telefonica-wholesale.net/GAMES/ET/linux/et-linux-2.60.x86.run mirror://idsoftware/et/ET-2.60b.zip dedicated? ( http://dev.gentoo.org/~wolf31o2/sources/dump/enemy-territory-all-0.1.tar.bz2 mirror://gentoo/enemy-territory-all-0.1.tar.bz2 ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ab69666ffaad9151abdce189735c06c0 diff --git a/metadata/md5-cache/games-fps/enemy-territory-fortress-1.6-r3 b/metadata/md5-cache/games-fps/enemy-territory-fortress-1.6-r3 index ede6b3a34d98..f63cef4fee63 100644 --- a/metadata/md5-cache/games-fps/enemy-territory-fortress-1.6-r3 +++ b/metadata/md5-cache/games-fps/enemy-territory-fortress-1.6-r3 @@ -10,5 +10,5 @@ RDEPEND=dedicated? ( games-fps/enemy-territory[dedicated] ) opengl? ( || ( games RESTRICT=mirror strip SLOT=0 SRC_URI=http://liflg.j0ke.net/files/final/etf_1.6-english-5.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e218c6121a258d0415326431207c32bb diff --git a/metadata/md5-cache/games-fps/etqw-demo-2.0_p1 b/metadata/md5-cache/games-fps/etqw-demo-2.0_p1 index 372d2781ac38..4736f4e7c325 100644 --- a/metadata/md5-cache/games-fps/etqw-demo-2.0_p1 +++ b/metadata/md5-cache/games-fps/etqw-demo-2.0_p1 @@ -8,5 +8,5 @@ RDEPEND=virtual/opengl x86? ( media-libs/libsdl x11-libs/libX11 x11-libs/libXau RESTRICT=strip mirror SLOT=0 SRC_URI=mirror://idsoftware/etqw/ETQW-demo2-client-full.r1.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=687573270ba902b5f41b9e413432521b diff --git a/metadata/md5-cache/games-fps/legends-0.4.1.43 b/metadata/md5-cache/games-fps/legends-0.4.1.43 index 106f20a9bbd5..be3aa5a82ff8 100644 --- a/metadata/md5-cache/games-fps/legends-0.4.1.43 +++ b/metadata/md5-cache/games-fps/legends-0.4.1.43 @@ -8,5 +8,5 @@ RDEPEND=>=media-libs/libsdl-1.2 media-libs/libogg media-libs/libvorbis media-lib RESTRICT=strip SLOT=0 SRC_URI=http://legendsthegame.net/files/legends_linux-0.4.1.43.run mirror://gentoo/legends.png -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a58d8d06e873321bc344532fda3d0db0 diff --git a/metadata/md5-cache/games-fps/postal2-1409.2-r1 b/metadata/md5-cache/games-fps/postal2-1409.2-r1 index 9438602e3a57..22a41dd19617 100644 --- a/metadata/md5-cache/games-fps/postal2-1409.2-r1 +++ b/metadata/md5-cache/games-fps/postal2-1409.2-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/glibc virtual/opengl virtual/libstdc++:3.3 amd64? ( app-emulati RESTRICT=strip SLOT=0 SRC_URI=http://updatefiles.linuxgamepublishing.com/postal2/postal2-1409.1.run http://updatefiles.linuxgamepublishing.com/postal2/postal2-1409.2.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b1542a1a25d7a2749c5221ad9065b4b2 diff --git a/metadata/md5-cache/games-fps/postal2mp-demo-1407-r1 b/metadata/md5-cache/games-fps/postal2mp-demo-1407-r1 index 781358b88106..e0253066f4ad 100644 --- a/metadata/md5-cache/games-fps/postal2mp-demo-1407-r1 +++ b/metadata/md5-cache/games-fps/postal2mp-demo-1407-r1 @@ -8,5 +8,5 @@ RDEPEND=virtual/opengl sys-libs/glibc amd64? ( app-emulation/emul-linux-x86-sdl RESTRICT=mirror strip SLOT=0 SRC_URI=http://demofiles.linuxgamepublishing.com/postal2/postal2_demo.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5c7427e44b69b929aabd97269506de0e diff --git a/metadata/md5-cache/games-fps/quake2-data-3.20 b/metadata/md5-cache/games-fps/quake2-data-3.20 index 4c3d1ea1909b..b723801423e9 100644 --- a/metadata/md5-cache/games-fps/quake2-data-3.20 +++ b/metadata/md5-cache/games-fps/quake2-data-3.20 @@ -9,5 +9,5 @@ LICENSE=Q2EULA PROPERTIES=interactive SLOT=0 SRC_URI=mirror://idsoftware/quake2/q2-3.20-x86-full-ctf.exe -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fc9704f13046d873a71a7edfdc2fdcd8 diff --git a/metadata/md5-cache/games-fps/quake2-demodata-3.14 b/metadata/md5-cache/games-fps/quake2-demodata-3.14 index 7971a996301f..18643ac9af1c 100644 --- a/metadata/md5-cache/games-fps/quake2-demodata-3.14 +++ b/metadata/md5-cache/games-fps/quake2-demodata-3.14 @@ -7,5 +7,5 @@ KEYWORDS=~alpha ~amd64 ppc sparc x86 ~x86-fbsd LICENSE=quake2-demodata SLOT=0 SRC_URI=mirror://idsoftware/quake2/q2-314-demo-x86.exe -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c8564f09584a7b4b908be85767d9efe5 diff --git a/metadata/md5-cache/games-fps/quake3-bin-1.32c-r1 b/metadata/md5-cache/games-fps/quake3-bin-1.32c-r1 index a9c4c4893123..ebfad84662c1 100644 --- a/metadata/md5-cache/games-fps/quake3-bin-1.32c-r1 +++ b/metadata/md5-cache/games-fps/quake3-bin-1.32c-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/glibc dedicated? ( app-misc/screen ) amd64? ( app-emulation/emu RESTRICT=strip SLOT=0 SRC_URI=mirror://idsoftware/quake3/linux/linuxq3apoint-1.32b-3.x86.run mirror://idsoftware/quake3/quake3-1.32c.zip -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c3953673d96156b4a94a211f2a59328c diff --git a/metadata/md5-cache/games-fps/quake3-data-1.32b b/metadata/md5-cache/games-fps/quake3-data-1.32b index a8cb72ec4227..cb4c2a946aa5 100644 --- a/metadata/md5-cache/games-fps/quake3-data-1.32b +++ b/metadata/md5-cache/games-fps/quake3-data-1.32b @@ -7,5 +7,5 @@ LICENSE=Q3AEULA PROPERTIES=cdinstall? ( interactive ) SLOT=0 SRC_URI=mirror://idsoftware/quake3/linux/linuxq3apoint-1.32b-3.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bb8e2e258b81c43795d4c8fdea9c05a6 diff --git a/metadata/md5-cache/games-fps/quake3-demo-1.11 b/metadata/md5-cache/games-fps/quake3-demo-1.11 index 54a506db3088..27fee48f8bb9 100644 --- a/metadata/md5-cache/games-fps/quake3-demo-1.11 +++ b/metadata/md5-cache/games-fps/quake3-demo-1.11 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc dedicated? ( app-misc/screen ) amd64? ( app-emulation/emu RESTRICT=strip SLOT=0 SRC_URI=mirror://idsoftware/quake3/linux/linuxq3ademo-1.11-6.x86.gz.sh mirror://3dgamers/quake3arena/linuxq3ademo-1.11-6.x86.gz.sh -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f439498d4478810e77d88cb969fc743a diff --git a/metadata/md5-cache/games-fps/quake3-teamarena-1.32b b/metadata/md5-cache/games-fps/quake3-teamarena-1.32b index 0a65c449df53..964fab7ddd88 100644 --- a/metadata/md5-cache/games-fps/quake3-teamarena-1.32b +++ b/metadata/md5-cache/games-fps/quake3-teamarena-1.32b @@ -8,5 +8,5 @@ PROPERTIES=cdinstall? ( interactive ) RDEPEND=|| ( games-fps/quake3 games-fps/quake3-bin ) SLOT=0 SRC_URI=mirror://idsoftware/quake3/linux/linuxq3apoint-1.32b-3.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a15597e5a406721159dbb8ad044e46bf diff --git a/metadata/md5-cache/games-fps/quake4-bin-1.3.2 b/metadata/md5-cache/games-fps/quake4-bin-1.3.2 index f9668d19559e..099463525f17 100644 --- a/metadata/md5-cache/games-fps/quake4-bin-1.3.2 +++ b/metadata/md5-cache/games-fps/quake4-bin-1.3.2 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc dedicated? ( app-misc/screen ) amd64? ( app-emulation/emu RESTRICT=strip SLOT=0 SRC_URI=mirror://idsoftware/quake4/linux/quake4-linux-1.3-2.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=cbaf2d4ef9b031cf491ef357fa0aa580 diff --git a/metadata/md5-cache/games-fps/quake4-bin-1.4.2 b/metadata/md5-cache/games-fps/quake4-bin-1.4.2 index d1467fd716d1..8b4e9487f40e 100644 --- a/metadata/md5-cache/games-fps/quake4-bin-1.4.2 +++ b/metadata/md5-cache/games-fps/quake4-bin-1.4.2 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc dedicated? ( app-misc/screen ) amd64? ( app-emulation/emu RESTRICT=strip SLOT=0 SRC_URI=mirror://idsoftware/quake4/linux/quake4-linux-1.4.2.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c530479a4b7818aa1d3367c10deb0661 diff --git a/metadata/md5-cache/games-fps/quake4-demo-1.0 b/metadata/md5-cache/games-fps/quake4-demo-1.0 index c3d2617acb1d..f192d0ade6de 100644 --- a/metadata/md5-cache/games-fps/quake4-demo-1.0 +++ b/metadata/md5-cache/games-fps/quake4-demo-1.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc dedicated? ( app-misc/screen ) amd64? ( app-emulation/emu RESTRICT=strip SLOT=0 SRC_URI=mirror://idsoftware/quake4/demo/quake4-linux-1.0-demo.x86.run http://www.3ddownloads.com/Action/Quake%204/Demos/quake4-linux-1.0-demo.x86.run mirror://3dgamers/quake4/quake4-linux-1.0-demo.x86.run http://filebase.gmpf.de/quake4/quake4-linux-1.0-demo.x86.run http://www.holarse.de/mirror/quake4-linux-1.0-demo.x86.run http://sonic-lux.net/data/mirror/quake4/quake4-linux-1.0-demo.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=92d2ce990c2e733284e5304508fefdc9 diff --git a/metadata/md5-cache/games-fps/rtcw-1.41b b/metadata/md5-cache/games-fps/rtcw-1.41b index 9bf4e4cd5dd6..69e495506330 100644 --- a/metadata/md5-cache/games-fps/rtcw-1.41b +++ b/metadata/md5-cache/games-fps/rtcw-1.41b @@ -9,5 +9,5 @@ RDEPEND=sys-libs/glibc dedicated? ( app-misc/screen ) !dedicated? ( virtual/open RESTRICT=strip mirror SLOT=0 SRC_URI=mirror://idsoftware/wolf/linux/wolf-linux-GOTY-maps.x86.run mirror://idsoftware/wolf/linux/wolf-linux-1.41b.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=acfc0499ad3283d20b5560b500c77ecd diff --git a/metadata/md5-cache/games-fps/rtcwmp-demo-1.1 b/metadata/md5-cache/games-fps/rtcwmp-demo-1.1 index eb510a525362..b36569034245 100644 --- a/metadata/md5-cache/games-fps/rtcwmp-demo-1.1 +++ b/metadata/md5-cache/games-fps/rtcwmp-demo-1.1 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc dedicated? ( app-misc/screen ) !dedicated? ( virtual/open RESTRICT=strip mirror SLOT=0 SRC_URI=mirror://idsoftware/wolf/linux/old/wolfmpdemo-linux-1.1-MP.x86.run mirror://3dgamers/returnwolfenstein/wolfmpdemo-linux-1.1-MP.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2987fc19cf651fb2b2eda70a35ca6cdf diff --git a/metadata/md5-cache/games-fps/rtcwsp-demo-1.1b b/metadata/md5-cache/games-fps/rtcwsp-demo-1.1b index 4e21a6829173..cf06cdafe7d8 100644 --- a/metadata/md5-cache/games-fps/rtcwsp-demo-1.1b +++ b/metadata/md5-cache/games-fps/rtcwsp-demo-1.1b @@ -7,5 +7,5 @@ RDEPEND=sys-libs/glibc virtual/opengl x86? ( x11-libs/libX11 x11-libs/libXext x1 RESTRICT=strip mirror SLOT=0 SRC_URI=mirror://idsoftware/wolf/linux/old/wolfspdemo-linux-1.1b.x86.run mirror://3dgamers/returnwolfenstein/wolfspdemo-linux-1.1b.x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=955253dc6e089fe950e2b54c20e6208b diff --git a/metadata/md5-cache/games-fps/serious-sam-tfe-1_beta3 b/metadata/md5-cache/games-fps/serious-sam-tfe-1_beta3 index bc3778dba719..4cc8a07c6a99 100644 --- a/metadata/md5-cache/games-fps/serious-sam-tfe-1_beta3 +++ b/metadata/md5-cache/games-fps/serious-sam-tfe-1_beta3 @@ -11,5 +11,5 @@ RDEPEND=amd64? ( app-emulation/emul-linux-x86-opengl app-emulation/emul-linux-x8 RESTRICT=strip SLOT=0 SRC_URI=http://icculus.org/betas/ssam/ssam-tfe-lnx-beta1a.run http://icculus.org/updates/ssam/ssamtfe-beta1b.sh.bin http://icculus.org/updates/ssam/ssamtfe-beta2.sh.bin http://icculus.org/updates/ssam/ssamtfe-beta3.sh.bin -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=13161530bedffc6871725e0e90bd316e diff --git a/metadata/md5-cache/games-fps/serious-sam-tse-1_beta1 b/metadata/md5-cache/games-fps/serious-sam-tse-1_beta1 index 3d895f982376..66bba5d77c39 100644 --- a/metadata/md5-cache/games-fps/serious-sam-tse-1_beta1 +++ b/metadata/md5-cache/games-fps/serious-sam-tse-1_beta1 @@ -11,5 +11,5 @@ RDEPEND=amd64? ( app-emulation/emul-linux-x86-opengl app-emulation/emul-linux-x8 RESTRICT=strip SLOT=0 SRC_URI=http://icculus.org/betas/ssam/ssamtse-beta1.sh.bin -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=935c2dbbb8498b07d40e5a7a9d275c59 diff --git a/metadata/md5-cache/games-fps/soldieroffortune-1.06a b/metadata/md5-cache/games-fps/soldieroffortune-1.06a index 7010ed869918..b660835d86c2 100644 --- a/metadata/md5-cache/games-fps/soldieroffortune-1.06a +++ b/metadata/md5-cache/games-fps/soldieroffortune-1.06a @@ -9,5 +9,5 @@ RDEPEND=virtual/opengl x86? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXau x RESTRICT=strip SLOT=0 SRC_URI=mirror://lokigames/sof/sof-1.06a-cdrom-x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fb99f6b781e40f48f623e6083f52996a diff --git a/metadata/md5-cache/games-fps/soldieroffortune-demo-0.57 b/metadata/md5-cache/games-fps/soldieroffortune-demo-0.57 index 9468c03c674e..fb8d51ac2d49 100644 --- a/metadata/md5-cache/games-fps/soldieroffortune-demo-0.57 +++ b/metadata/md5-cache/games-fps/soldieroffortune-demo-0.57 @@ -9,5 +9,5 @@ RDEPEND=virtual/opengl x86? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXau x RESTRICT=strip SLOT=0 SRC_URI=mirror://lokigames/loki_demos/sof-demo.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6b5f474bb7f9bec5aa34de05d188c3a4 diff --git a/metadata/md5-cache/games-fps/tribes2-25034 b/metadata/md5-cache/games-fps/tribes2-25034 index d2561a343a92..45152c5cfc94 100644 --- a/metadata/md5-cache/games-fps/tribes2-25034 +++ b/metadata/md5-cache/games-fps/tribes2-25034 @@ -9,5 +9,5 @@ RDEPEND=sys-libs/glibc games-util/loki_patch virtual/opengl RESTRICT=mirror strip SLOT=0 SRC_URI=http://www.libsdl.org/projects/tribes2/release/tribes2-25034-cdrom-x86.run mirror://3dgamers/tribes2/tribes2-25034-cdrom-x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0d6b14f2ec62e9a30112db8d12f1ee7f diff --git a/metadata/md5-cache/games-fps/unreal-226 b/metadata/md5-cache/games-fps/unreal-226 index d8d73e70e017..f73cdfad4990 100644 --- a/metadata/md5-cache/games-fps/unreal-226 +++ b/metadata/md5-cache/games-fps/unreal-226 @@ -9,5 +9,5 @@ PROPERTIES=interactive RDEPEND=!amd64? ( x11-libs/libXext x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp =media-libs/libsdl-1.2* opengl? ( virtual/opengl ) ) amd64? ( app-emulation/emul-linux-x86-sdl app-emulation/emul-linux-x86-baselibs app-emulation/emul-linux-x86-xlibs ) SLOT=0 SRC_URI=http://www.icculus.org/%7Echunky/ut/unreal/unreali-install.run ftp://ftp.lokigames.com/pub/patches/ut/ut-install-436.run ftp://ftp.lokigames.com/pub/patches/ut/IpDrv-436-Linux-08-20-02.zip -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=891ab9d5dd85d531883e1e2504b08c74 diff --git a/metadata/md5-cache/games-fps/unreal-tournament-451 b/metadata/md5-cache/games-fps/unreal-tournament-451 index e19a700344e9..07ba3f5c283e 100644 --- a/metadata/md5-cache/games-fps/unreal-tournament-451 +++ b/metadata/md5-cache/games-fps/unreal-tournament-451 @@ -9,5 +9,5 @@ PROPERTIES=interactive RDEPEND=!amd64? ( x11-libs/libXext x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp =media-libs/libsdl-1.2* opengl? ( virtual/opengl ) ) amd64? ( app-emulation/emul-linux-x86-sdl app-emulation/emul-linux-x86-baselibs app-emulation/emul-linux-x86-xlibs ) SLOT=0 SRC_URI=ftp://ftp.lokigames.com/pub/patches/ut/ut-install-436.run http://utpg.org/patches/UTPGPatch451.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=12650b0ff4afcb8cae0dc4f39d13bbc0 diff --git a/metadata/md5-cache/games-fps/unreal-tournament-goty-436 b/metadata/md5-cache/games-fps/unreal-tournament-goty-436 index e8dc36b77cb0..72491111783c 100644 --- a/metadata/md5-cache/games-fps/unreal-tournament-goty-436 +++ b/metadata/md5-cache/games-fps/unreal-tournament-goty-436 @@ -9,5 +9,5 @@ PROPERTIES=interactive RDEPEND=opengl? ( virtual/opengl ) x11-libs/libXext x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp SLOT=0 SRC_URI=ftp://ftp.lokigames.com/pub/beta/ut/ut-install-436-GOTY.run ftp://ftp.lokigames.com/pub/patches/ut/IpDrv-436-Linux-08-20-02.zip -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=17b0b429782fb5d14ae03aeb83df2905 diff --git a/metadata/md5-cache/games-fps/unreal-tournament-goty-451 b/metadata/md5-cache/games-fps/unreal-tournament-goty-451 index b700030def25..de7e0cadf567 100644 --- a/metadata/md5-cache/games-fps/unreal-tournament-goty-451 +++ b/metadata/md5-cache/games-fps/unreal-tournament-goty-451 @@ -9,5 +9,5 @@ PROPERTIES=interactive RDEPEND=!amd64? ( x11-libs/libXext x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp =media-libs/libsdl-1.2* opengl? ( virtual/opengl ) ) amd64? ( app-emulation/emul-linux-x86-sdl app-emulation/emul-linux-x86-baselibs app-emulation/emul-linux-x86-xlibs ) SLOT=0 SRC_URI=ftp://ftp.lokigames.com/pub/beta/ut/ut-install-436-GOTY.run http://utpg.org/patches/UTPGPatch451.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0cf7c00a3bb9217bd52f5d5b4d9a014c diff --git a/metadata/md5-cache/games-fps/ut2003-data-2107 b/metadata/md5-cache/games-fps/ut2003-data-2107 index 93e57e0552d5..68342f6bfd2d 100644 --- a/metadata/md5-cache/games-fps/ut2003-data-2107 +++ b/metadata/md5-cache/games-fps/ut2003-data-2107 @@ -8,5 +8,5 @@ PROPERTIES=interactive RESTRICT=strip SLOT=0 SRC_URI=http://download.factoryunreal.com/mirror/UT2003CrashFix.zip -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cf74ed459b0a58b07190682277be1f7a diff --git a/metadata/md5-cache/games-fps/ut2003-demo-2206-r3 b/metadata/md5-cache/games-fps/ut2003-demo-2206-r3 index 2c3eae82e010..0b348f5e0b58 100644 --- a/metadata/md5-cache/games-fps/ut2003-demo-2206-r3 +++ b/metadata/md5-cache/games-fps/ut2003-demo-2206-r3 @@ -8,5 +8,5 @@ RDEPEND=virtual/opengl ~virtual/libstdc++-3.3 sys-devel/bc x86? ( x11-libs/libX1 RESTRICT=strip SLOT=0 SRC_URI=http://unreal.epicgames.com/linux/ut2003/ut2003demo-lnx-2206.sh.bin http://download.factoryunreal.com/mirror/UT2003CrashFix.zip http://dev.gentoo.org/~wolf31o2/sources/ut2003-demo/ut2003-demo-misc.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ac7f48cfe2105286ffb1534798a760a2 diff --git a/metadata/md5-cache/games-fps/ut2004-da2-1.6_beta b/metadata/md5-cache/games-fps/ut2004-da2-1.6_beta index a8344f648762..57f625761620 100644 --- a/metadata/md5-cache/games-fps/ut2004-da2-1.6_beta +++ b/metadata/md5-cache/games-fps/ut2004-da2-1.6_beta @@ -10,5 +10,5 @@ RDEPEND=dedicated? ( || ( games-server/ut2004-ded games-fps/ut2004[dedicated] ) RESTRICT=mirror strip SLOT=0 SRC_URI=mirror://liflg/defence.alliance2_1.6beta-english.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=23c69a926dd246bbcd730785c598dbcf diff --git a/metadata/md5-cache/games-fps/ut2004-damnation-2.0 b/metadata/md5-cache/games-fps/ut2004-damnation-2.0 index 8ba053b3e681..c29f9c1739d2 100644 --- a/metadata/md5-cache/games-fps/ut2004-damnation-2.0 +++ b/metadata/md5-cache/games-fps/ut2004-damnation-2.0 @@ -10,5 +10,5 @@ RDEPEND=dedicated? ( || ( games-server/ut2004-ded games-fps/ut2004[dedicated] ) RESTRICT=mirror strip SLOT=0 SRC_URI=mirror://liflg/damnation_2.0-english.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b21aa2bd87b178c112e6e53d885045cb diff --git a/metadata/md5-cache/games-fps/ut2004-data-3186-r4 b/metadata/md5-cache/games-fps/ut2004-data-3186-r4 index 2fca175bdea7..bb1505901012 100644 --- a/metadata/md5-cache/games-fps/ut2004-data-3186-r4 +++ b/metadata/md5-cache/games-fps/ut2004-data-3186-r4 @@ -8,5 +8,5 @@ PDEPEND=games-fps/ut2004 PROPERTIES=interactive RDEPEND=games-util/uz2unpack >=app-arch/unshield-0.5-r1 SLOT=0 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=087663d7ec5cc30bdb8e4b9e3d985023 diff --git a/metadata/md5-cache/games-fps/ut2004-demo-3334 b/metadata/md5-cache/games-fps/ut2004-demo-3334 index 580c21b4f8ec..3b911c3086d4 100644 --- a/metadata/md5-cache/games-fps/ut2004-demo-3334 +++ b/metadata/md5-cache/games-fps/ut2004-demo-3334 @@ -7,5 +7,5 @@ RDEPEND=virtual/opengl =virtual/libstdc++-3.3 x86? ( x11-libs/libX11 x11-libs/li RESTRICT=strip SLOT=0 SRC_URI=mirror://gentoo/ut2004-lnx-demo3334.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a427049e4a8d29ed59728ff88b263ce1 diff --git a/metadata/md5-cache/games-fps/ut2004-hamsterbash-1 b/metadata/md5-cache/games-fps/ut2004-hamsterbash-1 index ae67a00493bc..6ed4bb72b63f 100644 --- a/metadata/md5-cache/games-fps/ut2004-hamsterbash-1 +++ b/metadata/md5-cache/games-fps/ut2004-hamsterbash-1 @@ -10,5 +10,5 @@ RDEPEND=dedicated? ( || ( games-server/ut2004-ded games-fps/ut2004[dedicated] ) RESTRICT=mirror strip SLOT=0 SRC_URI=http://server088.eigensoft.com/HamsterBashFinal.zip -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f9774c542e4ac172e5d3998f047dbde3 diff --git a/metadata/md5-cache/games-fps/ut2004-muralis-1.15 b/metadata/md5-cache/games-fps/ut2004-muralis-1.15 index 11439715ad28..0d1c00823f4f 100644 --- a/metadata/md5-cache/games-fps/ut2004-muralis-1.15 +++ b/metadata/md5-cache/games-fps/ut2004-muralis-1.15 @@ -10,5 +10,5 @@ RDEPEND=dedicated? ( || ( games-server/ut2004-ded games-fps/ut2004[dedicated] ) RESTRICT=fetch SLOT=0 SRC_URI=muralis-v1.15-zip.zip -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a games-mods 9d44c6f45289592ca9cf29d77424a048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d0adcc7569e433a737798368a409c1ff 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 27ae875912a7..93b538d3665b 100644 --- a/metadata/md5-cache/games-kids/pytraffic-2.5.4-r1 +++ b/metadata/md5-cache/games-kids/pytraffic-2.5.4-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=media-libs/libsdl[audio] media-libs/sdl-mixer dev-python/pygtk python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://alpha.uhasselt.be/Research/Algebra/Members/pytraffic/pytraffic-2.5.4.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38ff1d8a373f870a021eee8737910bb0 diff --git a/metadata/md5-cache/games-mud/lyntin-4.2-r1 b/metadata/md5-cache/games-mud/lyntin-4.2-r1 index e5b87a48a4fd..9f4cac578002 100644 --- a/metadata/md5-cache/games-mud/lyntin-4.2-r1 +++ b/metadata/md5-cache/games-mud/lyntin-4.2-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[tk?] ) python_targets_python2_6? ( dev-lang/python:2.6[tk?] ) python_targets_python2_7? ( dev-lang/python:2.7[tk?] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/lyntin/lyntin-4.2.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9851e18812d978acf0c587857dbe9a2c diff --git a/metadata/md5-cache/games-puzzle/drod-bin-1.6.7 b/metadata/md5-cache/games-puzzle/drod-bin-1.6.7 index 7781a91431af..6f003cf54243 100644 --- a/metadata/md5-cache/games-puzzle/drod-bin-1.6.7 +++ b/metadata/md5-cache/games-puzzle/drod-bin-1.6.7 @@ -8,5 +8,5 @@ RDEPEND=x86? ( x11-libs/libX11 media-libs/freetype media-libs/libsdl media-libs/ RESTRICT=strip SLOT=0 SRC_URI=mirror://sourceforge/drod/Linux%20Setup/Caravel%20DROD%201.6.7%20Setup/DRODAESetup-1.6.7.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=780b83eaed91e874da8f7b129bfe7989 diff --git a/metadata/md5-cache/games-puzzle/neverball-1.5.4 b/metadata/md5-cache/games-puzzle/neverball-1.5.4 index 068c2b43aef0..ea3c4269e029 100644 --- a/metadata/md5-cache/games-puzzle/neverball-1.5.4 +++ b/metadata/md5-cache/games-puzzle/neverball-1.5.4 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst preinst prepare setup unpack -DEPEND=media-libs/libsdl[audio,joystick,opengl,video] media-libs/sdl-ttf media-libs/libpng virtual/jpeg media-libs/libvorbis virtual/opengl dev-games/physfs media-fonts/dejavu nls? ( virtual/libintl ) sys-devel/gettext +DEPEND=media-libs/libsdl[audio,joystick,opengl,video] media-libs/sdl-ttf media-libs/libpng:0 virtual/jpeg media-libs/libvorbis virtual/opengl dev-games/physfs media-fonts/dejavu nls? ( virtual/libintl ) sys-devel/gettext DESCRIPTION=Clone of Super Monkey Ball using SDL/OpenGL EAPI=2 HOMEPAGE=http://icculus.org/neverball/ IUSE=nls KEYWORDS=amd64 ppc x86 LICENSE=GPL-2 -RDEPEND=media-libs/libsdl[audio,joystick,opengl,video] media-libs/sdl-ttf media-libs/libpng virtual/jpeg media-libs/libvorbis virtual/opengl dev-games/physfs media-fonts/dejavu nls? ( virtual/libintl ) +RDEPEND=media-libs/libsdl[audio,joystick,opengl,video] media-libs/sdl-ttf media-libs/libpng:0 virtual/jpeg media-libs/libvorbis virtual/opengl dev-games/physfs media-fonts/dejavu nls? ( virtual/libintl ) RESTRICT=test SLOT=0 SRC_URI=http://icculus.org/neverball/neverball-1.5.4.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e49340b5a3396844fd03df3591b2af7c +_md5_=9df50cbb01173bf38632c70d5b1bc619 diff --git a/metadata/md5-cache/games-rpg/bastion-20120620 b/metadata/md5-cache/games-rpg/bastion-20120620 index 846d0ec3b129..795f07ada5e4 100644 --- a/metadata/md5-cache/games-rpg/bastion-20120620 +++ b/metadata/md5-cache/games-rpg/bastion-20120620 @@ -10,5 +10,5 @@ RDEPEND=virtual/opengl amd64? ( app-emulation/emul-linux-x86-sdl app-emulation/e RESTRICT=bindist fetch SLOT=0 SRC_URI=Bastion-HIB-2012-06-20.sh -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a40e8f17deb6601c36d0bf93644f0e49 diff --git a/metadata/md5-cache/games-rpg/dungeon-defenders-20130305 b/metadata/md5-cache/games-rpg/dungeon-defenders-20130305 index f6e5685f52dc..5d80580fb1f3 100644 --- a/metadata/md5-cache/games-rpg/dungeon-defenders-20130305 +++ b/metadata/md5-cache/games-rpg/dungeon-defenders-20130305 @@ -10,5 +10,5 @@ RDEPEND=x11-misc/xdg-utils virtual/opengl amd64? ( app-emulation/emul-linux-x86- RESTRICT=bindist fetch SLOT=0 SRC_URI=dundef-linux-03052013.mojo.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fd58f4e3fb3c862343f15703de2013eb diff --git a/metadata/md5-cache/games-rpg/grimrock-20121222 b/metadata/md5-cache/games-rpg/grimrock-20121222 index 6922785dbcd0..b5e2fcdaa284 100644 --- a/metadata/md5-cache/games-rpg/grimrock-20121222 +++ b/metadata/md5-cache/games-rpg/grimrock-20121222 @@ -10,5 +10,5 @@ RDEPEND=app-arch/bzip2 media-libs/freetype:2 media-libs/ilmbase media-libs/lcms RESTRICT=fetch bindist SLOT=0 SRC_URI=LegendOfGrimrock-Linux-2012-12-22.sh -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d556fb3637389bf97a363ff5f051289e diff --git a/metadata/md5-cache/games-rpg/nwn-cep-1.68-r1 b/metadata/md5-cache/games-rpg/nwn-cep-1.68-r1 index 3ce6b2a42f5d..8d0f32dbe313 100644 --- a/metadata/md5-cache/games-rpg/nwn-cep-1.68-r1 +++ b/metadata/md5-cache/games-rpg/nwn-cep-1.68-r1 @@ -7,5 +7,5 @@ LICENSE=as-is RDEPEND=>=games-rpg/nwn-1.68 SLOT=0 SRC_URI=http://c.vnfiles.ign.com/nwvault.ign.com/fms/files/hakpaks/6057/cepv152_man.rar http://c.vnfiles.ign.com/nwvault.ign.com/fms/files/hakpaks/6974/CEP168.rar -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f8a2867d08f7d2b5db6ee54c6375e37d diff --git a/metadata/md5-cache/games-rpg/nwn-cep-2.0 b/metadata/md5-cache/games-rpg/nwn-cep-2.0 index cc4409d8757d..4df22666392a 100644 --- a/metadata/md5-cache/games-rpg/nwn-cep-2.0 +++ b/metadata/md5-cache/games-rpg/nwn-cep-2.0 @@ -7,5 +7,5 @@ LICENSE=as-is RDEPEND=>=games-rpg/nwn-1.68 SLOT=2 SRC_URI=http://vnfiles.ign.com/nwvault.ign.com/fms/files/hakpaks/7000/CEPv2_full.rar -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=285ded162704e42a327e9b43b42f4c95 diff --git a/metadata/md5-cache/games-rpg/penumbra-collection-1.1 b/metadata/md5-cache/games-rpg/penumbra-collection-1.1 index 17f74d66d4a2..4f840500475e 100644 --- a/metadata/md5-cache/games-rpg/penumbra-collection-1.1 +++ b/metadata/md5-cache/games-rpg/penumbra-collection-1.1 @@ -9,5 +9,5 @@ RDEPEND=virtual/glu virtual/opengl x86? ( media-libs/fontconfig media-libs/freea RESTRICT=fetch SLOT=0 SRC_URI=PenumbraCollection-1.1.sh -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2c22b71edbd1b0c9099301231d271da5 diff --git a/metadata/md5-cache/games-rpg/sacred-gold-1.0.01 b/metadata/md5-cache/games-rpg/sacred-gold-1.0.01 index 3f54f286604a..3409decaf60f 100644 --- a/metadata/md5-cache/games-rpg/sacred-gold-1.0.01 +++ b/metadata/md5-cache/games-rpg/sacred-gold-1.0.01 @@ -8,5 +8,5 @@ RDEPEND=virtual/opengl x86? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXi ) RESTRICT=strip SLOT=0 SRC_URI=http://updatefiles.linuxgamepublishing.com/sacred/sacred-1.0-1.0.01-x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=77c54fd38ae8d2e719e97c7057b4eb0e diff --git a/metadata/md5-cache/games-rpg/vendetta-online-bin-1.8.82 b/metadata/md5-cache/games-rpg/vendetta-online-bin-1.8.82 index faf1bfbf3d70..f8052a9e3e5a 100644 --- a/metadata/md5-cache/games-rpg/vendetta-online-bin-1.8.82 +++ b/metadata/md5-cache/games-rpg/vendetta-online-bin-1.8.82 @@ -8,5 +8,5 @@ RDEPEND=virtual/opengl x11-libs/gtk+:2 RESTRICT=mirror strip SLOT=0 SRC_URI=amd64? ( http://mirror.cle.vendetta-online.com/vendetta-linux-amd64-installer.sh -> vendetta-online-bin-1.8.82-amd64.sh ) x86? ( http://mirror.cle.vendetta-online.com/vendetta-linux-ia32-installer.sh -> vendetta-online-bin-1.8.82-x86.sh ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7efbd1caa85507ce81a6e71184f8b73a diff --git a/metadata/md5-cache/games-server/bf1942-desertcombat-0.7_beta1 b/metadata/md5-cache/games-server/bf1942-desertcombat-0.7_beta1 index 5add62e64c10..ebdd55d550fe 100644 --- a/metadata/md5-cache/games-server/bf1942-desertcombat-0.7_beta1 +++ b/metadata/md5-cache/games-server/bf1942-desertcombat-0.7_beta1 @@ -8,5 +8,5 @@ RDEPEND=>=games-server/bf1942-lnxded-1.6_rc RESTRICT=fetch SLOT=0 SRC_URI=desertcombat_0.7n-beta_full_install.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8aa42fadf3b438147bffb8cbf67e1c60 diff --git a/metadata/md5-cache/games-server/bf1942-lnxded-1.61 b/metadata/md5-cache/games-server/bf1942-lnxded-1.61 index 6cff27779ed4..655d27997122 100644 --- a/metadata/md5-cache/games-server/bf1942-lnxded-1.61 +++ b/metadata/md5-cache/games-server/bf1942-lnxded-1.61 @@ -7,5 +7,5 @@ RDEPEND=sys-libs/glibc RESTRICT=mirror strip SLOT=0 SRC_URI=http://bf1942.lightcubed.com/dist/bf1942_lnxded-1.6-rc2.run ftp://largedownloads.ea.com/pub/misc/bf1942-update-1.61.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=eeb9000f6e966b5efc05c2270cc9ceb0 diff --git a/metadata/md5-cache/games-server/halflife-steam-2.0 b/metadata/md5-cache/games-server/halflife-steam-2.0 index 35c30ceb72b8..7c75fdf9f7ae 100644 --- a/metadata/md5-cache/games-server/halflife-steam-2.0 +++ b/metadata/md5-cache/games-server/halflife-steam-2.0 @@ -6,5 +6,5 @@ LICENSE=ValveServer GPL-2 RESTRICT=mirror SLOT=0 SRC_URI=http://www.steampowered.com/download/hldsupdatetool.bin -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0789094c60f220c0857bc3ff0847aca8 diff --git a/metadata/md5-cache/games-simulation/bcs-demo-1.3 b/metadata/md5-cache/games-simulation/bcs-demo-1.3 index 290afbed0535..25f22b2504b0 100644 --- a/metadata/md5-cache/games-simulation/bcs-demo-1.3 +++ b/metadata/md5-cache/games-simulation/bcs-demo-1.3 @@ -7,5 +7,5 @@ RDEPEND=sys-libs/glibc virtual/opengl x86? ( media-libs/libsdl x11-libs/libX11 x RESTRICT=strip SLOT=0 SRC_URI=ftp://ggdev-1.homelan.com/bcs/bcsdemo_v1_3.sh.bin http://www.highprogrammer.com/alan/pfx2/openal-alan-hack-0.0.1.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=714628aaeb68a89fecf2dc6bcdd61e7a diff --git a/metadata/md5-cache/games-strategy/coldwar-1.0.1 b/metadata/md5-cache/games-strategy/coldwar-1.0.1 index 700b805b0f8f..339acb18bf55 100644 --- a/metadata/md5-cache/games-strategy/coldwar-1.0.1 +++ b/metadata/md5-cache/games-strategy/coldwar-1.0.1 @@ -9,5 +9,5 @@ RDEPEND=virtual/opengl x86? ( media-libs/libogg media-libs/openal media-libs/lib RESTRICT=strip SLOT=0 SRC_URI=http://updatefiles.linuxgamepublishing.com/coldwar/coldwar-1.0-1.0.1-x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a7f7cbff874425a8d77f204625641a27 diff --git a/metadata/md5-cache/games-strategy/coldwar-demo-1-r1 b/metadata/md5-cache/games-strategy/coldwar-demo-1-r1 index 527f633138ff..dce698838a67 100644 --- a/metadata/md5-cache/games-strategy/coldwar-demo-1-r1 +++ b/metadata/md5-cache/games-strategy/coldwar-demo-1-r1 @@ -7,5 +7,5 @@ RDEPEND=virtual/opengl x86? ( media-libs/libogg media-libs/openal media-libs/lib RESTRICT=strip SLOT=0 SRC_URI=http://demofiles.linuxgamepublishing.com/coldwar/coldwar-demo.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=03594d50393877f17ad02ad16e00cf4e diff --git a/metadata/md5-cache/games-strategy/darwinia-1.3.0 b/metadata/md5-cache/games-strategy/darwinia-1.3.0 index 0043aed1ab2f..eacb5ee2fa7c 100644 --- a/metadata/md5-cache/games-strategy/darwinia-1.3.0 +++ b/metadata/md5-cache/games-strategy/darwinia-1.3.0 @@ -9,5 +9,5 @@ RDEPEND=sys-libs/glibc sys-devel/gcc x86? ( virtual/opengl virtual/glu media-lib RESTRICT=mirror strip SLOT=0 SRC_URI=http://www.introversion.co.uk/darwinia/downloads/darwinia-full-1.3.0.sh -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=654ba67b4154acfa79150e275e3d54b1 diff --git a/metadata/md5-cache/games-strategy/darwinia-1.4.0_beta9 b/metadata/md5-cache/games-strategy/darwinia-1.4.0_beta9 index 4930d2e1e1cb..ac4c8ab997bb 100644 --- a/metadata/md5-cache/games-strategy/darwinia-1.4.0_beta9 +++ b/metadata/md5-cache/games-strategy/darwinia-1.4.0_beta9 @@ -9,5 +9,5 @@ RDEPEND=sys-libs/glibc sys-devel/gcc x86? ( virtual/opengl virtual/glu media-lib RESTRICT=mirror strip SLOT=0 SRC_URI=http://www.introversion.co.uk/darwinia/downloads/darwinia-full-1.4.0b9.sh -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d8ea480c001bfe4b51aa639b475f3c22 diff --git a/metadata/md5-cache/games-strategy/darwinia-demo-1.3.0 b/metadata/md5-cache/games-strategy/darwinia-demo-1.3.0 index ef439596642c..1620c6405722 100644 --- a/metadata/md5-cache/games-strategy/darwinia-demo-1.3.0 +++ b/metadata/md5-cache/games-strategy/darwinia-demo-1.3.0 @@ -7,5 +7,5 @@ RDEPEND=sys-libs/glibc sys-devel/gcc x86? ( virtual/opengl virtual/glu media-lib RESTRICT=mirror strip SLOT=0 SRC_URI=http://www.introversion.co.uk/darwinia/downloads/darwinia-demo2-1.3.0.sh -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=59aa671814e6872b97007d4edc955b16 diff --git a/metadata/md5-cache/games-strategy/gorky17-demo-1.0.1.0.1 b/metadata/md5-cache/games-strategy/gorky17-demo-1.0.1.0.1 index 0d3594331a21..dfa3594c79f8 100644 --- a/metadata/md5-cache/games-strategy/gorky17-demo-1.0.1.0.1 +++ b/metadata/md5-cache/games-strategy/gorky17-demo-1.0.1.0.1 @@ -7,5 +7,5 @@ RDEPEND=media-libs/alsa-lib x86? ( media-libs/libsdl sys-libs/zlib x11-libs/libX RESTRICT=strip SLOT=0 SRC_URI=http://demofiles.linuxgamepublishing.com/gorky17/gorky17_demo.run http://updatefiles.linuxgamepublishing.com/gorky17-demo/gorky17-demo-1.0-1.0.1-x86.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=38fd5e5dc01c64e3e26c791e6fe45b1c diff --git a/metadata/md5-cache/games-strategy/heroes3-1.3.1a-r2 b/metadata/md5-cache/games-strategy/heroes3-1.3.1a-r2 index 27d84cfdea0c..fec233c0b265 100644 --- a/metadata/md5-cache/games-strategy/heroes3-1.3.1a-r2 +++ b/metadata/md5-cache/games-strategy/heroes3-1.3.1a-r2 @@ -10,5 +10,5 @@ RDEPEND=!ppc? ( sys-libs/lib-compat-loki ) RESTRICT=strip SLOT=0 SRC_URI=x86? ( mirror://lokigames/heroes3/heroes3-1.3.1a-cdrom-x86.run ) ppc? ( mirror://lokigames/heroes3/heroes3-1.3.1a-ppc.run ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=785de5a7b3f79f59ce062dfa9ba4c335 diff --git a/metadata/md5-cache/games-strategy/heroes3-demo-1.3.1a b/metadata/md5-cache/games-strategy/heroes3-demo-1.3.1a index 0841e22869fd..4889810e4c06 100644 --- a/metadata/md5-cache/games-strategy/heroes3-demo-1.3.1a +++ b/metadata/md5-cache/games-strategy/heroes3-demo-1.3.1a @@ -8,5 +8,5 @@ RDEPEND=>=sys-libs/lib-compat-loki-0.2 x86? ( x11-libs/libX11 ) ppc? ( x11-libs/ RESTRICT=strip SLOT=0 SRC_URI=mirror://lokigames/loki_demos/heroes3-demo.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=fc9f64e429364f17fdbb28f5272299f1 diff --git a/metadata/md5-cache/games-strategy/knights-demo-1.32 b/metadata/md5-cache/games-strategy/knights-demo-1.32 index 6147985b8a2f..5b6e033030d2 100644 --- a/metadata/md5-cache/games-strategy/knights-demo-1.32 +++ b/metadata/md5-cache/games-strategy/knights-demo-1.32 @@ -7,5 +7,5 @@ RDEPEND=sys-libs/glibc x86? ( x11-libs/libX11 x11-libs/libXau x11-libs/libXdmcp RESTRICT=strip SLOT=0 SRC_URI=mirror://gentoo/knights-demo-1.32.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b33d3b1b1a5b5e128aa075caf0689a99 diff --git a/metadata/md5-cache/games-strategy/majesty-demo-1.0.0 b/metadata/md5-cache/games-strategy/majesty-demo-1.0.0 index 5a731394e171..37525b00d2cc 100644 --- a/metadata/md5-cache/games-strategy/majesty-demo-1.0.0 +++ b/metadata/md5-cache/games-strategy/majesty-demo-1.0.0 @@ -8,5 +8,5 @@ RDEPEND=sys-libs/glibc x86? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXau x RESTRICT=strip SLOT=0 SRC_URI=http://demos.linuxgamepublishing.com/majesty/majesty_demo.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a766feb4fdafe56ecc5ea03856d10ae7 diff --git a/metadata/md5-cache/games-strategy/mindrover-demo-1.07b b/metadata/md5-cache/games-strategy/mindrover-demo-1.07b index 840bd07244bc..9805c492a2db 100644 --- a/metadata/md5-cache/games-strategy/mindrover-demo-1.07b +++ b/metadata/md5-cache/games-strategy/mindrover-demo-1.07b @@ -7,5 +7,5 @@ RDEPEND=virtual/opengl RESTRICT=strip SLOT=0 SRC_URI=http://demos.linuxgamepublishing.com/mindrover/mindrover_demo.run -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=089249cf381907e95765d85bb9030483 diff --git a/metadata/md5-cache/games-strategy/outerspace-0.5.68 b/metadata/md5-cache/games-strategy/outerspace-0.5.68 index 42f279bc1da6..926dea0a89aa 100644 --- a/metadata/md5-cache/games-strategy/outerspace-0.5.68 +++ b/metadata/md5-cache/games-strategy/outerspace-0.5.68 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-python/pygame-1.7 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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/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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b826abc86a0e8a850a9992d7d6804bd4 diff --git a/metadata/md5-cache/games-strategy/smac-6.0a b/metadata/md5-cache/games-strategy/smac-6.0a index 514d06e92faa..176be3960ad3 100644 --- a/metadata/md5-cache/games-strategy/smac-6.0a +++ b/metadata/md5-cache/games-strategy/smac-6.0a @@ -11,5 +11,5 @@ RDEPEND=sys-libs/glibc x11-libs/libX11 x11-libs/libXext x11-libs/libXau x11-libs RESTRICT=strip SLOT=0 SRC_URI=x86? ( mirror://lokigames/smac/smac-6.0a-x86.run ) amd64? ( mirror://lokigames/smac/smac-6.0a-x86.run ) ppc? ( http://mirrors.dotsrc.org/lokigames/installers/smac/smac-install-ppc.run ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cdrom 415b847346ef9001a89e5c7da6711215 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=348bb7efb1df140a0b986dd8c1e8e730 diff --git a/metadata/md5-cache/games-strategy/spaz-1.605 b/metadata/md5-cache/games-strategy/spaz-1.605 index af323d735c2f..d35e9aa3bd7b 100644 --- a/metadata/md5-cache/games-strategy/spaz-1.605 +++ b/metadata/md5-cache/games-strategy/spaz-1.605 @@ -10,5 +10,5 @@ RDEPEND=amd64? ( app-emulation/emul-linux-x86-sdl ) x86? ( media-libs/openal[als RESTRICT=fetch strip SLOT=0 SRC_URI=spaz-linux-humblebundle-09182012-bin -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 games 0fb7637597e0869f6c8be79b11d0135a multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2747db6070ef44384f7dca042743dc7c 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 142c13bdca90..1a0907564348 100644 --- a/metadata/md5-cache/games-util/nml-0.2.4-r1 +++ b/metadata/md5-cache/games-util/nml-0.2.4-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/imaging dev-python/ply python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=56de32818910e12774b7d7d384441eab diff --git a/metadata/md5-cache/gnome-base/gnome-common-3.6.0 b/metadata/md5-cache/gnome-base/gnome-common-3.6.0 index cbd0b27d6afc..ae295c74c854 100644 --- a/metadata/md5-cache/gnome-base/gnome-common-3.6.0 +++ b/metadata/md5-cache/gnome-base/gnome-common-3.6.0 @@ -3,9 +3,9 @@ DEPEND=app-arch/xz-utils DESCRIPTION=Common files for development of Gnome packages. EAPI=4 HOMEPAGE=http://git.gnome.org/browse/gnome-common -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=GPL-3 SLOT=3 SRC_URI=mirror://gnome/sources/gnome-common/3.6/gnome-common-3.6.0.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome.org 8fef8f967214f56e08fa92d61163d891 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=8eb781ebe27d22b3319a316a950e4c85 +_md5_=3b02024138ea5b30836aec1a84e791e8 diff --git a/metadata/md5-cache/gnome-base/gnome-menus-2.30.5-r1 b/metadata/md5-cache/gnome-base/gnome-menus-2.30.5-r1 index 8083cc0ba7da..924c85b728a8 100644 --- a/metadata/md5-cache/gnome-base/gnome-menus-2.30.5-r1 +++ b/metadata/md5-cache/gnome-base/gnome-menus-2.30.5-r1 @@ -4,10 +4,10 @@ DESCRIPTION=The GNOME menu system, implementing the F.D.O cross-desktop spec EAPI=3 HOMEPAGE=http://www.gnome.org IUSE=debug +introspection python -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris LICENSE=GPL-2+ LGPL-2+ RDEPEND=>=dev-libs/glib-2.18 python? ( dev-python/pygtk ) introspection? ( >=dev-libs/gobject-introspection-0.6.7 ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) SLOT=0 SRC_URI=mirror://gnome/sources/gnome-menus/2.30/gnome-menus-2.30.5.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=964363716fa7e9f0ebfb74fbb27fcdbc +_md5_=5515427f5d49cde96d1eb446dce269d0 diff --git a/metadata/md5-cache/gnome-base/gnome-shell-3.4.2 b/metadata/md5-cache/gnome-base/gnome-shell-3.4.2 index 9a6ade9d3712..4a831662b409 100644 --- a/metadata/md5-cache/gnome-base/gnome-shell-3.4.2 +++ b/metadata/md5-cache/gnome-base/gnome-shell-3.4.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ LGPL-2+ RDEPEND=>=app-crypt/gcr-3.3.90[introspection] >=dev-libs/glib-2.31.6:2 >=dev-libs/gjs-1.31.22 >=dev-libs/gobject-introspection-0.10.1 >=x11-libs/gtk+-3.3.9:3[introspection] >=media-libs/clutter-1.9.16:1.0[introspection] >=dev-libs/folks-0.5.2 >=dev-libs/json-glib-0.13.2 >=dev-libs/libcroco-0.6.2:0.6 >=gnome-base/gnome-desktop-2.91.2:3 >=gnome-base/gsettings-desktop-schemas-2.91.91 >=gnome-base/gnome-keyring-3.3.90 >=gnome-base/gnome-menus-2.29.10:3[introspection] gnome-base/libgnome-keyring >=gnome-extra/evolution-data-server-2.91.6 >=media-libs/gstreamer-0.10.16:0.10 >=media-libs/gst-plugins-base-0.10.16:0.10 >=net-im/telepathy-logger-0.2.4[introspection] >=net-libs/telepathy-glib-0.17.5[introspection] >=sys-auth/polkit-0.100[introspection] >=x11-libs/libXfixes-5.0 >=x11-wm/mutter-3.4.1[introspection] >=x11-libs/startup-notification-0.11 app-misc/ca-certificates dev-libs/dbus-glib dev-libs/libxml2:2 gnome-base/librsvg media-libs/libcanberra media-libs/mesa media-sound/pulseaudio net-libs/libsoup:2.4[introspection] x11-libs/libX11 x11-libs/gdk-pixbuf:2[introspection] x11-libs/pango[introspection] x11-apps/mesa-progs bluetooth? ( >=net-wireless/gnome-bluetooth-3.1.0[introspection] ) networkmanager? ( >=net-misc/networkmanager-0.8.999[introspection] ) systemd? ( >=sys-apps/systemd-31 ) >=sys-auth/polkit-0.101[introspection] >=gnome-base/dconf-0.4.1 >=gnome-base/libgnomekbd-2.91.4[introspection] sys-power/upower[introspection] >=gnome-base/gnome-session-2.91.91 >=gnome-base/gnome-settings-daemon-2.91 >=gnome-base/gnome-control-center-2.91.92-r1[bluetooth(+)?] >=sys-apps/accountsservice-0.6.14[introspection] >=app-accessibility/caribou-0.3 x11-misc/xdg-utils media-fonts/dejavu x11-themes/gnome-icon-theme-symbolic networkmanager? ( net-misc/mobile-broadband-provider-info sys-libs/timezone-data ) !systemd? ( sys-auth/consolekit ) || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) SLOT=0 SRC_URI=mirror://gnome/sources/gnome-shell/3.4/gnome-shell-3.4.2.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0e973edaaa84297ccacc2c153de93f5b diff --git a/metadata/md5-cache/gnome-base/gnome-shell-3.6.3.1 b/metadata/md5-cache/gnome-base/gnome-shell-3.6.3.1 index 8188a6117fbe..b0baad96ecdc 100644 --- a/metadata/md5-cache/gnome-base/gnome-shell-3.6.3.1 +++ b/metadata/md5-cache/gnome-base/gnome-shell-3.6.3.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ LGPL-2+ RDEPEND=>=app-accessibility/at-spi2-atk-2.5.3 >=dev-libs/atk-2[introspection] >=app-crypt/gcr-3.3.90[introspection] >=dev-libs/glib-2.31.6:2 >=dev-libs/gjs-1.33.2 >=dev-libs/gobject-introspection-0.10.1 >=x11-libs/gtk+-3.3.9:3[introspection] >=media-libs/clutter-1.11.11:1.0[introspection] >=dev-libs/json-glib-0.13.2 >=dev-libs/libcroco-0.6.2:0.6 >=gnome-base/gnome-desktop-3.5.1:3=[introspection] >=gnome-base/gsettings-desktop-schemas-3.5.4 >=gnome-base/gnome-keyring-3.3.90 >=gnome-base/gnome-menus-3.5.3:3[introspection] gnome-base/libgnome-keyring >=gnome-extra/evolution-data-server-3.5.3:= >=media-libs/gstreamer-0.11.92:1.0 >=net-im/telepathy-logger-0.2.4[introspection] >=net-libs/telepathy-glib-0.19[introspection] >=sys-auth/polkit-0.100[introspection] >=x11-libs/libXfixes-5.0 >=x11-wm/mutter-3.6.3[introspection] >=x11-libs/startup-notification-0.11 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-libs/dbus-glib dev-libs/libxml2:2 gnome-base/librsvg media-libs/libcanberra media-libs/mesa media-sound/pulseaudio >=net-libs/libsoup-2.40:2.4[introspection] x11-libs/libX11 x11-libs/gdk-pixbuf:2[introspection] x11-libs/pango[introspection] x11-apps/mesa-progs bluetooth? ( >=net-wireless/gnome-bluetooth-3.5[introspection] ) networkmanager? ( >=net-misc/networkmanager-0.8.999[introspection] ) systemd? ( >=sys-apps/systemd-31 ) >=sys-auth/polkit-0.101[introspection] >=app-accessibility/caribou-0.3 >=gnome-base/gdm-3.5[introspection] >=gnome-base/libgnomekbd-2.91.4[introspection] media-libs/cogl[introspection] >=sys-apps/accountsservice-0.6.14[introspection] sys-power/upower[introspection] >=gnome-base/gnome-session-2.91.91 >=gnome-base/gnome-settings-daemon-2.91 >=gnome-base/gnome-control-center-2.91.92-r1[bluetooth(+)?] x11-misc/xdg-utils media-fonts/dejavu x11-themes/gnome-icon-theme-symbolic i18n? ( >=app-i18n/ibus-1.4.99[dconf,gtk3,introspection] ) networkmanager? ( net-misc/mobile-broadband-provider-info sys-libs/timezone-data ) !systemd? ( sys-auth/consolekit ) SLOT=0 SRC_URI=mirror://gnome/sources/gnome-shell/3.6/gnome-shell-3.6.3.1.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5a4a6d3fe5ff11e0aa9f118ffc5cee42 diff --git a/metadata/md5-cache/gnome-base/gnome-shell-3.8.0.1 b/metadata/md5-cache/gnome-base/gnome-shell-3.8.0.1 index 19b016b3e1c9..53376d370f8d 100644 --- a/metadata/md5-cache/gnome-base/gnome-shell-3.8.0.1 +++ b/metadata/md5-cache/gnome-base/gnome-shell-3.8.0.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ LGPL-2+ RDEPEND=>=app-accessibility/at-spi2-atk-2.5.3 >=dev-libs/atk-2[introspection] >=app-crypt/gcr-3.3.90[introspection] >=dev-libs/glib-2.35:2 >=dev-libs/gjs-1.35.8 >=dev-libs/gobject-introspection-0.10.1 >=x11-libs/gtk+-3.7.9:3[introspection] >=media-libs/clutter-1.13.4:1.0[introspection] >=dev-libs/json-glib-0.13.2 >=dev-libs/libcroco-0.6.2:0.6 >=gnome-base/gnome-desktop-3.7.90:3=[introspection] >=gnome-base/gsettings-desktop-schemas-3.7.4 >=gnome-base/gnome-keyring-3.3.90 >=gnome-base/gnome-menus-3.5.3:3[introspection] gnome-base/libgnome-keyring >=gnome-extra/evolution-data-server-3.5.3:= >=media-libs/gstreamer-0.11.92:1.0 >=net-im/telepathy-logger-0.2.4[introspection] >=net-libs/telepathy-glib-0.19[introspection] >=sys-auth/polkit-0.100[introspection] >=x11-libs/libXfixes-5.0 >=x11-wm/mutter-3.8.0[introspection] >=x11-libs/startup-notification-0.11 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-libs/dbus-glib dev-libs/libxml2:2 gnome-base/librsvg media-libs/libcanberra[gtk3] media-libs/mesa >=media-sound/pulseaudio-2 >=net-libs/libsoup-2.40:2.4[introspection] x11-libs/libX11 x11-libs/gdk-pixbuf:2[introspection] x11-libs/pango[introspection] x11-apps/mesa-progs bluetooth? ( >=net-wireless/gnome-bluetooth-3.5[introspection] ) networkmanager? ( >=net-misc/networkmanager-0.9.6[introspection] ) >=sys-auth/polkit-0.101[introspection] >=app-accessibility/caribou-0.4.8 >=gnome-base/gdm-3.5[introspection] >=gnome-base/libgnomekbd-2.91.4[introspection] media-libs/cogl[introspection] >=sys-apps/accountsservice-0.6.14[introspection] sys-power/upower[introspection] >=gnome-base/gnome-session-2.91.91 >=gnome-base/gnome-settings-daemon-2.91 >=gnome-base/gnome-control-center-2.91.92-r1[bluetooth(+)?] x11-misc/xdg-utils media-fonts/dejavu x11-themes/gnome-icon-theme-symbolic || ( sys-auth/consolekit >=sys-apps/systemd-31 ) i18n? ( >=app-i18n/ibus-1.4.99[dconf,gtk3,introspection] ) networkmanager? ( net-misc/mobile-broadband-provider-info sys-libs/timezone-data ) SLOT=0 SRC_URI=mirror://gnome/sources/gnome-shell/3.8/gnome-shell-3.8.0.1.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=86ddddc756673c46aa94db5eda62413f diff --git a/metadata/md5-cache/gnome-base/gsettings-desktop-schemas-3.6.1 b/metadata/md5-cache/gnome-base/gsettings-desktop-schemas-3.6.1 index 5ecc75ee06c1..19d8f29f696f 100644 --- a/metadata/md5-cache/gnome-base/gsettings-desktop-schemas-3.6.1 +++ b/metadata/md5-cache/gnome-base/gsettings-desktop-schemas-3.6.1 @@ -4,10 +4,10 @@ DESCRIPTION=Collection of GSettings schemas for GNOME desktop EAPI=5 HOMEPAGE=http://www.gnome.org/ IUSE=+introspection -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~sparc-solaris ~x86-solaris LICENSE=LGPL-2.1+ RDEPEND=>=dev-libs/glib-2.31:2 introspection? ( >=dev-libs/gobject-introspection-1.31.0 ) SLOT=0 SRC_URI=mirror://gnome/sources/gsettings-desktop-schemas/3.6/gsettings-desktop-schemas-3.6.1.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=9fdf4d774538f778c6393dfe83d21dc1 +_md5_=3c1a13545f01ece03b745a1ed97029de diff --git a/metadata/md5-cache/gnome-base/gvfs-1.12.3-r1 b/metadata/md5-cache/gnome-base/gvfs-1.12.3-r1 index 57dc42d11630..f269c6a7bf8c 100644 --- a/metadata/md5-cache/gnome-base/gvfs-1.12.3-r1 +++ b/metadata/md5-cache/gnome-base/gvfs-1.12.3-r1 @@ -4,11 +4,11 @@ DESCRIPTION=GNOME Virtual Filesystem Layer EAPI=5 HOMEPAGE=http://www.gnome.org IUSE=afp archive avahi bluetooth bluray cdda doc fuse gdu gnome-keyring gphoto2 +http ios samba +udev udisks -KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris LICENSE=LGPL-2+ RDEPEND=>=dev-libs/glib-2.31.0:2 sys-apps/dbus:= dev-libs/libxml2:= net-misc/openssh afp? ( >=dev-libs/libgcrypt-1.2.2:= ) archive? ( app-arch/libarchive:= ) avahi? ( >=net-dns/avahi-0.6 ) bluetooth? ( >=app-mobilephone/obex-data-server-0.4.5 dev-libs/dbus-glib:= net-wireless/bluez dev-libs/expat:= ) bluray? ( media-libs/libbluray:= ) fuse? ( >=sys-fs/fuse-2.8.0:= ) gdu? ( || ( >=gnome-base/libgdu-3.0.2 =sys-apps/gnome-disk-utility-3.0.2-r300 =sys-apps/gnome-disk-utility-3.0.2-r200 ) ) gnome-keyring? ( >=gnome-base/gnome-keyring-1.0 ) gphoto2? ( >=media-libs/libgphoto2-2.4.7:= ) ios? ( >=app-pda/libimobiledevice-1.1.0:= >=app-pda/libplist-1:= ) udev? ( cdda? ( >=dev-libs/libcdio-0.78.2:=[-minimal] ) virtual/udev:=[gudev] ) udisks? ( >=sys-fs/udisks-1.90:2 ) http? ( >=net-libs/libsoup-gnome-2.26.0:= ) samba? ( >=net-fs/samba-3.4.6[smbclient] ) REQUIRED_USE=cdda? ( udev ) SLOT=0 SRC_URI=mirror://gnome/sources/gvfs/1.12/gvfs-1.12.3.tar.xz http://dev.gentoo.org/~tetromino/distfiles/aclocal/libgcrypt.m4.bz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=424a626bb1e1ea13f479c0bc5b30e386 +_md5_=396f0b01cea1fa093ffb718aae5edf25 diff --git a/metadata/md5-cache/gnome-base/librsvg-2.36.4 b/metadata/md5-cache/gnome-base/librsvg-2.36.4 index 5b54c23f7583..6189f62f64d6 100644 --- a/metadata/md5-cache/gnome-base/librsvg-2.36.4 +++ b/metadata/md5-cache/gnome-base/librsvg-2.36.4 @@ -4,11 +4,11 @@ DESCRIPTION=Scalable Vector Graphics (SVG) rendering library EAPI=4 HOMEPAGE=https://live.gnome.org/LibRsvg IUSE=+gtk +introspection tools vala -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 ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +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 ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=LGPL-2 RDEPEND=>=dev-libs/glib-2.24:2 >=x11-libs/cairo-1.2 >=x11-libs/pango-1.16 >=dev-libs/libxml2-2.7:2 >=dev-libs/libcroco-0.6.1 x11-libs/gdk-pixbuf:2[introspection?] gtk? ( >=x11-libs/gtk+-2.16:2 tools? ( >=x11-libs/gtk+-3:3 ) ) introspection? ( >=dev-libs/gobject-introspection-0.10.8 ) REQUIRED_USE=vala? ( introspection ) SLOT=2 SRC_URI=mirror://gnome/sources/librsvg/2.36/librsvg-2.36.4.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=144eeddfa58f959b8f4fc7b0f9b7ef87 +_md5_=692f207793c004bee9dc3a5653f172a1 diff --git a/metadata/md5-cache/gnome-base/orbit-2.14.19-r2 b/metadata/md5-cache/gnome-base/orbit-2.14.19-r2 index 1ca0fc2e2627..bca0500473e9 100644 --- a/metadata/md5-cache/gnome-base/orbit-2.14.19-r2 +++ b/metadata/md5-cache/gnome-base/orbit-2.14.19-r2 @@ -4,11 +4,11 @@ DESCRIPTION=ORBit2 is a high-performance CORBA ORB EAPI=5 HOMEPAGE=http://projects.gnome.org/ORBit2/ IUSE=pic static-libs test debug -KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-libs/glib-2.8:2 >=dev-libs/libIDL-0.8.2 REQUIRED_USE=test? ( debug ) SLOT=2 SRC_URI=mirror://gnome/sources/ORBit2/2.14/ORBit2-2.14.19.tar.bz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=bd4051e4e7137735b9e8e69df01a1922 +_md5_=dc2231592d51b718703ff84071dbd760 diff --git a/metadata/md5-cache/gnome-extra/cinnamon-1.6.7-r1 b/metadata/md5-cache/gnome-extra/cinnamon-1.6.7-r1 index fd5074c83497..ce8fdc9f6e81 100644 --- a/metadata/md5-cache/gnome-extra/cinnamon-1.6.7-r1 +++ b/metadata/md5-cache/gnome-extra/cinnamon-1.6.7-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=>=dev-libs/glib-2.29.10:2 >=dev-libs/gjs-1.29.18 >=dev-libs/gobject-introspection-0.10.1 x11-libs/gdk-pixbuf:2[introspection] >=x11-libs/gtk+-3.0.0:3[introspection] >=media-libs/clutter-1.7.5:1.0[introspection] media-libs/cogl:1.0=[introspection] app-misc/ca-certificates >=dev-libs/json-glib-0.13.2 >=gnome-base/gnome-desktop-2.91.2:3=[introspection] >=gnome-base/gsettings-desktop-schemas-2.91.91 >=media-libs/gstreamer-0.10.16:0.10 >=media-libs/gst-plugins-base-0.10.16:0.10 net-libs/libsoup:2.4[introspection] >=sys-auth/polkit-0.100[introspection] >=x11-wm/muffin-1.0.5[introspection] dev-libs/dbus-glib dev-libs/libxml2:2 x11-libs/pango[introspection] >=dev-libs/libcroco-0.6.2:0.6 gnome-base/gconf:2[introspection] >=gnome-base/gnome-menus-3.2.0.1-r1:3[introspection] gnome-base/librsvg media-libs/libcanberra media-sound/pulseaudio >=x11-libs/startup-notification-0.11 x11-libs/libX11 >=x11-libs/libXfixes-5.0 x11-apps/mesa-progs python_single_target_python2_6? ( dev-lang/python:2.6[xml] ) python_single_target_python2_7? ( dev-lang/python: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(+)?] bluetooth? ( >=net-wireless/gnome-bluetooth-3.4:=[introspection] ) networkmanager? ( gnome-base/libgnome-keyring >=net-misc/networkmanager-0.8.999[introspection] ) >=gnome-base/dconf-0.4.1 >=gnome-base/libgnomekbd-2.91.4[introspection] sys-power/upower[introspection] >=gnome-base/gnome-session-3.2.1-r1 >=gnome-base/gnome-settings-daemon-2.91 >=gnome-base/gnome-control-center-2.91.92-r1 >=sys-apps/accountsservice-0.6.14[introspection] >=app-accessibility/caribou-0.3 x11-misc/xdg-utils dev-python/dbus-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] dev-python/gconf-python:2 dev-python/imaging dev-python/lxml x11-themes/gnome-icon-theme-symbolic dev-python/pygobject:3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_single_target_python2_6(+)?,python_single_target_python2_7(+)?] gnome-extra/nemo || ( app-admin/openrc-settingsd >=sys-apps/systemd-30 cinnamon-1.6.7.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8447f4065c8522bc4de995c41b1b0f52 diff --git a/metadata/md5-cache/gnome-extra/docky-2.1.3 b/metadata/md5-cache/gnome-extra/docky-2.1.3 deleted file mode 100644 index 5d5f67dd7452..000000000000 --- a/metadata/md5-cache/gnome-extra/docky-2.1.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib dev-dotnet/gconf-sharp >=dev-dotnet/gio-sharp-0.2-r1 dev-dotnet/glib-sharp dev-dotnet/gnome-desktop-sharp dev-dotnet/gnome-keyring-sharp dev-dotnet/gtk-sharp dev-dotnet/mono-addins[gtk] dev-dotnet/notify-sharp dev-dotnet/rsvg-sharp dev-dotnet/wnck-sharp dev-util/intltool virtual/pkgconfig >=sys-apps/sed-4 -DESCRIPTION=Elegant, powerful, clean dock -EAPI=3 -HOMEPAGE=https://wiki.go-docky.com -IUSE=debug nls debug -KEYWORDS=amd64 x86 -LICENSE=GPL-3 -RDEPEND=dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib dev-dotnet/gconf-sharp >=dev-dotnet/gio-sharp-0.2-r1 dev-dotnet/glib-sharp dev-dotnet/gnome-desktop-sharp dev-dotnet/gnome-keyring-sharp dev-dotnet/gtk-sharp dev-dotnet/mono-addins[gtk] dev-dotnet/notify-sharp dev-dotnet/rsvg-sharp dev-dotnet/wnck-sharp -SLOT=0 -SRC_URI=http://launchpad.net/docky/2.1/2.1.3/+download/docky-2.1.3.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b4ce85c784c5752027b9f2a68ecd00f2 diff --git a/metadata/md5-cache/gnome-extra/docky-2.1.4 b/metadata/md5-cache/gnome-extra/docky-2.1.4 index ac4d9bb29852..171698b82372 100644 --- a/metadata/md5-cache/gnome-extra/docky-2.1.4 +++ b/metadata/md5-cache/gnome-extra/docky-2.1.4 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib dev-dotnet/gconf-sharp >=dev-dotnet/gio-sharp-0.2-r1 dev-dotnet/glib-sharp dev-dotnet/gnome-desktop-sharp dev-dotnet/gnome-keyring-sharp dev-dotnet/gtk-sharp dev-dotnet/mono-addins[gtk] dev-dotnet/notify-sharp dev-dotnet/rsvg-sharp dev-dotnet/wnck-sharp dev-util/intltool virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 +DEPEND=dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib dev-dotnet/gconf-sharp >=dev-dotnet/gio-sharp-0.2-r1 dev-dotnet/glib-sharp dev-dotnet/gnome-desktop-sharp dev-dotnet/gnome-keyring-sharp dev-dotnet/gtk-sharp dev-dotnet/mono-addins[gtk] dev-dotnet/notify-sharp dev-dotnet/rsvg-sharp dev-dotnet/wnck-sharp dev-util/intltool virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool app-arch/xz-utils >=sys-apps/sed-4 DESCRIPTION=Elegant, powerful, clean dock EAPI=4 HOMEPAGE=https://wiki.go-docky.com @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-dotnet/dbus-sharp dev-dotnet/dbus-sharp-glib dev-dotnet/gconf-sharp >=dev-dotnet/gio-sharp-0.2-r1 dev-dotnet/glib-sharp dev-dotnet/gnome-desktop-sharp dev-dotnet/gnome-keyring-sharp dev-dotnet/gtk-sharp dev-dotnet/mono-addins[gtk] dev-dotnet/notify-sharp dev-dotnet/rsvg-sharp dev-dotnet/wnck-sharp SLOT=0 SRC_URI=http://launchpad.net/docky/2.1/2.1.4/+download/docky-2.1.4.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=4c3779baf61873d6e7d1bed79125c9bb +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mono 203a4295c06155d318bdff9c6b2d5e1c multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=3afba6ae467e3cf73d2a2378b1822b12 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 d6a11efa3367..77b68139af44 100644 --- a/metadata/md5-cache/gnome-extra/gnome-clocks-0.1.5 +++ b/metadata/md5-cache/gnome-extra/gnome-clocks-0.1.5 @@ -9,5 +9,5 @@ LICENSE=GPL-2+ RDEPEND=dev-libs/libgweather[introspection] dev-python/pycairo >=dev-python/pygobject-3.4.2:3[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(-)] media-libs/clutter-gtk:1.0[introspection] media-libs/clutter:1.0[introspection] media-libs/libcanberra x11-libs/gdk-pixbuf:2[introspection] x11-libs/gtk+:3[introspection] x11-libs/libnotify[introspection] x11-libs/pango[introspection] python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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://gnome/sources/gnome-clocks/0.1/gnome-clocks-0.1.5.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=db3f8be1be59fbfce5ab7c4af4b32ac5 diff --git a/metadata/md5-cache/gnome-extra/gtkhtml-4.6.4 b/metadata/md5-cache/gnome-extra/gtkhtml-4.6.4 index a97abb1ad843..fb46cafbb9c7 100644 --- a/metadata/md5-cache/gnome-extra/gtkhtml-4.6.4 +++ b/metadata/md5-cache/gnome-extra/gtkhtml-4.6.4 @@ -3,10 +3,10 @@ DEPEND=>=x11-libs/gtk+-3.0.2:3 >=x11-libs/cairo-1.10:= x11-libs/pango >=x11-them DESCRIPTION=Lightweight HTML rendering/printing/editing engine EAPI=5 HOMEPAGE=http://projects.gnome.org/evolution/ -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux LICENSE=GPL-2+ LGPL-2+ RDEPEND=>=x11-libs/gtk+-3.0.2:3 >=x11-libs/cairo-1.10:= x11-libs/pango >=x11-themes/gnome-icon-theme-2.22.0 >=app-text/enchant-1.1.7:= gnome-base/gsettings-desktop-schemas >=app-text/iso-codes-0.49 >=net-libs/libsoup-2.26.0:2.4 SLOT=4.0 SRC_URI=mirror://gnome/sources/gtkhtml/4.6/gtkhtml-4.6.4.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=fb0deefc7ed317107dc15d98f9c615fd +_md5_=cb083e43f433b6ea76b46ccbba6a52a2 diff --git a/metadata/md5-cache/gnome-extra/gucharmap-3.6.1 b/metadata/md5-cache/gnome-extra/gucharmap-3.6.1 index f6f364c8f4d6..82a488a41991 100644 --- a/metadata/md5-cache/gnome-extra/gucharmap-3.6.1 +++ b/metadata/md5-cache/gnome-extra/gucharmap-3.6.1 @@ -4,11 +4,11 @@ DESCRIPTION=Unicode character map viewer and library EAPI=5 HOMEPAGE=http://live.gnome.org/Gucharmap IUSE=cjk +introspection test vala debug -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd LICENSE=GPL-3 RDEPEND=>=dev-libs/glib-2.32 >=x11-libs/pango-1.2.1[introspection?] >=x11-libs/gtk+-3.4.0:3[introspection?] introspection? ( >=dev-libs/gobject-introspection-0.9.0 ) !=dev-libs/glib-2.26:2 >=dev-libs/libxml2-2.4.16:2 sys-libs/zlib bzip2? ( app-arch/bzip2 ) gtk? ( x11-libs/gtk+:2 ) introspection? ( >=dev-libs/gobject-introspection-1 ) python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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.10:2 >=dev-python/pygtk-2.10:2 ) SLOT=0 SRC_URI=mirror://gnome/sources/libgsf/1.14/libgsf-1.14.25.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=50932244247902fb3ea613258bba5663 +_md5_=194859e44f4e1ead37d54704a4051c4a diff --git a/metadata/md5-cache/kde-base/jovie-4.10.2 b/metadata/md5-cache/kde-base/jovie-4.10.2 index 88bbab563e30..412df715da90 100644 --- a/metadata/md5-cache/kde-base/jovie-4.10.2 +++ b/metadata/md5-cache/kde-base/jovie-4.10.2 @@ -10,4 +10,4 @@ RDEPEND=app-accessibility/speech-dispatcher >=kde-base/oxygen-icons-4.10.2:4[aqu SLOT=4 SRC_URI=mirror://kde/stable/4.10.2/src/jovie-4.10.2.tar.xz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=4f2256ab3967c4a565fa8529561b21d6 +_md5_=9bc0347a357fa8ca9c94538e7049a02d diff --git a/metadata/md5-cache/kde-base/kget-4.10.1-r1 b/metadata/md5-cache/kde-base/kget-4.10.1-r1 new file mode 100644 index 000000000000..16e90e32e2bc --- /dev/null +++ b/metadata/md5-cache/kde-base/kget-4.10.1-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack +DEPEND=app-crypt/qca:2 >=kde-base/kdelibs-4.10.1:4[aqua=,semantic-desktop=] >=kde-base/kdepimlibs-4.10.1:4[aqua=] >=kde-base/libkonq-4.10.1:4[aqua=] >=kde-base/libkworkspace-4.10.1:4[aqua=] >=kde-base/solid-4.10.1:4[aqua=] bittorrent? ( >=net-libs/libktorrent-1.0.3 ) mms? ( media-libs/libmms ) sqlite? ( dev-db/sqlite:3 ) webkit? ( >=kde-misc/kwebkitpart-0.9.6 ) dev-libs/boost >=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-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.0:4[accessibility,dbus] >=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.10.1:4[aqua=] +DESCRIPTION=An advanced download manager for KDE +EAPI=5 +HOMEPAGE=http://www.kde.org/ +IUSE=debug bittorrent mms semantic-desktop sqlite webkit +handbook aqua +KEYWORDS=amd64 ~arm ppc ppc64 x86 ~amd64-linux ~x86-linux +LICENSE=GPL-2 +RDEPEND=app-crypt/qca:2 >=kde-base/kdelibs-4.10.1:4[aqua=,semantic-desktop=] >=kde-base/kdepimlibs-4.10.1:4[aqua=] >=kde-base/libkonq-4.10.1:4[aqua=] >=kde-base/libkworkspace-4.10.1:4[aqua=] >=kde-base/solid-4.10.1:4[aqua=] bittorrent? ( >=net-libs/libktorrent-1.0.3 ) mms? ( media-libs/libmms ) sqlite? ( dev-db/sqlite:3 ) webkit? ( >=kde-misc/kwebkitpart-0.9.6 ) >=kde-base/oxygen-icons-4.10.1:4[aqua=] handbook? ( >=kde-base/kdelibs-4.10.1:4[aqua=,handbook] ) 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.0:4[accessibility,dbus] >=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.10.1:4[aqua=] +SLOT=4 +SRC_URI=mirror://kde/stable/4.10.1/src/kdenetwork-4.10.1.tar.xz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 kde4-meta 7361710ef31f9b5d0a1f8393eb117897 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=542f7f7fe8ac16dbfdf1508dfe949e5e diff --git a/metadata/md5-cache/kde-base/nsplugins-4.10.1 b/metadata/md5-cache/kde-base/nsplugins-4.10.1 index af63f4e1e323..788488fc424b 100644 --- a/metadata/md5-cache/kde-base/nsplugins-4.10.1 +++ b/metadata/md5-cache/kde-base/nsplugins-4.10.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/libXt >=kde-base/konqueror-4.10.1:4[aqua=] >=kde-base/oxygen-icons-4.10.1: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.0:4[accessibility,dbus] >=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.10.1:4[aqua=] >=media-libs/qimageblitz-0.0.4 SLOT=4 SRC_URI=mirror://kde/stable/4.10.1/src/kde-baseapps-4.10.1.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 kde4-meta 7361710ef31f9b5d0a1f8393eb117897 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 kde4-meta 7361710ef31f9b5d0a1f8393eb117897 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=bad24039a55b162f7cdede80c9220299 diff --git a/metadata/md5-cache/kde-base/nsplugins-4.10.2 b/metadata/md5-cache/kde-base/nsplugins-4.10.2 index 9a9a3512779f..51df6e64a3e6 100644 --- a/metadata/md5-cache/kde-base/nsplugins-4.10.2 +++ b/metadata/md5-cache/kde-base/nsplugins-4.10.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=x11-libs/libXt >=kde-base/konqueror-4.10.2:4[aqua=] >=kde-base/oxygen-icons-4.10.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.0:4[accessibility,dbus] >=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.10.2:4[aqua=] >=media-libs/qimageblitz-0.0.4 SLOT=4 SRC_URI=mirror://kde/stable/4.10.2/src/kde-baseapps-4.10.2.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 kde4-meta 7361710ef31f9b5d0a1f8393eb117897 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 kde4-meta 7361710ef31f9b5d0a1f8393eb117897 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=ce28338d9dd24424e89d3b5e48d89b45 diff --git a/metadata/md5-cache/kde-misc/kde-gtk-config-2.1.1 b/metadata/md5-cache/kde-misc/kde-gtk-config-2.1.1 index 2b360004bad6..1f3e501f35ac 100644 --- a/metadata/md5-cache/kde-misc/kde-gtk-config-2.1.1 +++ b/metadata/md5-cache/kde-misc/kde-gtk-config-2.1.1 @@ -4,10 +4,10 @@ DESCRIPTION=KDE systemsettings kcm to set GTK application look&feel EAPI=4 HOMEPAGE=http://projects.kde.org/kde-gtk-config IUSE=debug linguas_ca linguas_cs linguas_da linguas_de linguas_el linguas_es linguas_et linguas_eu linguas_fr linguas_ga linguas_gl linguas_hu linguas_id linguas_it linguas_ja linguas_km linguas_lt linguas_nds linguas_nl linguas_pl linguas_pt linguas_pt_BR linguas_ru linguas_sv linguas_uk linguas_zh_CN aqua -KEYWORDS=amd64 ~arm ppc ~ppc64 x86 ~x86-fbsd +KEYWORDS=amd64 ~arm ppc ppc64 x86 ~x86-fbsd LICENSE=GPL-3 RDEPEND=dev-libs/glib:2 x11-libs/gtk+:2 x11-libs/gtk+:3 !kde-misc/kcm_gtk >=kde-base/kcmshell-4.4:4[aqua=] >=kde-base/oxygen-icons-4.4:4[aqua=] linguas_ca? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) linguas_cs? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) linguas_da? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) linguas_el? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_el(+)] ) linguas_es? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) linguas_eu? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_eu(+)] ) linguas_fr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) linguas_ga? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) linguas_gl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_gl(+)] ) linguas_hu? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) linguas_id? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_id(+)] ) linguas_it? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) linguas_ja? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) linguas_km? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_km(+)] ) linguas_lt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) linguas_nds? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) linguas_ru? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) linguas_zh_CN? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_CN(+)] ) 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.0:4[accessibility,dbus] >=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=mirror://kde/stable/kde-gtk-config/2.1.1/src/kde-gtk-config-2.1.1.tar.bz2 _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=4bcc709c9e4f5c8e7ea4857a371dbe90 +_md5_=8530c36ef2230b85754e92defae8bcac diff --git a/metadata/md5-cache/kde-misc/kwebkitpart-1.3.1 b/metadata/md5-cache/kde-misc/kwebkitpart-1.3.1 index 6b7776e36bf7..8a8ce839988f 100644 --- a/metadata/md5-cache/kde-misc/kwebkitpart-1.3.1 +++ b/metadata/md5-cache/kde-misc/kwebkitpart-1.3.1 @@ -4,10 +4,10 @@ DESCRIPTION=A WebKit KPart for konqueror EAPI=4 HOMEPAGE=https://projects.kde.org/projects/extragear/base/kwebkitpart IUSE=debug aqua -KEYWORDS=amd64 ~arm ppc ~ppc64 x86 +KEYWORDS=amd64 ~arm ppc ppc64 x86 LICENSE=LGPL-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.0:4[accessibility,dbus] >=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/kwebkitpart-1.3.1.tar.xz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=826763d1005165f1eea4cb1a60ba3bf9 +_md5_=7aabc1104a6c4fba1d55bf68a4ef119c diff --git a/metadata/md5-cache/kde-misc/networkmanagement-0.9.0.6 b/metadata/md5-cache/kde-misc/networkmanagement-0.9.0.6 deleted file mode 100644 index 1d97615f3eda..000000000000 --- a/metadata/md5-cache/kde-misc/networkmanagement-0.9.0.6 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=kde-base/solid-4.4:4[aqua=] net-misc/mobile-broadband-provider-info >=net-misc/networkmanager-0.9.0 >=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.0:4[accessibility,dbus] >=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=KDE frontend for NetworkManager -EAPI=5 -HOMEPAGE=http://www.kde.org/ -IUSE=debug linguas_ar linguas_ca linguas_cs linguas_da linguas_de linguas_el linguas_es linguas_et linguas_fa linguas_fi linguas_fr linguas_ga linguas_hu linguas_it linguas_ja linguas_kk linguas_km linguas_lt linguas_nb linguas_nds linguas_nl linguas_nn linguas_pl linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_se linguas_sk linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@latin linguas_sv linguas_tr linguas_uk linguas_zh_TW aqua -KEYWORDS=amd64 x86 -LICENSE=GPL-2 LGPL-2 -RDEPEND=>=kde-base/solid-4.4:4[aqua=] net-misc/mobile-broadband-provider-info >=net-misc/networkmanager-0.9.0 >=kde-base/oxygen-icons-4.4:4[aqua=] linguas_ar? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ar(+)] ) linguas_ca? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ca(+)] ) linguas_cs? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_cs(+)] ) linguas_da? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_da(+)] ) linguas_de? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_de(+)] ) linguas_el? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_el(+)] ) linguas_es? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_es(+)] ) linguas_et? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_et(+)] ) linguas_fa? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fa(+)] ) linguas_fi? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fi(+)] ) linguas_fr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_fr(+)] ) linguas_ga? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ga(+)] ) linguas_hu? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_hu(+)] ) linguas_it? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_it(+)] ) linguas_ja? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ja(+)] ) linguas_kk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_kk(+)] ) linguas_km? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_km(+)] ) linguas_lt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_lt(+)] ) linguas_nb? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nb(+)] ) linguas_nds? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nds(+)] ) linguas_nl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nl(+)] ) linguas_nn? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_nn(+)] ) linguas_pl? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pl(+)] ) linguas_pt? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt(+)] ) linguas_pt_BR? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_pt_BR(+)] ) linguas_ro? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ro(+)] ) linguas_ru? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_ru(+)] ) linguas_se? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_se(+)] ) linguas_sk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sk(+)] ) linguas_sr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr(+)] ) linguas_sr@ijekavian? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavian(+)] ) linguas_sr@ijekavianlatin? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@ijekavianlatin(+)] ) linguas_sr@latin? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sr@latin(+)] ) linguas_sv? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_sv(+)] ) linguas_tr? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_tr(+)] ) linguas_uk? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_uk(+)] ) linguas_zh_TW? ( >=kde-base/kde-l10n-4.4:4[aqua=,linguas_zh_TW(+)] ) 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.0:4[accessibility,dbus] >=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=mirror://kde/unstable/networkmanagement/0.9.0.6/src/networkmanagement-0.9.0.6.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=a6ac4112620ebd456f48d3d505f27b73 diff --git a/metadata/md5-cache/kde-misc/polkit-kde-kcmodules-0.98_pre20120917 b/metadata/md5-cache/kde-misc/polkit-kde-kcmodules-0.98_pre20120917 deleted file mode 100644 index 59c66ff4b763..000000000000 --- a/metadata/md5-cache/kde-misc/polkit-kde-kcmodules-0.98_pre20120917 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=sys-auth/polkit-kde-agent-0.99 >=sys-auth/polkit-qt-0.103 >=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.0:4[accessibility,dbus] >=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=PolKit agent module for KDE. -EAPI=4 -HOMEPAGE=http://www.kde.org -IUSE=debug aqua -KEYWORDS=amd64 ~arm ppc x86 -LICENSE=GPL-2 -RDEPEND=>=sys-auth/polkit-kde-agent-0.99 >=sys-auth/polkit-qt-0.103 >=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.0:4[accessibility,dbus] >=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/polkit-kde-kcmodules-0.98_pre20120917.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=0f5e7610639d5dea05b940291a6604c2 diff --git a/metadata/md5-cache/kde-misc/polkit-kde-kcmodules-0.98_pre20120917-r1 b/metadata/md5-cache/kde-misc/polkit-kde-kcmodules-0.98_pre20120917-r1 index 3f797610af17..ade0cffb3e69 100644 --- a/metadata/md5-cache/kde-misc/polkit-kde-kcmodules-0.98_pre20120917-r1 +++ b/metadata/md5-cache/kde-misc/polkit-kde-kcmodules-0.98_pre20120917-r1 @@ -4,10 +4,10 @@ DESCRIPTION=PolKit agent module for KDE. EAPI=4 HOMEPAGE=http://www.kde.org IUSE=debug aqua -KEYWORDS=amd64 ~arm ppc ~ppc64 x86 +KEYWORDS=amd64 ~arm ppc ppc64 x86 LICENSE=GPL-2 RDEPEND=>=sys-auth/polkit-kde-agent-0.99 >=sys-auth/polkit-qt-0.103 >=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.0:4[accessibility,dbus] >=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/polkit-kde-kcmodules-0.98_pre20120917.tar.xz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=9af4f6514ed578ff6e933056093e5105 +_md5_=dc549ff23f3edc3e9588baae1d3c1c24 diff --git a/metadata/md5-cache/mail-client/thunderbird-17.0.4 b/metadata/md5-cache/mail-client/thunderbird-17.0.4 index 95690ae5e673..c6aac7fc8e18 100644 --- a/metadata/md5-cache/mail-client/thunderbird-17.0.4 +++ b/metadata/md5-cache/mail-client/thunderbird-17.0.4 @@ -9,5 +9,5 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/binutils-2.16.1 >=dev-libs/nss-3.14.1 >=dev-libs/nspr-4.9.4 >=dev-libs/glib-2.26 gconf? ( >=gnome-base/gconf-1.2.1:2 ) >=media-libs/libpng-1.5.11[apng] >=x11-libs/cairo-1.10 >=x11-libs/pango-1.14.0 >=x11-libs/gtk+-2.14 kernel_linux? ( media-libs/alsa-lib ) >=media-libs/libvpx-1.0.0 virtual/libffi !x11-plugins/enigmail system-sqlite? ( || ( >=dev-db/sqlite-3.7.16:3[secure-delete,debug=] =app-crypt/gnupg-2.0 || ( app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) ) =app-crypt/gnupg-1.4* ) ) x11-libs/libXrender x11-libs/libXt >=sys-libs/zlib-1.1.4 app-arch/zip app-arch/unzip >=app-text/hunspell-1.2 dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.8[X] >=x11-libs/gtk+-2.8.6:2 >=x11-libs/pango-1.10.1[X] virtual/jpeg alsa? ( media-libs/alsa-lib ) virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 ) libnotify? ( >=x11-libs/libnotify-0.4 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) wifi? ( net-wireless/wireless-tools ) SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ar.xpi -> thunderbird-17.0.4esr-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ast.xpi -> thunderbird-17.0.4esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/be.xpi -> thunderbird-17.0.4esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/bg.xpi -> thunderbird-17.0.4esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/bn-BD.xpi -> thunderbird-17.0.4esr-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/br.xpi -> thunderbird-17.0.4esr-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ca.xpi -> thunderbird-17.0.4esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/cs.xpi -> thunderbird-17.0.4esr-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/da.xpi -> thunderbird-17.0.4esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/de.xpi -> thunderbird-17.0.4esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/el.xpi -> thunderbird-17.0.4esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/en-GB.xpi -> thunderbird-17.0.4esr-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/es-AR.xpi -> thunderbird-17.0.4esr-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/es-ES.xpi -> thunderbird-17.0.4esr-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/et.xpi -> thunderbird-17.0.4esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/eu.xpi -> thunderbird-17.0.4esr-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/fi.xpi -> thunderbird-17.0.4esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/fr.xpi -> thunderbird-17.0.4esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/fy-NL.xpi -> thunderbird-17.0.4esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ga-IE.xpi -> thunderbird-17.0.4esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/gd.xpi -> thunderbird-17.0.4esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/gl.xpi -> thunderbird-17.0.4esr-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/he.xpi -> thunderbird-17.0.4esr-he.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/hr.xpi -> thunderbird-17.0.4esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/hu.xpi -> thunderbird-17.0.4esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/hy-AM.xpi -> thunderbird-17.0.4esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/id.xpi -> thunderbird-17.0.4esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/is.xpi -> thunderbird-17.0.4esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/it.xpi -> thunderbird-17.0.4esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ja.xpi -> thunderbird-17.0.4esr-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ko.xpi -> thunderbird-17.0.4esr-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/lt.xpi -> thunderbird-17.0.4esr-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/nb-NO.xpi -> thunderbird-17.0.4esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/nl.xpi -> thunderbird-17.0.4esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/nn-NO.xpi -> thunderbird-17.0.4esr-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/pa-IN.xpi -> thunderbird-17.0.4esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/pl.xpi -> thunderbird-17.0.4esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/pt-BR.xpi -> thunderbird-17.0.4esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/pt-PT.xpi -> thunderbird-17.0.4esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/rm.xpi -> thunderbird-17.0.4esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ro.xpi -> thunderbird-17.0.4esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ru.xpi -> thunderbird-17.0.4esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/si.xpi -> thunderbird-17.0.4esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sk.xpi -> thunderbird-17.0.4esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sl.xpi -> thunderbird-17.0.4esr-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sq.xpi -> thunderbird-17.0.4esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sr.xpi -> thunderbird-17.0.4esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sv-SE.xpi -> thunderbird-17.0.4esr-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ta-LK.xpi -> thunderbird-17.0.4esr-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/tr.xpi -> thunderbird-17.0.4esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/uk.xpi -> thunderbird-17.0.4esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/vi.xpi -> thunderbird-17.0.4esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/zh-CN.xpi -> thunderbird-17.0.4esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/zh-TW.xpi -> thunderbird-17.0.4esr-zh-TW.xpi ) ftp://ftp.mozilla.org/pub/thunderbird/releases/17.0.4esr/source/thunderbird-17.0.4esr.source.tar.bz2 crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-1.5.0.tar.gz ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-17.0-patches-01.tar.xz http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-17.0-patches-0.4.tar.xz http://dev.gentoo.org/~nirbheek/mozilla/patchsets/firefox-17.0-patches-0.4.tar.xz http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-17.0-patches-01.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac makeedit 5be302268d425e0429d2f1ee3ba3f5a3 mozconfig-3 20f7be97073003610d184672d49cae8d mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac makeedit 5be302268d425e0429d2f1ee3ba3f5a3 mozconfig-3 e4ad1852082c7cd6fef51893c4d16af2 mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=09c5e64071c0f888eee8efdc9d488a7b diff --git a/metadata/md5-cache/mail-client/thunderbird-17.0.4-r1 b/metadata/md5-cache/mail-client/thunderbird-17.0.4-r1 index de79de83b545..4b4cc5020602 100644 --- a/metadata/md5-cache/mail-client/thunderbird-17.0.4-r1 +++ b/metadata/md5-cache/mail-client/thunderbird-17.0.4-r1 @@ -9,5 +9,5 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/binutils-2.16.1 >=dev-libs/nss-3.14.1 >=dev-libs/nspr-4.9.4 >=dev-libs/glib-2.26 gconf? ( >=gnome-base/gconf-1.2.1:2 ) >=media-libs/libpng-1.5.11[apng] >=x11-libs/cairo-1.10 >=x11-libs/pango-1.14.0 >=x11-libs/gtk+-2.14 kernel_linux? ( media-libs/alsa-lib ) >=media-libs/libvpx-1.0.0 virtual/libffi !x11-plugins/enigmail system-sqlite? ( || ( >=dev-db/sqlite-3.7.16:3[secure-delete,debug=] =app-crypt/gnupg-2.0 || ( app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) ) =app-crypt/gnupg-1.4* ) ) x11-libs/libXrender x11-libs/libXt >=sys-libs/zlib-1.1.4 app-arch/zip app-arch/unzip >=app-text/hunspell-1.2 dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.8[X] >=x11-libs/gtk+-2.8.6:2 >=x11-libs/pango-1.10.1[X] virtual/jpeg alsa? ( media-libs/alsa-lib ) virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 ) libnotify? ( >=x11-libs/libnotify-0.4 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) wifi? ( net-wireless/wireless-tools ) SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ar.xpi -> thunderbird-17.0.4esr-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ast.xpi -> thunderbird-17.0.4esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/be.xpi -> thunderbird-17.0.4esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/bg.xpi -> thunderbird-17.0.4esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/bn-BD.xpi -> thunderbird-17.0.4esr-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/br.xpi -> thunderbird-17.0.4esr-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ca.xpi -> thunderbird-17.0.4esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/cs.xpi -> thunderbird-17.0.4esr-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/da.xpi -> thunderbird-17.0.4esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/de.xpi -> thunderbird-17.0.4esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/el.xpi -> thunderbird-17.0.4esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/en-GB.xpi -> thunderbird-17.0.4esr-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/es-AR.xpi -> thunderbird-17.0.4esr-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/es-ES.xpi -> thunderbird-17.0.4esr-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/et.xpi -> thunderbird-17.0.4esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/eu.xpi -> thunderbird-17.0.4esr-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/fi.xpi -> thunderbird-17.0.4esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/fr.xpi -> thunderbird-17.0.4esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/fy-NL.xpi -> thunderbird-17.0.4esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ga-IE.xpi -> thunderbird-17.0.4esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/gd.xpi -> thunderbird-17.0.4esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/gl.xpi -> thunderbird-17.0.4esr-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/he.xpi -> thunderbird-17.0.4esr-he.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/hr.xpi -> thunderbird-17.0.4esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/hu.xpi -> thunderbird-17.0.4esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/hy-AM.xpi -> thunderbird-17.0.4esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/id.xpi -> thunderbird-17.0.4esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/is.xpi -> thunderbird-17.0.4esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/it.xpi -> thunderbird-17.0.4esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ja.xpi -> thunderbird-17.0.4esr-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ko.xpi -> thunderbird-17.0.4esr-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/lt.xpi -> thunderbird-17.0.4esr-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/nb-NO.xpi -> thunderbird-17.0.4esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/nl.xpi -> thunderbird-17.0.4esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/nn-NO.xpi -> thunderbird-17.0.4esr-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/pa-IN.xpi -> thunderbird-17.0.4esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/pl.xpi -> thunderbird-17.0.4esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/pt-BR.xpi -> thunderbird-17.0.4esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/pt-PT.xpi -> thunderbird-17.0.4esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/rm.xpi -> thunderbird-17.0.4esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ro.xpi -> thunderbird-17.0.4esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ru.xpi -> thunderbird-17.0.4esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/si.xpi -> thunderbird-17.0.4esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sk.xpi -> thunderbird-17.0.4esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sl.xpi -> thunderbird-17.0.4esr-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sq.xpi -> thunderbird-17.0.4esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sr.xpi -> thunderbird-17.0.4esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/sv-SE.xpi -> thunderbird-17.0.4esr-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/ta-LK.xpi -> thunderbird-17.0.4esr-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/tr.xpi -> thunderbird-17.0.4esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/uk.xpi -> thunderbird-17.0.4esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/vi.xpi -> thunderbird-17.0.4esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/zh-CN.xpi -> thunderbird-17.0.4esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.4esr/linux-i686/xpi/zh-TW.xpi -> thunderbird-17.0.4esr-zh-TW.xpi ) ftp://ftp.mozilla.org/pub/thunderbird/releases/17.0.4esr/source/thunderbird-17.0.4esr.source.tar.bz2 crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-1.5.1.tar.gz ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-17.0-patches-01.tar.xz http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-17.0-patches-0.5.tar.xz http://dev.gentoo.org/~nirbheek/mozilla/patchsets/firefox-17.0-patches-0.5.tar.xz http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-17.0-patches-01.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac makeedit 5be302268d425e0429d2f1ee3ba3f5a3 mozconfig-3 20f7be97073003610d184672d49cae8d mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac makeedit 5be302268d425e0429d2f1ee3ba3f5a3 mozconfig-3 e4ad1852082c7cd6fef51893c4d16af2 mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f13e7d390a360f0da2b234da1f79967e diff --git a/metadata/md5-cache/mail-client/thunderbird-17.0.5 b/metadata/md5-cache/mail-client/thunderbird-17.0.5 index 68c9b96691d6..50c2853f3c7e 100644 --- a/metadata/md5-cache/mail-client/thunderbird-17.0.5 +++ b/metadata/md5-cache/mail-client/thunderbird-17.0.5 @@ -4,10 +4,10 @@ DESCRIPTION=Thunderbird Mail Client EAPI=3 HOMEPAGE=http://www.mozilla.com/en-US/thunderbird/ IUSE=bindist gconf +crypt +jit +ipc ldap +lightning +minimal mozdom selinux custom-cflags custom-optimization +alsa +dbus debug libnotify startup-notification system-sqlite wifi linguas_ar linguas_ast linguas_be linguas_bg linguas_bn_BD linguas_br linguas_ca linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_es_AR linguas_es_ES linguas_et linguas_eu linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_he linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_ko linguas_lt linguas_nb_NO linguas_nl linguas_nn_NO linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_sq linguas_sr linguas_sv_SE linguas_ta_LK linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW -KEYWORDS=~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~ppc ~ppc64 x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/binutils-2.16.1 >=dev-libs/nss-3.14.1 >=dev-libs/nspr-4.9.4 >=dev-libs/glib-2.26 gconf? ( >=gnome-base/gconf-1.2.1:2 ) >=media-libs/libpng-1.5.11[apng] >=x11-libs/cairo-1.10 >=x11-libs/pango-1.14.0 >=x11-libs/gtk+-2.14 kernel_linux? ( media-libs/alsa-lib ) >=media-libs/libvpx-1.0.0 virtual/libffi !x11-plugins/enigmail system-sqlite? ( || ( >=dev-db/sqlite-3.7.16:3[secure-delete,debug=] =app-crypt/gnupg-2.0 || ( app-crypt/pinentry[gtk] app-crypt/pinentry[qt4] ) ) =app-crypt/gnupg-1.4* ) ) x11-libs/libXrender x11-libs/libXt >=sys-libs/zlib-1.1.4 app-arch/zip app-arch/unzip >=app-text/hunspell-1.2 dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.8[X] >=x11-libs/gtk+-2.8.6:2 >=x11-libs/pango-1.10.1[X] virtual/jpeg alsa? ( media-libs/alsa-lib ) virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 ) libnotify? ( >=x11-libs/libnotify-0.4 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) wifi? ( net-wireless/wireless-tools ) SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/ar.xpi -> thunderbird-17.0.5esr-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/ast.xpi -> thunderbird-17.0.5esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/be.xpi -> thunderbird-17.0.5esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/bg.xpi -> thunderbird-17.0.5esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/bn-BD.xpi -> thunderbird-17.0.5esr-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/br.xpi -> thunderbird-17.0.5esr-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/ca.xpi -> thunderbird-17.0.5esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/cs.xpi -> thunderbird-17.0.5esr-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/da.xpi -> thunderbird-17.0.5esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/de.xpi -> thunderbird-17.0.5esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/el.xpi -> thunderbird-17.0.5esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/en-GB.xpi -> thunderbird-17.0.5esr-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/es-AR.xpi -> thunderbird-17.0.5esr-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/es-ES.xpi -> thunderbird-17.0.5esr-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/et.xpi -> thunderbird-17.0.5esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/eu.xpi -> thunderbird-17.0.5esr-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/fi.xpi -> thunderbird-17.0.5esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/fr.xpi -> thunderbird-17.0.5esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/fy-NL.xpi -> thunderbird-17.0.5esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/ga-IE.xpi -> thunderbird-17.0.5esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/gd.xpi -> thunderbird-17.0.5esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/gl.xpi -> thunderbird-17.0.5esr-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/he.xpi -> thunderbird-17.0.5esr-he.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/hr.xpi -> thunderbird-17.0.5esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/hu.xpi -> thunderbird-17.0.5esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/hy-AM.xpi -> thunderbird-17.0.5esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/id.xpi -> thunderbird-17.0.5esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/is.xpi -> thunderbird-17.0.5esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/it.xpi -> thunderbird-17.0.5esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/ja.xpi -> thunderbird-17.0.5esr-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/ko.xpi -> thunderbird-17.0.5esr-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/lt.xpi -> thunderbird-17.0.5esr-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/nb-NO.xpi -> thunderbird-17.0.5esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/nl.xpi -> thunderbird-17.0.5esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/nn-NO.xpi -> thunderbird-17.0.5esr-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/pa-IN.xpi -> thunderbird-17.0.5esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/pl.xpi -> thunderbird-17.0.5esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/pt-BR.xpi -> thunderbird-17.0.5esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/pt-PT.xpi -> thunderbird-17.0.5esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/rm.xpi -> thunderbird-17.0.5esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/ro.xpi -> thunderbird-17.0.5esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/ru.xpi -> thunderbird-17.0.5esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/si.xpi -> thunderbird-17.0.5esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/sk.xpi -> thunderbird-17.0.5esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/sl.xpi -> thunderbird-17.0.5esr-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/sq.xpi -> thunderbird-17.0.5esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/sr.xpi -> thunderbird-17.0.5esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/sv-SE.xpi -> thunderbird-17.0.5esr-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/ta-LK.xpi -> thunderbird-17.0.5esr-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/tr.xpi -> thunderbird-17.0.5esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/uk.xpi -> thunderbird-17.0.5esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/vi.xpi -> thunderbird-17.0.5esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/zh-CN.xpi -> thunderbird-17.0.5esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/thunderbird/releases//17.0.5esr/linux-i686/xpi/zh-TW.xpi -> thunderbird-17.0.5esr-zh-TW.xpi ) ftp://ftp.mozilla.org/pub/thunderbird/releases/17.0.5esr/source/thunderbird-17.0.5esr.source.tar.bz2 crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-1.5.1.tar.gz ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/thunderbird-17.0-patches-01.tar.xz http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-17.0-patches-0.5.tar.xz http://dev.gentoo.org/~nirbheek/mozilla/patchsets/firefox-17.0-patches-0.5.tar.xz http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/thunderbird-17.0-patches-01.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac makeedit 5be302268d425e0429d2f1ee3ba3f5a3 mozconfig-3 20f7be97073003610d184672d49cae8d mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=c9ad3ece2f035b91a96635884d0233d1 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac makeedit 5be302268d425e0429d2f1ee3ba3f5a3 mozconfig-3 e4ad1852082c7cd6fef51893c4d16af2 mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=9e053c84da2ebdfcfd5b9bd903ff38b0 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-10.0.10 b/metadata/md5-cache/mail-client/thunderbird-bin-10.0.10 index 403ed02f5c11..48d5e96c442c 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-10.0.10 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-10.0.10 @@ -10,5 +10,5 @@ RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-li RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/ar.xpi -> thunderbird-10.0.10esr-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/ast.xpi -> thunderbird-10.0.10esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/be.xpi -> thunderbird-10.0.10esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/bg.xpi -> thunderbird-10.0.10esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/bn-BD.xpi -> thunderbird-10.0.10esr-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/br.xpi -> thunderbird-10.0.10esr-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/ca.xpi -> thunderbird-10.0.10esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/cs.xpi -> thunderbird-10.0.10esr-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/da.xpi -> thunderbird-10.0.10esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/de.xpi -> thunderbird-10.0.10esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/el.xpi -> thunderbird-10.0.10esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/en-GB.xpi -> thunderbird-10.0.10esr-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/es-AR.xpi -> thunderbird-10.0.10esr-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/es-ES.xpi -> thunderbird-10.0.10esr-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/et.xpi -> thunderbird-10.0.10esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/eu.xpi -> thunderbird-10.0.10esr-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/fi.xpi -> thunderbird-10.0.10esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/fr.xpi -> thunderbird-10.0.10esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/fy-NL.xpi -> thunderbird-10.0.10esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/ga-IE.xpi -> thunderbird-10.0.10esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/gd.xpi -> thunderbird-10.0.10esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/gl.xpi -> thunderbird-10.0.10esr-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/he.xpi -> thunderbird-10.0.10esr-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/hu.xpi -> thunderbird-10.0.10esr-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/id.xpi -> thunderbird-10.0.10esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/is.xpi -> thunderbird-10.0.10esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/it.xpi -> thunderbird-10.0.10esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/ja.xpi -> thunderbird-10.0.10esr-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/ko.xpi -> thunderbird-10.0.10esr-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/lt.xpi -> thunderbird-10.0.10esr-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/nb-NO.xpi -> thunderbird-10.0.10esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/nl.xpi -> thunderbird-10.0.10esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/nn-NO.xpi -> thunderbird-10.0.10esr-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/pa-IN.xpi -> thunderbird-10.0.10esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/pl.xpi -> thunderbird-10.0.10esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/pt-BR.xpi -> thunderbird-10.0.10esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/pt-PT.xpi -> thunderbird-10.0.10esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/rm.xpi -> thunderbird-10.0.10esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/ro.xpi -> thunderbird-10.0.10esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/ru.xpi -> thunderbird-10.0.10esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/si.xpi -> thunderbird-10.0.10esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/sk.xpi -> thunderbird-10.0.10esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/sl.xpi -> thunderbird-10.0.10esr-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/sq.xpi -> thunderbird-10.0.10esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/sr.xpi -> thunderbird-10.0.10esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/sv-SE.xpi -> thunderbird-10.0.10esr-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/ta-LK.xpi -> thunderbird-10.0.10esr-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/tr.xpi -> thunderbird-10.0.10esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/uk.xpi -> thunderbird-10.0.10esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/vi.xpi -> thunderbird-10.0.10esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/zh-CN.xpi -> thunderbird-10.0.10esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/xpi/zh-TW.xpi -> thunderbird-10.0.10esr-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-x86_64/en-US/thunderbird-10.0.10esr.tar.bz2 -> thunderbird-bin_x86_64-10.0.10.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.10esr/linux-i686/en-US/thunderbird-10.0.10esr.tar.bz2 -> thunderbird-bin_i686-10.0.10.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aa8cbd983bc5e96967655eb749074238 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-10.0.11 b/metadata/md5-cache/mail-client/thunderbird-bin-10.0.11 index a82c92100ebd..aadfcaf8b7ee 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-10.0.11 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-10.0.11 @@ -10,5 +10,5 @@ RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-li RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/ar.xpi -> thunderbird-10.0.11esr-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/ast.xpi -> thunderbird-10.0.11esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/be.xpi -> thunderbird-10.0.11esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/bg.xpi -> thunderbird-10.0.11esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/bn-BD.xpi -> thunderbird-10.0.11esr-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/br.xpi -> thunderbird-10.0.11esr-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/ca.xpi -> thunderbird-10.0.11esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/cs.xpi -> thunderbird-10.0.11esr-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/da.xpi -> thunderbird-10.0.11esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/de.xpi -> thunderbird-10.0.11esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/el.xpi -> thunderbird-10.0.11esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/en-GB.xpi -> thunderbird-10.0.11esr-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/es-AR.xpi -> thunderbird-10.0.11esr-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/es-ES.xpi -> thunderbird-10.0.11esr-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/et.xpi -> thunderbird-10.0.11esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/eu.xpi -> thunderbird-10.0.11esr-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/fi.xpi -> thunderbird-10.0.11esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/fr.xpi -> thunderbird-10.0.11esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/fy-NL.xpi -> thunderbird-10.0.11esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/ga-IE.xpi -> thunderbird-10.0.11esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/gd.xpi -> thunderbird-10.0.11esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/gl.xpi -> thunderbird-10.0.11esr-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/he.xpi -> thunderbird-10.0.11esr-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/hu.xpi -> thunderbird-10.0.11esr-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/id.xpi -> thunderbird-10.0.11esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/is.xpi -> thunderbird-10.0.11esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/it.xpi -> thunderbird-10.0.11esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/ja.xpi -> thunderbird-10.0.11esr-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/ko.xpi -> thunderbird-10.0.11esr-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/lt.xpi -> thunderbird-10.0.11esr-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/nb-NO.xpi -> thunderbird-10.0.11esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/nl.xpi -> thunderbird-10.0.11esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/nn-NO.xpi -> thunderbird-10.0.11esr-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/pa-IN.xpi -> thunderbird-10.0.11esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/pl.xpi -> thunderbird-10.0.11esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/pt-BR.xpi -> thunderbird-10.0.11esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/pt-PT.xpi -> thunderbird-10.0.11esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/rm.xpi -> thunderbird-10.0.11esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/ro.xpi -> thunderbird-10.0.11esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/ru.xpi -> thunderbird-10.0.11esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/si.xpi -> thunderbird-10.0.11esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/sk.xpi -> thunderbird-10.0.11esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/sl.xpi -> thunderbird-10.0.11esr-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/sq.xpi -> thunderbird-10.0.11esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/sr.xpi -> thunderbird-10.0.11esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/sv-SE.xpi -> thunderbird-10.0.11esr-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/ta-LK.xpi -> thunderbird-10.0.11esr-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/tr.xpi -> thunderbird-10.0.11esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/uk.xpi -> thunderbird-10.0.11esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/vi.xpi -> thunderbird-10.0.11esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/zh-CN.xpi -> thunderbird-10.0.11esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/xpi/zh-TW.xpi -> thunderbird-10.0.11esr-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-x86_64/en-US/thunderbird-10.0.11esr.tar.bz2 -> thunderbird-bin_x86_64-10.0.11.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.11esr/linux-i686/en-US/thunderbird-10.0.11esr.tar.bz2 -> thunderbird-bin_i686-10.0.11.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6b74e8bbb6f55d329c8e8d6e0eeb18f7 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-10.0.12 b/metadata/md5-cache/mail-client/thunderbird-bin-10.0.12 index 3d7813fca10c..9f26d5d37aa6 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-10.0.12 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-10.0.12 @@ -10,5 +10,5 @@ RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-li RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/ar.xpi -> thunderbird-10.0.12esr-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/ast.xpi -> thunderbird-10.0.12esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/be.xpi -> thunderbird-10.0.12esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/bg.xpi -> thunderbird-10.0.12esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/bn-BD.xpi -> thunderbird-10.0.12esr-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/br.xpi -> thunderbird-10.0.12esr-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/ca.xpi -> thunderbird-10.0.12esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/cs.xpi -> thunderbird-10.0.12esr-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/da.xpi -> thunderbird-10.0.12esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/de.xpi -> thunderbird-10.0.12esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/el.xpi -> thunderbird-10.0.12esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/en-GB.xpi -> thunderbird-10.0.12esr-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/es-AR.xpi -> thunderbird-10.0.12esr-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/es-ES.xpi -> thunderbird-10.0.12esr-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/et.xpi -> thunderbird-10.0.12esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/eu.xpi -> thunderbird-10.0.12esr-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/fi.xpi -> thunderbird-10.0.12esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/fr.xpi -> thunderbird-10.0.12esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/fy-NL.xpi -> thunderbird-10.0.12esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/ga-IE.xpi -> thunderbird-10.0.12esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/gd.xpi -> thunderbird-10.0.12esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/gl.xpi -> thunderbird-10.0.12esr-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/he.xpi -> thunderbird-10.0.12esr-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/hu.xpi -> thunderbird-10.0.12esr-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/id.xpi -> thunderbird-10.0.12esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/is.xpi -> thunderbird-10.0.12esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/it.xpi -> thunderbird-10.0.12esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/ja.xpi -> thunderbird-10.0.12esr-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/ko.xpi -> thunderbird-10.0.12esr-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/lt.xpi -> thunderbird-10.0.12esr-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/nb-NO.xpi -> thunderbird-10.0.12esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/nl.xpi -> thunderbird-10.0.12esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/nn-NO.xpi -> thunderbird-10.0.12esr-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/pa-IN.xpi -> thunderbird-10.0.12esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/pl.xpi -> thunderbird-10.0.12esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/pt-BR.xpi -> thunderbird-10.0.12esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/pt-PT.xpi -> thunderbird-10.0.12esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/rm.xpi -> thunderbird-10.0.12esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/ro.xpi -> thunderbird-10.0.12esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/ru.xpi -> thunderbird-10.0.12esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/si.xpi -> thunderbird-10.0.12esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/sk.xpi -> thunderbird-10.0.12esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/sl.xpi -> thunderbird-10.0.12esr-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/sq.xpi -> thunderbird-10.0.12esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/sr.xpi -> thunderbird-10.0.12esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/sv-SE.xpi -> thunderbird-10.0.12esr-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/ta-LK.xpi -> thunderbird-10.0.12esr-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/tr.xpi -> thunderbird-10.0.12esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/uk.xpi -> thunderbird-10.0.12esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/vi.xpi -> thunderbird-10.0.12esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/zh-CN.xpi -> thunderbird-10.0.12esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/xpi/zh-TW.xpi -> thunderbird-10.0.12esr-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-x86_64/en-US/thunderbird-10.0.12esr.tar.bz2 -> thunderbird-bin_x86_64-10.0.12.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//10.0.12esr/linux-i686/en-US/thunderbird-10.0.12esr.tar.bz2 -> thunderbird-bin_i686-10.0.12.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=576f6e8443062f5a309a1543547c8134 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-15.0.1 b/metadata/md5-cache/mail-client/thunderbird-bin-15.0.1 index 4442de06f6fb..ed8c424c0544 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-15.0.1 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-15.0.1 @@ -10,5 +10,5 @@ RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-li RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/ar.xpi -> thunderbird-15.0.1-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/ast.xpi -> thunderbird-15.0.1-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/be.xpi -> thunderbird-15.0.1-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/bg.xpi -> thunderbird-15.0.1-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/bn-BD.xpi -> thunderbird-15.0.1-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/br.xpi -> thunderbird-15.0.1-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/ca.xpi -> thunderbird-15.0.1-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/cs.xpi -> thunderbird-15.0.1-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/da.xpi -> thunderbird-15.0.1-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/de.xpi -> thunderbird-15.0.1-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/el.xpi -> thunderbird-15.0.1-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/en-GB.xpi -> thunderbird-15.0.1-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/es-AR.xpi -> thunderbird-15.0.1-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/es-ES.xpi -> thunderbird-15.0.1-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/et.xpi -> thunderbird-15.0.1-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/eu.xpi -> thunderbird-15.0.1-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/fi.xpi -> thunderbird-15.0.1-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/fr.xpi -> thunderbird-15.0.1-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/fy-NL.xpi -> thunderbird-15.0.1-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/ga-IE.xpi -> thunderbird-15.0.1-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/gd.xpi -> thunderbird-15.0.1-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/gl.xpi -> thunderbird-15.0.1-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/he.xpi -> thunderbird-15.0.1-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/hu.xpi -> thunderbird-15.0.1-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/id.xpi -> thunderbird-15.0.1-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/is.xpi -> thunderbird-15.0.1-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/it.xpi -> thunderbird-15.0.1-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/ja.xpi -> thunderbird-15.0.1-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/ko.xpi -> thunderbird-15.0.1-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/lt.xpi -> thunderbird-15.0.1-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/nb-NO.xpi -> thunderbird-15.0.1-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/nl.xpi -> thunderbird-15.0.1-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/nn-NO.xpi -> thunderbird-15.0.1-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/pa-IN.xpi -> thunderbird-15.0.1-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/pl.xpi -> thunderbird-15.0.1-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/pt-BR.xpi -> thunderbird-15.0.1-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/pt-PT.xpi -> thunderbird-15.0.1-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/rm.xpi -> thunderbird-15.0.1-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/ro.xpi -> thunderbird-15.0.1-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/ru.xpi -> thunderbird-15.0.1-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/si.xpi -> thunderbird-15.0.1-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/sk.xpi -> thunderbird-15.0.1-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/sl.xpi -> thunderbird-15.0.1-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/sq.xpi -> thunderbird-15.0.1-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/sr.xpi -> thunderbird-15.0.1-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/sv-SE.xpi -> thunderbird-15.0.1-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/ta-LK.xpi -> thunderbird-15.0.1-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/tr.xpi -> thunderbird-15.0.1-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/uk.xpi -> thunderbird-15.0.1-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/vi.xpi -> thunderbird-15.0.1-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/zh-CN.xpi -> thunderbird-15.0.1-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/xpi/zh-TW.xpi -> thunderbird-15.0.1-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-x86_64/en-US/thunderbird-15.0.1.tar.bz2 -> thunderbird-bin_x86_64-15.0.1.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//15.0.1/linux-i686/en-US/thunderbird-15.0.1.tar.bz2 -> thunderbird-bin_i686-15.0.1.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=25d2fab4d3a1d36b30b71619bb8f8d1a diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-16.0.2 b/metadata/md5-cache/mail-client/thunderbird-bin-16.0.2 index 68a3b5abbaf7..476b172dc7f4 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-16.0.2 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-16.0.2 @@ -10,5 +10,5 @@ RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-li RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/ar.xpi -> thunderbird-16.0.2-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/ast.xpi -> thunderbird-16.0.2-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/be.xpi -> thunderbird-16.0.2-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/bg.xpi -> thunderbird-16.0.2-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/bn-BD.xpi -> thunderbird-16.0.2-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/br.xpi -> thunderbird-16.0.2-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/ca.xpi -> thunderbird-16.0.2-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/cs.xpi -> thunderbird-16.0.2-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/da.xpi -> thunderbird-16.0.2-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/de.xpi -> thunderbird-16.0.2-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/el.xpi -> thunderbird-16.0.2-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/en-GB.xpi -> thunderbird-16.0.2-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/es-AR.xpi -> thunderbird-16.0.2-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/es-ES.xpi -> thunderbird-16.0.2-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/et.xpi -> thunderbird-16.0.2-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/eu.xpi -> thunderbird-16.0.2-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/fi.xpi -> thunderbird-16.0.2-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/fr.xpi -> thunderbird-16.0.2-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/fy-NL.xpi -> thunderbird-16.0.2-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/ga-IE.xpi -> thunderbird-16.0.2-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/gd.xpi -> thunderbird-16.0.2-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/gl.xpi -> thunderbird-16.0.2-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/he.xpi -> thunderbird-16.0.2-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/hu.xpi -> thunderbird-16.0.2-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/id.xpi -> thunderbird-16.0.2-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/is.xpi -> thunderbird-16.0.2-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/it.xpi -> thunderbird-16.0.2-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/ja.xpi -> thunderbird-16.0.2-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/ko.xpi -> thunderbird-16.0.2-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/lt.xpi -> thunderbird-16.0.2-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/nb-NO.xpi -> thunderbird-16.0.2-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/nl.xpi -> thunderbird-16.0.2-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/nn-NO.xpi -> thunderbird-16.0.2-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/pa-IN.xpi -> thunderbird-16.0.2-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/pl.xpi -> thunderbird-16.0.2-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/pt-BR.xpi -> thunderbird-16.0.2-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/pt-PT.xpi -> thunderbird-16.0.2-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/rm.xpi -> thunderbird-16.0.2-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/ro.xpi -> thunderbird-16.0.2-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/ru.xpi -> thunderbird-16.0.2-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/si.xpi -> thunderbird-16.0.2-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/sk.xpi -> thunderbird-16.0.2-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/sl.xpi -> thunderbird-16.0.2-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/sq.xpi -> thunderbird-16.0.2-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/sr.xpi -> thunderbird-16.0.2-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/sv-SE.xpi -> thunderbird-16.0.2-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/ta-LK.xpi -> thunderbird-16.0.2-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/tr.xpi -> thunderbird-16.0.2-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/uk.xpi -> thunderbird-16.0.2-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/vi.xpi -> thunderbird-16.0.2-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/zh-CN.xpi -> thunderbird-16.0.2-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/xpi/zh-TW.xpi -> thunderbird-16.0.2-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-x86_64/en-US/thunderbird-16.0.2.tar.bz2 -> thunderbird-bin_x86_64-16.0.2.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//16.0.2/linux-i686/en-US/thunderbird-16.0.2.tar.bz2 -> thunderbird-bin_i686-16.0.2.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=75928271d2452a3e6db579f2611dbd08 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-17.0 b/metadata/md5-cache/mail-client/thunderbird-bin-17.0 index f9aa1c8aafcf..e6de7498d90d 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-17.0 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-17.0 @@ -10,5 +10,5 @@ RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-li RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/ar.xpi -> thunderbird-17.0-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/ast.xpi -> thunderbird-17.0-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/be.xpi -> thunderbird-17.0-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/bg.xpi -> thunderbird-17.0-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/bn-BD.xpi -> thunderbird-17.0-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/br.xpi -> thunderbird-17.0-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/ca.xpi -> thunderbird-17.0-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/cs.xpi -> thunderbird-17.0-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/da.xpi -> thunderbird-17.0-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/de.xpi -> thunderbird-17.0-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/el.xpi -> thunderbird-17.0-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/en-GB.xpi -> thunderbird-17.0-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/es-AR.xpi -> thunderbird-17.0-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/es-ES.xpi -> thunderbird-17.0-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/et.xpi -> thunderbird-17.0-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/eu.xpi -> thunderbird-17.0-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/fi.xpi -> thunderbird-17.0-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/fr.xpi -> thunderbird-17.0-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/fy-NL.xpi -> thunderbird-17.0-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/ga-IE.xpi -> thunderbird-17.0-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/gd.xpi -> thunderbird-17.0-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/gl.xpi -> thunderbird-17.0-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/he.xpi -> thunderbird-17.0-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/hu.xpi -> thunderbird-17.0-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/id.xpi -> thunderbird-17.0-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/is.xpi -> thunderbird-17.0-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/it.xpi -> thunderbird-17.0-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/ja.xpi -> thunderbird-17.0-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/ko.xpi -> thunderbird-17.0-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/lt.xpi -> thunderbird-17.0-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/nb-NO.xpi -> thunderbird-17.0-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/nl.xpi -> thunderbird-17.0-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/nn-NO.xpi -> thunderbird-17.0-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/pa-IN.xpi -> thunderbird-17.0-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/pl.xpi -> thunderbird-17.0-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/pt-BR.xpi -> thunderbird-17.0-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/pt-PT.xpi -> thunderbird-17.0-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/rm.xpi -> thunderbird-17.0-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/ro.xpi -> thunderbird-17.0-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/ru.xpi -> thunderbird-17.0-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/si.xpi -> thunderbird-17.0-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/sk.xpi -> thunderbird-17.0-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/sl.xpi -> thunderbird-17.0-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/sq.xpi -> thunderbird-17.0-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/sr.xpi -> thunderbird-17.0-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/sv-SE.xpi -> thunderbird-17.0-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/ta-LK.xpi -> thunderbird-17.0-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/tr.xpi -> thunderbird-17.0-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/uk.xpi -> thunderbird-17.0-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/vi.xpi -> thunderbird-17.0-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/zh-CN.xpi -> thunderbird-17.0-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/xpi/zh-TW.xpi -> thunderbird-17.0-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-x86_64/en-US/thunderbird-17.0.tar.bz2 -> thunderbird-bin_x86_64-17.0.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0/linux-i686/en-US/thunderbird-17.0.tar.bz2 -> thunderbird-bin_i686-17.0.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5ee389cc8cd13ccb3a9a0cefeef687e7 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-17.0.2 b/metadata/md5-cache/mail-client/thunderbird-bin-17.0.2 index 6d7b70863648..b00e9c9ecf05 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-17.0.2 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-17.0.2 @@ -10,5 +10,5 @@ RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-li RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/ar.xpi -> thunderbird-17.0.2esr-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/ast.xpi -> thunderbird-17.0.2esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/be.xpi -> thunderbird-17.0.2esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/bg.xpi -> thunderbird-17.0.2esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/bn-BD.xpi -> thunderbird-17.0.2esr-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/br.xpi -> thunderbird-17.0.2esr-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/ca.xpi -> thunderbird-17.0.2esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/cs.xpi -> thunderbird-17.0.2esr-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/da.xpi -> thunderbird-17.0.2esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/de.xpi -> thunderbird-17.0.2esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/el.xpi -> thunderbird-17.0.2esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/en-GB.xpi -> thunderbird-17.0.2esr-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/es-AR.xpi -> thunderbird-17.0.2esr-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/es-ES.xpi -> thunderbird-17.0.2esr-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/et.xpi -> thunderbird-17.0.2esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/eu.xpi -> thunderbird-17.0.2esr-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/fi.xpi -> thunderbird-17.0.2esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/fr.xpi -> thunderbird-17.0.2esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/fy-NL.xpi -> thunderbird-17.0.2esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/ga-IE.xpi -> thunderbird-17.0.2esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/gd.xpi -> thunderbird-17.0.2esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/gl.xpi -> thunderbird-17.0.2esr-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/he.xpi -> thunderbird-17.0.2esr-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/hu.xpi -> thunderbird-17.0.2esr-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/id.xpi -> thunderbird-17.0.2esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/is.xpi -> thunderbird-17.0.2esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/it.xpi -> thunderbird-17.0.2esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/ja.xpi -> thunderbird-17.0.2esr-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/ko.xpi -> thunderbird-17.0.2esr-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/lt.xpi -> thunderbird-17.0.2esr-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/nb-NO.xpi -> thunderbird-17.0.2esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/nl.xpi -> thunderbird-17.0.2esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/nn-NO.xpi -> thunderbird-17.0.2esr-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/pa-IN.xpi -> thunderbird-17.0.2esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/pl.xpi -> thunderbird-17.0.2esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/pt-BR.xpi -> thunderbird-17.0.2esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/pt-PT.xpi -> thunderbird-17.0.2esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/rm.xpi -> thunderbird-17.0.2esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/ro.xpi -> thunderbird-17.0.2esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/ru.xpi -> thunderbird-17.0.2esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/si.xpi -> thunderbird-17.0.2esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/sk.xpi -> thunderbird-17.0.2esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/sl.xpi -> thunderbird-17.0.2esr-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/sq.xpi -> thunderbird-17.0.2esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/sr.xpi -> thunderbird-17.0.2esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/sv-SE.xpi -> thunderbird-17.0.2esr-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/ta-LK.xpi -> thunderbird-17.0.2esr-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/tr.xpi -> thunderbird-17.0.2esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/uk.xpi -> thunderbird-17.0.2esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/vi.xpi -> thunderbird-17.0.2esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/zh-CN.xpi -> thunderbird-17.0.2esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/xpi/zh-TW.xpi -> thunderbird-17.0.2esr-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-x86_64/en-US/thunderbird-17.0.2esr.tar.bz2 -> thunderbird-bin_x86_64-17.0.2.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.2esr/linux-i686/en-US/thunderbird-17.0.2esr.tar.bz2 -> thunderbird-bin_i686-17.0.2.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0c7c76eba40d05064a131ef0037ce22f diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-17.0.3 b/metadata/md5-cache/mail-client/thunderbird-bin-17.0.3 index a700ef5fbd8a..d9d0c9e42c39 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-17.0.3 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-17.0.3 @@ -10,5 +10,5 @@ RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-li RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/ar.xpi -> thunderbird-17.0.3-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/ast.xpi -> thunderbird-17.0.3-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/be.xpi -> thunderbird-17.0.3-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/bg.xpi -> thunderbird-17.0.3-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/bn-BD.xpi -> thunderbird-17.0.3-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/br.xpi -> thunderbird-17.0.3-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/ca.xpi -> thunderbird-17.0.3-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/cs.xpi -> thunderbird-17.0.3-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/da.xpi -> thunderbird-17.0.3-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/de.xpi -> thunderbird-17.0.3-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/el.xpi -> thunderbird-17.0.3-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/en-GB.xpi -> thunderbird-17.0.3-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/es-AR.xpi -> thunderbird-17.0.3-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/es-ES.xpi -> thunderbird-17.0.3-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/et.xpi -> thunderbird-17.0.3-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/eu.xpi -> thunderbird-17.0.3-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/fi.xpi -> thunderbird-17.0.3-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/fr.xpi -> thunderbird-17.0.3-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/fy-NL.xpi -> thunderbird-17.0.3-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/ga-IE.xpi -> thunderbird-17.0.3-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/gd.xpi -> thunderbird-17.0.3-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/gl.xpi -> thunderbird-17.0.3-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/he.xpi -> thunderbird-17.0.3-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/hu.xpi -> thunderbird-17.0.3-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/id.xpi -> thunderbird-17.0.3-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/is.xpi -> thunderbird-17.0.3-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/it.xpi -> thunderbird-17.0.3-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/ja.xpi -> thunderbird-17.0.3-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/ko.xpi -> thunderbird-17.0.3-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/lt.xpi -> thunderbird-17.0.3-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/nb-NO.xpi -> thunderbird-17.0.3-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/nl.xpi -> thunderbird-17.0.3-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/nn-NO.xpi -> thunderbird-17.0.3-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/pa-IN.xpi -> thunderbird-17.0.3-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/pl.xpi -> thunderbird-17.0.3-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/pt-BR.xpi -> thunderbird-17.0.3-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/pt-PT.xpi -> thunderbird-17.0.3-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/rm.xpi -> thunderbird-17.0.3-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/ro.xpi -> thunderbird-17.0.3-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/ru.xpi -> thunderbird-17.0.3-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/si.xpi -> thunderbird-17.0.3-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/sk.xpi -> thunderbird-17.0.3-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/sl.xpi -> thunderbird-17.0.3-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/sq.xpi -> thunderbird-17.0.3-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/sr.xpi -> thunderbird-17.0.3-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/sv-SE.xpi -> thunderbird-17.0.3-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/ta-LK.xpi -> thunderbird-17.0.3-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/tr.xpi -> thunderbird-17.0.3-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/uk.xpi -> thunderbird-17.0.3-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/vi.xpi -> thunderbird-17.0.3-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/zh-CN.xpi -> thunderbird-17.0.3-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/xpi/zh-TW.xpi -> thunderbird-17.0.3-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-x86_64/en-US/thunderbird-17.0.3.tar.bz2 -> thunderbird-bin_x86_64-17.0.3.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.3/linux-i686/en-US/thunderbird-17.0.3.tar.bz2 -> thunderbird-bin_i686-17.0.3.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=60c766c527ded1de78364f9aa642671b diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-17.0.4 b/metadata/md5-cache/mail-client/thunderbird-bin-17.0.4 index 4dadb72c18c4..943898a8ac04 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-17.0.4 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-17.0.4 @@ -10,5 +10,5 @@ RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-li RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/ar.xpi -> thunderbird-17.0.4esr-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/ast.xpi -> thunderbird-17.0.4esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/be.xpi -> thunderbird-17.0.4esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/bg.xpi -> thunderbird-17.0.4esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/bn-BD.xpi -> thunderbird-17.0.4esr-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/br.xpi -> thunderbird-17.0.4esr-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/ca.xpi -> thunderbird-17.0.4esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/cs.xpi -> thunderbird-17.0.4esr-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/da.xpi -> thunderbird-17.0.4esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/de.xpi -> thunderbird-17.0.4esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/el.xpi -> thunderbird-17.0.4esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/en-GB.xpi -> thunderbird-17.0.4esr-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/es-AR.xpi -> thunderbird-17.0.4esr-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/es-ES.xpi -> thunderbird-17.0.4esr-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/et.xpi -> thunderbird-17.0.4esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/eu.xpi -> thunderbird-17.0.4esr-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/fi.xpi -> thunderbird-17.0.4esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/fr.xpi -> thunderbird-17.0.4esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/fy-NL.xpi -> thunderbird-17.0.4esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/ga-IE.xpi -> thunderbird-17.0.4esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/gd.xpi -> thunderbird-17.0.4esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/gl.xpi -> thunderbird-17.0.4esr-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/he.xpi -> thunderbird-17.0.4esr-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/hu.xpi -> thunderbird-17.0.4esr-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/id.xpi -> thunderbird-17.0.4esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/is.xpi -> thunderbird-17.0.4esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/it.xpi -> thunderbird-17.0.4esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/ja.xpi -> thunderbird-17.0.4esr-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/ko.xpi -> thunderbird-17.0.4esr-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/lt.xpi -> thunderbird-17.0.4esr-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/nb-NO.xpi -> thunderbird-17.0.4esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/nl.xpi -> thunderbird-17.0.4esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/nn-NO.xpi -> thunderbird-17.0.4esr-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/pa-IN.xpi -> thunderbird-17.0.4esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/pl.xpi -> thunderbird-17.0.4esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/pt-BR.xpi -> thunderbird-17.0.4esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/pt-PT.xpi -> thunderbird-17.0.4esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/rm.xpi -> thunderbird-17.0.4esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/ro.xpi -> thunderbird-17.0.4esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/ru.xpi -> thunderbird-17.0.4esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/si.xpi -> thunderbird-17.0.4esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/sk.xpi -> thunderbird-17.0.4esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/sl.xpi -> thunderbird-17.0.4esr-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/sq.xpi -> thunderbird-17.0.4esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/sr.xpi -> thunderbird-17.0.4esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/sv-SE.xpi -> thunderbird-17.0.4esr-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/ta-LK.xpi -> thunderbird-17.0.4esr-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/tr.xpi -> thunderbird-17.0.4esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/uk.xpi -> thunderbird-17.0.4esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/vi.xpi -> thunderbird-17.0.4esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/zh-CN.xpi -> thunderbird-17.0.4esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/xpi/zh-TW.xpi -> thunderbird-17.0.4esr-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-x86_64/en-US/thunderbird-17.0.4esr.tar.bz2 -> thunderbird-bin_x86_64-17.0.4.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.4esr/linux-i686/en-US/thunderbird-17.0.4esr.tar.bz2 -> thunderbird-bin_i686-17.0.4.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=18330cab39b6efa8692914ecbe1f59e9 diff --git a/metadata/md5-cache/mail-client/thunderbird-bin-17.0.5 b/metadata/md5-cache/mail-client/thunderbird-bin-17.0.5 index b1fbbef33a5d..63cc7bdc5224 100644 --- a/metadata/md5-cache/mail-client/thunderbird-bin-17.0.5 +++ b/metadata/md5-cache/mail-client/thunderbird-bin-17.0.5 @@ -4,11 +4,11 @@ DESCRIPTION=Thunderbird Mail Client EAPI=4 HOMEPAGE=http://www.mozilla.com/thunderbird IUSE=+crashreporter linguas_ar linguas_ast linguas_be linguas_bg linguas_bn_BD linguas_br linguas_ca linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_es_AR linguas_es_ES linguas_et linguas_eu linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_he linguas_hu linguas_id linguas_is linguas_it linguas_ja linguas_ko linguas_lt linguas_nb_NO linguas_nl linguas_nn_NO linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_sq linguas_sr linguas_sv_SE linguas_ta_LK linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=-* amd64 x86 LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-libs/libXmu >=x11-libs/gtk+-2.2:2 >=media-libs/alsa-lib-1.0.16 crashreporter? ( net-misc/curl ) !net-libs/libproxy[spidermonkey] RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/ar.xpi -> thunderbird-17.0.5esr-ar.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/ast.xpi -> thunderbird-17.0.5esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/be.xpi -> thunderbird-17.0.5esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/bg.xpi -> thunderbird-17.0.5esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/bn-BD.xpi -> thunderbird-17.0.5esr-bn-BD.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/br.xpi -> thunderbird-17.0.5esr-br.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/ca.xpi -> thunderbird-17.0.5esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/cs.xpi -> thunderbird-17.0.5esr-cs.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/da.xpi -> thunderbird-17.0.5esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/de.xpi -> thunderbird-17.0.5esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/el.xpi -> thunderbird-17.0.5esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/en-GB.xpi -> thunderbird-17.0.5esr-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/es-AR.xpi -> thunderbird-17.0.5esr-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/es-ES.xpi -> thunderbird-17.0.5esr-es-ES.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/et.xpi -> thunderbird-17.0.5esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/eu.xpi -> thunderbird-17.0.5esr-eu.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/fi.xpi -> thunderbird-17.0.5esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/fr.xpi -> thunderbird-17.0.5esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/fy-NL.xpi -> thunderbird-17.0.5esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/ga-IE.xpi -> thunderbird-17.0.5esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/gd.xpi -> thunderbird-17.0.5esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/gl.xpi -> thunderbird-17.0.5esr-gl.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/he.xpi -> thunderbird-17.0.5esr-he.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/hu.xpi -> thunderbird-17.0.5esr-hu.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/id.xpi -> thunderbird-17.0.5esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/is.xpi -> thunderbird-17.0.5esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/it.xpi -> thunderbird-17.0.5esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/ja.xpi -> thunderbird-17.0.5esr-ja.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/ko.xpi -> thunderbird-17.0.5esr-ko.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/lt.xpi -> thunderbird-17.0.5esr-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/nb-NO.xpi -> thunderbird-17.0.5esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/nl.xpi -> thunderbird-17.0.5esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/nn-NO.xpi -> thunderbird-17.0.5esr-nn-NO.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/pa-IN.xpi -> thunderbird-17.0.5esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/pl.xpi -> thunderbird-17.0.5esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/pt-BR.xpi -> thunderbird-17.0.5esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/pt-PT.xpi -> thunderbird-17.0.5esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/rm.xpi -> thunderbird-17.0.5esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/ro.xpi -> thunderbird-17.0.5esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/ru.xpi -> thunderbird-17.0.5esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/si.xpi -> thunderbird-17.0.5esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/sk.xpi -> thunderbird-17.0.5esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/sl.xpi -> thunderbird-17.0.5esr-sl.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/sq.xpi -> thunderbird-17.0.5esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/sr.xpi -> thunderbird-17.0.5esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/sv-SE.xpi -> thunderbird-17.0.5esr-sv-SE.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/ta-LK.xpi -> thunderbird-17.0.5esr-ta-LK.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/tr.xpi -> thunderbird-17.0.5esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/uk.xpi -> thunderbird-17.0.5esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/vi.xpi -> thunderbird-17.0.5esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/zh-CN.xpi -> thunderbird-17.0.5esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/xpi/zh-TW.xpi -> thunderbird-17.0.5esr-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-x86_64/en-US/thunderbird-17.0.5esr.tar.bz2 -> thunderbird-bin_x86_64-17.0.5.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases//17.0.5esr/linux-i686/en-US/thunderbird-17.0.5esr.tar.bz2 -> thunderbird-bin_i686-17.0.5.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6da69847b206fd1f1814a3c6161165d9 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=7bc61e59a5b9325abb2d1d3994883fe0 diff --git a/metadata/md5-cache/mail-filter/imapfilter-2.5.4 b/metadata/md5-cache/mail-filter/imapfilter-2.5.4 new file mode 100644 index 000000000000..4d48f58c1c01 --- /dev/null +++ b/metadata/md5-cache/mail-filter/imapfilter-2.5.4 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile install prepare +DEPEND=dev-libs/openssl dev-libs/libpcre >=dev-lang/lua-5.1 +DESCRIPTION=An IMAP mail filtering utility +EAPI=5 +HOMEPAGE=http://imapfilter.hellug.gr +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=MIT +RDEPEND=dev-libs/openssl dev-libs/libpcre >=dev-lang/lua-5.1 +SLOT=0 +SRC_URI=https://github.com/lefcha/imapfilter/archive/v2.5.4.tar.gz -> imapfilter-2.5.4.tar.gz +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=bf7d66931428bcd64c68bf6a0e083dc1 diff --git a/metadata/md5-cache/mail-mta/postfix-2.10.0 b/metadata/md5-cache/mail-mta/postfix-2.10.0 index dde18907feb5..0eabc8696b04 100644 --- a/metadata/md5-cache/mail-mta/postfix-2.10.0 +++ b/metadata/md5-cache/mail-mta/postfix-2.10.0 @@ -4,11 +4,11 @@ DESCRIPTION=A fast and secure drop-in replacement for sendmail. EAPI=5 HOMEPAGE=http://www.postfix.org/ IUSE=+berkdb cdb doc dovecot-sasl hardened ldap ldap-bind memcached mbox mysql nis pam postgres sasl selinux sqlite ssl vda ssl -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd LICENSE=IBM RDEPEND=>=dev-libs/libpcre-3.4 dev-lang/perl berkdb? ( >=sys-libs/db-3.2 ) cdb? ( || ( >=dev-db/tinycdb-0.76 >=dev-db/cdb-0.75-r1 ) ) ldap? ( net-nds/openldap ) ldap-bind? ( net-nds/openldap[sasl] ) mysql? ( virtual/mysql ) pam? ( virtual/pam ) postgres? ( dev-db/postgresql-base ) sasl? ( >=dev-libs/cyrus-sasl-2 ) sqlite? ( dev-db/sqlite:3 ) ssl? ( >=dev-libs/openssl-0.9.6g ) dovecot-sasl? ( net-mail/dovecot ) memcached? ( net-misc/memcached ) net-mail/mailbase selinux? ( sec-policy/selinux-postfix ) !mail-mta/courier !mail-mta/esmtp !mail-mta/exim !mail-mta/mini-qmail !mail-mta/msmtp[mta] !mail-mta/netqmail !mail-mta/nullmailer !mail-mta/qmail-ldap !mail-mta/sendmail !mail-mta/opensmtpd !=mail-mta/ssmtp-2.64-r2[mta] !net-mail/fastforward REQUIRED_USE=ldap-bind? ( ldap sasl ) SLOT=0 SRC_URI=ftp://ftp.porcupine.org/mirrors/postfix-release/official/postfix-2.10.0.tar.gz vda? ( http://vda.sourceforge.net/VDA/postfix-vda-v11-2.9.5.patch ) _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 ssl-cert 0b45da48a22fda62c57c1809b8b55315 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=322c2594828ec6c668cddf65c24a6867 +_md5_=b07548818ccd5bad2a4031644a48678a diff --git a/metadata/md5-cache/media-fonts/cantarell-0.0.12 b/metadata/md5-cache/media-fonts/cantarell-0.0.12 index 99b45f6ed178..f978eb4b6a1d 100644 --- a/metadata/md5-cache/media-fonts/cantarell-0.0.12 +++ b/metadata/md5-cache/media-fonts/cantarell-0.0.12 @@ -4,11 +4,11 @@ DESCRIPTION=Default fontset for GNOME Shell EAPI=5 HOMEPAGE=https://live.gnome.org/CantarellFonts IUSE=X -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd LICENSE=OFL-1.1 RDEPEND=media-libs/fontconfig X? ( x11-apps/mkfontdir media-fonts/encodings ) >=media-libs/fontconfig-2.4.0 RESTRICT=binchecks strip SLOT=0 SRC_URI=mirror://gnome/sources/cantarell-fonts/0.0/cantarell-fonts-0.0.12.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 font 496e78852e1e48010965fdd33a505f9c gnome.org 8fef8f967214f56e08fa92d61163d891 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=c8ca1f4c20485a3fd9465bf8728bc5fc +_md5_=3ec15dbc9388e44d8f242cdb3a96fc86 diff --git a/metadata/md5-cache/media-gfx/blender-2.64a b/metadata/md5-cache/media-gfx/blender-2.64a index 0875e220cccb..52cb3453db7b 100644 --- a/metadata/md5-cache/media-gfx/blender-2.64a +++ b/metadata/md5-cache/media-gfx/blender-2.64a @@ -10,5 +10,5 @@ RDEPEND=virtual/jpeg media-libs/libpng:0 x11-libs/libXi x11-libs/libX11 media-li REQUIRED_USE=player? ( game-engine ) redcode? ( jpeg2k ) linguas_en? ( nls ) linguas_ar? ( nls ) linguas_bg? ( nls ) linguas_ca? ( nls ) linguas_cs? ( nls ) linguas_de? ( nls ) linguas_el? ( nls ) linguas_es? ( nls ) linguas_es_ES? ( nls ) linguas_fa? ( nls ) linguas_fi? ( nls ) linguas_fr? ( nls ) linguas_he? ( nls ) linguas_hr? ( nls ) linguas_hu? ( nls ) linguas_id? ( nls ) linguas_it? ( nls ) linguas_ja? ( nls ) linguas_ky? ( nls ) linguas_ne? ( nls ) linguas_nl? ( nls ) linguas_pl? ( nls ) linguas_pt? ( nls ) linguas_pt_BR? ( nls ) linguas_ru? ( nls ) linguas_sr? ( nls ) linguas_sr@latin? ( nls ) linguas_sv? ( nls ) linguas_tr? ( nls ) linguas_uk? ( nls ) linguas_zh_CN? ( nls ) linguas_zh_TW? ( nls ) SLOT=0 SRC_URI=http://download.blender.org/source/blender-2.64a.tar.gz http://dev.gentoo.org/~flameeyes/blender/blender-2.64a-patches-1.tar.xz -_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 scons-utils 988e24b9e2e4642189b4e97c03e5ae71 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=3d19b87ae167192b5cbb5be19d892799 diff --git a/metadata/md5-cache/media-gfx/blender-2.66 b/metadata/md5-cache/media-gfx/blender-2.66 index d229036cb8c0..448f09bf179e 100644 --- a/metadata/md5-cache/media-gfx/blender-2.66 +++ b/metadata/md5-cache/media-gfx/blender-2.66 @@ -10,5 +10,5 @@ RDEPEND=python_single_target_python3_3? ( dev-lang/python:3.3 ) dev-python/pytho REQUIRED_USE=player? ( game-engine ) redcode? ( jpeg2k ) cycles? ( boost ) nls? ( boost ) SLOT=0 SRC_URI=http://download.blender.org/source/blender-2.66.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 check-reqs 0efdf29c9002a1995388968bf54e9d3d cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 check-reqs 0efdf29c9002a1995388968bf54e9d3d cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=030488b08290d258aa4c951839799930 diff --git a/metadata/md5-cache/media-gfx/darktable-1.1.2-r1 b/metadata/md5-cache/media-gfx/darktable-1.1.2-r1 deleted file mode 100644 index 1cb0af204f9a..000000000000 --- a/metadata/md5-cache/media-gfx/darktable-1.1.2-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend test unpack -DEPEND=dev-db/sqlite:3 dev-libs/libxml2:2 colord? ( x11-misc/colord ) facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) kde? ( dev-libs/dbus-glib kde-base/kwalletd ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng media-libs/openexr media-libs/tiff net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=sys-apps/sed-4 -DESCRIPTION=A virtual lighttable and darkroom for photographers -EAPI=5 -HOMEPAGE=http://www.darktable.org/ -IUSE=colord doc facebook flickr geo gnome-keyring gphoto2 kde nls opencl openmp pax_kernel +rawspeed +slideshow -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 CC-BY-3.0 -RDEPEND=dev-db/sqlite:3 dev-libs/libxml2:2 colord? ( x11-misc/colord ) facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) kde? ( dev-libs/dbus-glib kde-base/kwalletd ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng media-libs/openexr media-libs/tiff net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 -SLOT=0 -SRC_URI=mirror://sourceforge/darktable/darktable-1.1.2.tar.gz doc? ( mirror://sourceforge/darktable/darktable-usermanual-1.1.2.pdf ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6f44b0f4e7e509db25fb9df052130f77 diff --git a/metadata/md5-cache/media-gfx/darktable-1.1.3 b/metadata/md5-cache/media-gfx/darktable-1.1.3 deleted file mode 100644 index e80dddba2280..000000000000 --- a/metadata/md5-cache/media-gfx/darktable-1.1.3 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend test unpack -DEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) kde? ( dev-libs/dbus-glib kde-base/kwalletd ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=sys-apps/sed-4 -DESCRIPTION=A virtual lighttable and darkroom for photographers -EAPI=5 -HOMEPAGE=http://www.darktable.org/ -IUSE=colord doc facebook flickr geo gnome-keyring gphoto2 kde nls opencl openmp pax_kernel +rawspeed +slideshow -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 CC-BY-3.0 -RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) kde? ( dev-libs/dbus-glib kde-base/kwalletd ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango -SLOT=0 -SRC_URI=mirror://sourceforge/darktable/darktable-1.1.3.tar.xz doc? ( mirror://sourceforge/darktable/darktable-usermanual-1.1.2.pdf ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7f407a3fbf4611bef24e049e8ea74648 diff --git a/metadata/md5-cache/media-gfx/darktable-1.1.4 b/metadata/md5-cache/media-gfx/darktable-1.1.4 index ab722b24af02..63c894c7bf88 100644 --- a/metadata/md5-cache/media-gfx/darktable-1.1.4 +++ b/metadata/md5-cache/media-gfx/darktable-1.1.4 @@ -9,5 +9,5 @@ LICENSE=GPL-3 CC-BY-3.0 RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) kde? ( dev-libs/dbus-glib kde-base/kwalletd ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango SLOT=0 SRC_URI=mirror://sourceforge/darktable/darktable-1.1.4.tar.xz doc? ( mirror://sourceforge/darktable/darktable-usermanual-1.1.2.pdf ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=efd2b5acd162157e19b8b41da7a5604f diff --git a/metadata/md5-cache/media-gfx/darktable-1.2 b/metadata/md5-cache/media-gfx/darktable-1.2 deleted file mode 100644 index 4571498717a6..000000000000 --- a/metadata/md5-cache/media-gfx/darktable-1.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend test unpack -DEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=sys-apps/sed-4 -DESCRIPTION=A virtual lighttable and darkroom for photographers -EAPI=5 -HOMEPAGE=http://www.darktable.org/ -IUSE=colord doc facebook flickr geo gnome-keyring gphoto2 graphicsmagick jpeg2k kde nls opencl openmp pax_kernel +rawspeed +slideshow -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 CC-BY-3.0 -RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango kde? ( kde-base/kwalletd ) -SLOT=0 -SRC_URI=mirror://sourceforge/darktable/darktable-1.2.tar.xz doc? ( mirror://sourceforge/darktable/1.2/darktable-usermanual.pdf -> darktable-usermanual-1.2.pdf ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6ea1818f74edf9d4216e26b6902195d4 diff --git a/metadata/md5-cache/media-gfx/darktable-1.2-r1 b/metadata/md5-cache/media-gfx/darktable-1.2-r1 new file mode 100644 index 000000000000..a94e8f3265ae --- /dev/null +++ b/metadata/md5-cache/media-gfx/darktable-1.2-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend test unpack +DEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg web-services? ( dev-libs/json-glib ) x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=sys-apps/sed-4 +DESCRIPTION=A virtual lighttable and darkroom for photographers +EAPI=5 +HOMEPAGE=http://www.darktable.org/ +IUSE=colord doc flickr geo gnome-keyring gphoto2 graphicsmagick jpeg2k kde nls opencl openmp pax_kernel +rawspeed +slideshow web-services +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-3 CC-BY-3.0 +RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg web-services? ( dev-libs/json-glib ) x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango kde? ( kde-base/kwalletd ) +SLOT=0 +SRC_URI=mirror://sourceforge/darktable/darktable-1.2.tar.xz doc? ( mirror://sourceforge/darktable/1.2/darktable-usermanual.pdf -> darktable-usermanual-1.2.pdf ) +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=084b85ecc8bba82e736c601d48e20b20 diff --git a/metadata/md5-cache/media-gfx/darktable-9999 b/metadata/md5-cache/media-gfx/darktable-9999 index 229be7dcd8da..1c4b0fb9154b 100644 --- a/metadata/md5-cache/media-gfx/darktable-9999 +++ b/metadata/md5-cache/media-gfx/darktable-9999 @@ -1,11 +1,11 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare pretend test unpack -DEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=sys-apps/sed-4 dev-vcs/git +DEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg web-services? ( dev-libs/json-glib ) x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango virtual/pkgconfig nls? ( sys-devel/gettext ) sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) >=sys-apps/sed-4 dev-vcs/git DESCRIPTION=A virtual lighttable and darkroom for photographers EAPI=5 HOMEPAGE=http://www.darktable.org/ -IUSE=colord facebook flickr geo gnome-keyring gphoto2 graphicsmagick jpeg2k kde nls opencl openmp pax_kernel +rawspeed +slideshow +IUSE=colord flickr geo gnome-keyring gphoto2 graphicsmagick jpeg2k kde nls opencl openmp pax_kernel +rawspeed +slideshow web-services LICENSE=GPL-3 -RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) facebook? ( dev-libs/json-glib ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango kde? ( kde-base/kwalletd ) +RDEPEND=dev-db/sqlite:3 >=dev-libs/glib-2.28:2 dev-libs/libxml2:2 colord? ( x11-misc/colord ) flickr? ( media-libs/flickcurl ) geo? ( net-libs/libsoup:2.4 ) gnome-keyring? ( gnome-base/gnome-keyring ) gnome-base/librsvg:2 gphoto2? ( media-libs/libgphoto2 ) graphicsmagick? ( media-gfx/graphicsmagick ) jpeg2k? ( media-libs/openjpeg ) media-gfx/exiv2[xmp] media-libs/lcms:2 >=media-libs/lensfun-0.2.3 media-libs/libpng:0 media-libs/openexr media-libs/tiff:0 net-misc/curl opencl? ( virtual/opencl ) slideshow? ( media-libs/libsdl virtual/glu virtual/opengl ) virtual/jpeg web-services? ( dev-libs/json-glib ) x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/pango kde? ( kde-base/kwalletd ) SLOT=0 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6412782fe8cddc1fb3460320e4fdce6a +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=0024855a956fbbde7040db9d41fb6fc2 diff --git a/metadata/md5-cache/media-gfx/freepv-0.3.0-r4 b/metadata/md5-cache/media-gfx/freepv-0.3.0-r4 new file mode 100644 index 000000000000..310555db3122 --- /dev/null +++ b/metadata/md5-cache/media-gfx/freepv-0.3.0-r4 @@ -0,0 +1,12 @@ +DEFINED_PHASES=compile configure install prepare test unpack +DEPEND=dev-libs/libxml2 media-libs/libpng:0= media-libs/freeglut sys-libs/zlib virtual/jpeg x11-libs/libXmu x11-libs/libXt x11-libs/libXxf86vm sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) +DESCRIPTION=Panorama viewer (Quicktime, PangeaVR, GLPanoView formats) +EAPI=5 +HOMEPAGE=http://freepv.sourceforge.net/ +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2.1 +RDEPEND=dev-libs/libxml2 media-libs/libpng:0= media-libs/freeglut sys-libs/zlib virtual/jpeg x11-libs/libXmu x11-libs/libXt x11-libs/libXxf86vm +SLOT=0 +SRC_URI=mirror://sourceforge/freepv/freepv-0.3.0.tar.gz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=2763b9d722deff8a3cffb31a6d3c9af8 diff --git a/metadata/md5-cache/media-gfx/graphicsmagick-1.3.18 b/metadata/md5-cache/media-gfx/graphicsmagick-1.3.18 index a68cf42e8166..604fffd11435 100644 --- a/metadata/md5-cache/media-gfx/graphicsmagick-1.3.18 +++ b/metadata/md5-cache/media-gfx/graphicsmagick-1.3.18 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile configure install prepare -DEPEND=>=sys-devel/libtool-2.2.6b bzip2? ( app-arch/bzip2 ) fpx? ( media-libs/libfpx ) imagemagick? ( !media-gfx/imagemagick ) jbig? ( media-libs/jbigkit ) jpeg? ( virtual/jpeg ) jpeg2k? ( media-libs/jasper ) lcms? ( media-libs/lcms:2 ) lzma? ( app-arch/xz-utils ) perl? ( dev-lang/perl ) png? ( media-libs/libpng:0 ) postscript? ( app-text/ghostscript-gpl ) svg? ( dev-libs/libxml2 ) tiff? ( media-libs/tiff:0 ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libSM x11-libs/libXext ) zlib? ( sys-libs/zlib ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=sys-devel/libtool-2.2.6b bzip2? ( app-arch/bzip2 ) fpx? ( media-libs/libfpx ) imagemagick? ( !media-gfx/imagemagick ) jbig? ( media-libs/jbigkit ) jpeg? ( virtual/jpeg ) jpeg2k? ( media-libs/jasper ) lcms? ( media-libs/lcms:2 ) lzma? ( app-arch/xz-utils ) perl? ( dev-lang/perl ) png? ( media-libs/libpng:0 ) postscript? ( app-text/ghostscript-gpl ) svg? ( dev-libs/libxml2 ) tiff? ( media-libs/tiff:0 ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libSM x11-libs/libXext ) zlib? ( sys-libs/zlib ) DESCRIPTION=Collection of tools and libraries for many image formats EAPI=5 HOMEPAGE=http://www.graphicsmagick.org/ @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=>=sys-devel/libtool-2.2.6b bzip2? ( app-arch/bzip2 ) fpx? ( media-libs/libfpx ) imagemagick? ( !media-gfx/imagemagick ) jbig? ( media-libs/jbigkit ) jpeg? ( virtual/jpeg ) jpeg2k? ( media-libs/jasper ) lcms? ( media-libs/lcms:2 ) lzma? ( app-arch/xz-utils ) perl? ( dev-lang/perl ) png? ( media-libs/libpng:0 ) postscript? ( app-text/ghostscript-gpl ) svg? ( dev-libs/libxml2 ) tiff? ( media-libs/tiff:0 ) truetype? ( media-fonts/urw-fonts >=media-libs/freetype-2 ) wmf? ( media-libs/libwmf ) X? ( x11-libs/libSM x11-libs/libXext ) zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://sourceforge/graphicsmagick/GraphicsMagick-1.3.18.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c8b76a328091de26f870d2da455433cc +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=0c6bb54d5250ff6e983d53527f761c02 diff --git a/metadata/md5-cache/media-gfx/mandelbulber-1.12.1 b/metadata/md5-cache/media-gfx/mandelbulber-1.12.1 index 5afea8a3e06d..7fbe6d350e97 100644 --- a/metadata/md5-cache/media-gfx/mandelbulber-1.12.1 +++ b/metadata/md5-cache/media-gfx/mandelbulber-1.12.1 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile install postinst prepare -DEPEND=x11-libs/gtk+:2 >=media-libs/libsndfile-1 >=media-libs/libpng-1.4 virtual/jpeg virtual/pkgconfig +DEPEND=x11-libs/gtk+:2 >=media-libs/libsndfile-1 >=media-libs/libpng-1.4:0= virtual/jpeg virtual/pkgconfig DESCRIPTION=Tool to render 3D fractals -EAPI=4 +EAPI=5 HOMEPAGE=http://sites.google.com/site/mandelbulber/home KEYWORDS=~amd64 ~x86 LICENSE=GPL-3 -RDEPEND=x11-libs/gtk+:2 >=media-libs/libsndfile-1 >=media-libs/libpng-1.4 virtual/jpeg +RDEPEND=x11-libs/gtk+:2 >=media-libs/libsndfile-1 >=media-libs/libpng-1.4:0= virtual/jpeg SLOT=0 SRC_URI=mirror://sourceforge/mandelbulber/mandelbulber1.12-1.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=cdd21dbc350b9feb1b754188e48d7e17 +_md5_=fbc2cd071fe31d3805a5232dfe6ca831 diff --git a/metadata/md5-cache/media-gfx/pngquant-1.8.3 b/metadata/md5-cache/media-gfx/pngquant-1.8.3 index a2e9f9c6b65b..8e9e718350c7 100644 --- a/metadata/md5-cache/media-gfx/pngquant-1.8.3 +++ b/metadata/md5-cache/media-gfx/pngquant-1.8.3 @@ -1,4 +1,4 @@ -DEFINED_PHASES=compile install prepare pretend +DEFINED_PHASES=compile install prepare DEPEND=media-libs/libpng:0= sys-libs/zlib:= DESCRIPTION=a command-line utility for converting 24/32-bit PNG images to paletted (8-bit) PNGs EAPI=5 @@ -10,4 +10,4 @@ RDEPEND=media-libs/libpng:0= sys-libs/zlib:= SLOT=0 SRC_URI=http://pngquant.org/pngquant-1.8.3-src.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=860085ad61c82d219211ed55fe4c2fae +_md5_=a89c5e0d0dedbab547573977a5ce109e 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 ba783d767a4a..3c056d915d74 100644 --- a/metadata/md5-cache/media-gfx/pydot-1.0.28-r1 +++ b/metadata/md5-cache/media-gfx/pydot-1.0.28-r1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=virtual/pyparsing[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] media-gfx/graphviz python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://pydot.googlecode.com/files/pydot-1.0.28.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=88109f06bcdad0321e291ea324ef0333 diff --git a/metadata/md5-cache/media-libs/audiofile-0.3.5 b/metadata/md5-cache/media-libs/audiofile-0.3.5 index b4e2fcddd5ae..babad1537335 100644 --- a/metadata/md5-cache/media-libs/audiofile-0.3.5 +++ b/metadata/md5-cache/media-libs/audiofile-0.3.5 @@ -4,9 +4,9 @@ DESCRIPTION=An elegant API for accessing audio files EAPI=5 HOMEPAGE=http://www.68k.org/~michael/audiofile/ IUSE=static-libs test -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-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 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 LGPL-2 SLOT=0/1 SRC_URI=mirror://gnome/sources/audiofile/0.3/audiofile-0.3.5.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 gnome.org 8fef8f967214f56e08fa92d61163d891 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b7f198358dd0bfaac65ee2effa050dac +_md5_=f86134baf2e30c6e85678085ad8f90ab diff --git a/metadata/md5-cache/media-libs/evas-1.7.4 b/metadata/md5-cache/media-libs/evas-1.7.4 deleted file mode 100644 index 1151f09c6262..000000000000 --- a/metadata/md5-cache/media-libs/evas-1.7.4 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare unpack -DEPEND=>=dev-libs/eina-1.7.0 >=media-libs/freetype-2.3.9 fontconfig? ( media-libs/fontconfig ) gles? ( media-libs/mesa[gallium,gles2] ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) png? ( media-libs/libpng ) bidi? ( >=dev-libs/fribidi-0.19.1 ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tiff? ( media-libs/tiff ) xpm? ( x11-libs/libXpm ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXrender opengl? ( virtual/opengl ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) eet? ( >=dev-libs/eet-1.7.0 ) doc? ( app-doc/doxygen ) -DESCRIPTION=hardware-accelerated retained canvas API -EAPI=2 -HOMEPAGE=http://trac.enlightenment.org/e/wiki/Evas -IUSE=altivec bidi +bmp directfb +eet fbcon +fontconfig gles gif +ico +jpeg mmx opengl +png +ppm +psd sse sse3 static-libs tga +threads tiff X xcb xpm nls doc -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=BSD-2 -RDEPEND=>=dev-libs/eina-1.7.0 >=media-libs/freetype-2.3.9 fontconfig? ( media-libs/fontconfig ) gles? ( media-libs/mesa[gallium,gles2] ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) png? ( media-libs/libpng ) bidi? ( >=dev-libs/fribidi-0.19.1 ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tiff? ( media-libs/tiff ) xpm? ( x11-libs/libXpm ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXrender opengl? ( virtual/opengl ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) eet? ( >=dev-libs/eet-1.7.0 ) nls? ( sys-devel/gettext ) -SLOT=0 -SRC_URI=http://download.enlightenment.org/releases/evas-1.7.4.tar.bz2 -_eclasses_=enlightenment 59018f068e8f700839d3c75f86495011 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e85327fbb24a1602784d909e821d9dc9 diff --git a/metadata/md5-cache/media-libs/evas-1.7.5 b/metadata/md5-cache/media-libs/evas-1.7.5 deleted file mode 100644 index e3d8f3c2f6c3..000000000000 --- a/metadata/md5-cache/media-libs/evas-1.7.5 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare unpack -DEPEND=>=dev-libs/eina-1.7.0 >=media-libs/freetype-2.3.9 fontconfig? ( media-libs/fontconfig ) gles? ( media-libs/mesa[gallium,gles2] ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) png? ( media-libs/libpng ) bidi? ( >=dev-libs/fribidi-0.19.1 ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tiff? ( media-libs/tiff ) xpm? ( x11-libs/libXpm ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXrender opengl? ( virtual/opengl ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) eet? ( >=dev-libs/eet-1.7.0 ) doc? ( app-doc/doxygen ) -DESCRIPTION=hardware-accelerated retained canvas API -EAPI=2 -HOMEPAGE=http://trac.enlightenment.org/e/wiki/Evas -IUSE=altivec bidi +bmp directfb +eet fbcon +fontconfig gles gif +ico +jpeg mmx opengl +png +ppm +psd sse sse3 static-libs tga +threads tiff X xcb xpm nls doc -KEYWORDS=~amd64 ~arm ~x86 -LICENSE=BSD-2 -RDEPEND=>=dev-libs/eina-1.7.0 >=media-libs/freetype-2.3.9 fontconfig? ( media-libs/fontconfig ) gles? ( media-libs/mesa[gallium,gles2] ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) png? ( media-libs/libpng ) bidi? ( >=dev-libs/fribidi-0.19.1 ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tiff? ( media-libs/tiff ) xpm? ( x11-libs/libXpm ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXrender opengl? ( virtual/opengl ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) eet? ( >=dev-libs/eet-1.7.0 ) nls? ( sys-devel/gettext ) -SLOT=0 -SRC_URI=http://download.enlightenment.org/releases/evas-1.7.5.tar.bz2 -_eclasses_=enlightenment 59018f068e8f700839d3c75f86495011 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d0aab603cfa2e1690853ccf3f5f50466 diff --git a/metadata/md5-cache/media-libs/evas-1.7.5-r1 b/metadata/md5-cache/media-libs/evas-1.7.6.1 similarity index 77% rename from metadata/md5-cache/media-libs/evas-1.7.5-r1 rename to metadata/md5-cache/media-libs/evas-1.7.6.1 index 4a07d86d8ecb..1275bd954859 100644 --- a/metadata/md5-cache/media-libs/evas-1.7.5-r1 +++ b/metadata/md5-cache/media-libs/evas-1.7.6.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst prepare unpack -DEPEND=>=dev-libs/eina-1.7.0 >=media-libs/freetype-2.3.9 fontconfig? ( media-libs/fontconfig ) gles? ( media-libs/mesa[gallium,gles2] ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) png? ( media-libs/libpng ) bidi? ( >=dev-libs/fribidi-0.19.1 ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tiff? ( media-libs/tiff ) wayland? ( dev-libs/wayland ) xpm? ( x11-libs/libXpm ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXrender opengl? ( virtual/opengl ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) eet? ( >=dev-libs/eet-1.7.0 ) doc? ( app-doc/doxygen ) +DEPEND=>=dev-libs/eina-1.7.6 >=media-libs/freetype-2.3.9 fontconfig? ( media-libs/fontconfig ) gles? ( media-libs/mesa[gallium,gles2] ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) png? ( media-libs/libpng ) bidi? ( >=dev-libs/fribidi-0.19.1 ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tiff? ( media-libs/tiff ) wayland? ( dev-libs/wayland ) xpm? ( x11-libs/libXpm ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXrender opengl? ( virtual/opengl ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) eet? ( >=dev-libs/eet-1.7.6 ) doc? ( app-doc/doxygen ) DESCRIPTION=hardware-accelerated retained canvas API EAPI=2 HOMEPAGE=http://trac.enlightenment.org/e/wiki/Evas -IUSE=altivec bidi +bmp directfb +eet fbcon +fontconfig gles gif +ico +jpeg mmx opengl +png +ppm +psd sse sse3 static-libs tga +threads tiff wayland X xcb xpm nls doc +IUSE=altivec bidi +bmp directfb +eet fbcon +fontconfig gles gif +ico +jpeg mmx opengl +png +ppm +psd sse sse3 static-libs tga tiff wayland X xcb xpm nls doc KEYWORDS=~amd64 ~arm ~x86 LICENSE=BSD-2 -RDEPEND=>=dev-libs/eina-1.7.0 >=media-libs/freetype-2.3.9 fontconfig? ( media-libs/fontconfig ) gles? ( media-libs/mesa[gallium,gles2] ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) png? ( media-libs/libpng ) bidi? ( >=dev-libs/fribidi-0.19.1 ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tiff? ( media-libs/tiff ) wayland? ( dev-libs/wayland ) xpm? ( x11-libs/libXpm ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXrender opengl? ( virtual/opengl ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) eet? ( >=dev-libs/eet-1.7.0 ) nls? ( sys-devel/gettext ) +RDEPEND=>=dev-libs/eina-1.7.6 >=media-libs/freetype-2.3.9 fontconfig? ( media-libs/fontconfig ) gles? ( media-libs/mesa[gallium,gles2] ) gif? ( media-libs/giflib ) jpeg? ( virtual/jpeg ) png? ( media-libs/libpng ) bidi? ( >=dev-libs/fribidi-0.19.1 ) directfb? ( >=dev-libs/DirectFB-0.9.16 ) tiff? ( media-libs/tiff ) wayland? ( dev-libs/wayland ) xpm? ( x11-libs/libXpm ) X? ( x11-libs/libX11 x11-libs/libXext x11-libs/libXrender opengl? ( virtual/opengl ) ) !X? ( xcb? ( x11-libs/xcb-util ) ) eet? ( >=dev-libs/eet-1.7.6 ) nls? ( sys-devel/gettext ) SLOT=0 -SRC_URI=http://download.enlightenment.org/releases/evas-1.7.5.tar.bz2 +SRC_URI=http://download.enlightenment.org/releases/evas-1.7.6.1.tar.bz2 _eclasses_=enlightenment 59018f068e8f700839d3c75f86495011 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=51e3ef49ec54890648b726cde77306d4 +_md5_=0f21457fd6ef466a65e68e366422a462 diff --git a/metadata/md5-cache/media-libs/gstreamer-0.10.36 b/metadata/md5-cache/media-libs/gstreamer-0.10.36 index 0fac2c31237b..1fe1e9c62f27 100644 --- a/metadata/md5-cache/media-libs/gstreamer-0.10.36 +++ b/metadata/md5-cache/media-libs/gstreamer-0.10.36 @@ -9,5 +9,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-libs/glib-2.24:2 >=dev-libs/libxml2-2.4.9 introspection? ( >=dev-libs/gobject-introspection-0.6.8 ) !=dev-libs/glib-2.32:2 introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) SLOT=1.0 SRC_URI=http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.0.5.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7368c347be683bfc10f75af651155c2b diff --git a/metadata/md5-cache/media-libs/gstreamer-1.0.6 b/metadata/md5-cache/media-libs/gstreamer-1.0.6 index 987b027fb316..dbff383a05c0 100644 --- a/metadata/md5-cache/media-libs/gstreamer-1.0.6 +++ b/metadata/md5-cache/media-libs/gstreamer-1.0.6 @@ -9,5 +9,5 @@ LICENSE=LGPL-2+ RDEPEND=>=dev-libs/glib-2.32:2 introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) SLOT=1.0 SRC_URI=http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.0.6.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=51919c1a4a1d2975a3df2ef9db27fa7e diff --git a/metadata/md5-cache/media-libs/libcanberra-0.30-r1 b/metadata/md5-cache/media-libs/libcanberra-0.30-r1 index 0d439d8e6275..7cbf695f7fe8 100644 --- a/metadata/md5-cache/media-libs/libcanberra-0.30-r1 +++ b/metadata/md5-cache/media-libs/libcanberra-0.30-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Portable sound event library EAPI=5 HOMEPAGE=http://0pointer.de/lennart/projects/libcanberra/ IUSE=alsa gnome gstreamer +gtk +gtk3 oss pulseaudio +sound tdb udev -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x86-solaris LICENSE=LGPL-2.1+ RDEPEND=media-libs/libvorbis >=sys-devel/libtool-2.2.6b alsa? ( media-libs/alsa-lib:= udev? ( >=virtual/udev-171:= ) ) gstreamer? ( media-libs/gstreamer:1.0 ) gtk? ( >=dev-libs/glib-2.32:2 >=x11-libs/gtk+-2.20.0:2 x11-libs/libX11 ) gtk3? ( >=dev-libs/glib-2.32:2 x11-libs/gtk+:3 x11-libs/libX11 ) pulseaudio? ( >=media-sound/pulseaudio-0.9.11 ) tdb? ( sys-libs/tdb:= ) gnome? ( gnome-base/gsettings-desktop-schemas ) sound? ( x11-themes/sound-theme-freedesktop ) REQUIRED_USE=udev? ( alsa ) SLOT=0 SRC_URI=http://0pointer.de/lennart/projects/libcanberra/libcanberra-0.30.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=2b9ff5d4f8c5fcd6b31db17781578c26 +_md5_=06318a49271e4e3bc1f21046e0eed6f4 diff --git a/metadata/md5-cache/media-libs/libcdr-0.0.12 b/metadata/md5-cache/media-libs/libcdr-0.0.12 new file mode 100644 index 000000000000..e4c0276c3dc2 --- /dev/null +++ b/metadata/md5-cache/media-libs/libcdr-0.0.12 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare unpack +DEPEND=app-text/libwpd:0.9 app-text/libwpg:0.2 dev-libs/icu:= media-libs/lcms:2 sys-libs/zlib virtual/pkgconfig sys-devel/libtool doc? ( app-doc/doxygen ) +DESCRIPTION=Library parsing the Corel cdr documents +EAPI=5 +HOMEPAGE=http://www.freedesktop.org/wiki/Software/libcdr +IUSE=doc static-libs +KEYWORDS=~amd64 ~arm ~ppc ~x86 +LICENSE=LGPL-2.1 +RDEPEND=app-text/libwpd:0.9 app-text/libwpg:0.2 dev-libs/icu:= media-libs/lcms:2 sys-libs/zlib +SLOT=0 +SRC_URI=http://dev-www.libreoffice.org/src/libcdr-0.0.12.tar.xz +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=9c1ee9d50f3df5dd27c47baeb121178b diff --git a/metadata/md5-cache/media-libs/libdvdcss-1.2.13 b/metadata/md5-cache/media-libs/libdvdcss-1.2.13 index c817d3385649..d8b79e12b4e6 100644 --- a/metadata/md5-cache/media-libs/libdvdcss-1.2.13 +++ b/metadata/md5-cache/media-libs/libdvdcss-1.2.13 @@ -4,9 +4,9 @@ DESCRIPTION=A portable abstraction library for DVD decryption EAPI=5 HOMEPAGE=http://www.videolan.org/developers/libdvdcss.html IUSE=doc static-libs -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~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 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris LICENSE=GPL-2 SLOT=1.2 SRC_URI=http://www.videolan.org/pub/libdvdcss/1.2.13/libdvdcss-1.2.13.tar.bz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=2769cdf8ea891ae10d7545af8e09a955 +_md5_=69acd885d267851f2a5a69dc43a68003 diff --git a/metadata/md5-cache/media-libs/libiec61883-1.2.0 b/metadata/md5-cache/media-libs/libiec61883-1.2.0 index b85702e86053..b2cafc5a5c11 100644 --- a/metadata/md5-cache/media-libs/libiec61883-1.2.0 +++ b/metadata/md5-cache/media-libs/libiec61883-1.2.0 @@ -9,5 +9,5 @@ LICENSE=|| ( LGPL-2.1 GPL-2 ) RDEPEND=>=sys-libs/libraw1394-1.2.1 SLOT=0 SRC_URI=mirror://kernel/linux/libs/ieee1394/libiec61883-1.2.0.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b4ff051fc405f66e76c3a04cc541a66c diff --git a/metadata/md5-cache/media-libs/libmpdclient-2.8 b/metadata/md5-cache/media-libs/libmpdclient-2.8 new file mode 100644 index 000000000000..c4bbc5916f31 --- /dev/null +++ b/metadata/md5-cache/media-libs/libmpdclient-2.8 @@ -0,0 +1,11 @@ +DEFINED_PHASES=configure install prepare +DEPEND=doc? ( app-doc/doxygen ) +DESCRIPTION=A library for interfacing Music Player Daemon (media-sound/mpd) +EAPI=4 +HOMEPAGE=http://www.musicpd.org +IUSE=doc examples static-libs +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 +LICENSE=BSD +SLOT=0 +SRC_URI=http://www.musicpd.org/download/libmpdclient/2/libmpdclient-2.8.tar.bz2 +_md5_=3b2162d0cab581e947697d7006206b60 diff --git a/metadata/md5-cache/media-libs/libpng-1.5.15-r15 b/metadata/md5-cache/media-libs/libpng-1.5.15-r15 new file mode 100644 index 000000000000..3eb45d085d45 --- /dev/null +++ b/metadata/md5-cache/media-libs/libpng-1.5.15-r15 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare setup +DEPEND=sys-libs/zlib:= !=media-libs/libpng-1.5*:0 app-arch/xz-utils +DESCRIPTION=Portable Network Graphics library +EAPI=5 +HOMEPAGE=http://www.libpng.org/ +IUSE=apng neon +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt +LICENSE=libpng +RDEPEND=sys-libs/zlib:= !=media-libs/libpng-1.5*:0 +SLOT=1.5 +SRC_URI=mirror://sourceforge/libpng/libpng-1.5.15.tar.xz apng? ( mirror://sourceforge/apng/libpng-1.5.15-apng.patch.gz ) +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=8a535c891d752ff824dc1cbced510e83 diff --git a/metadata/md5-cache/media-libs/libpng-1.6.1 b/metadata/md5-cache/media-libs/libpng-1.6.1 index 84f89bdd4136..a6926cfcaa9a 100644 --- a/metadata/md5-cache/media-libs/libpng-1.6.1 +++ b/metadata/md5-cache/media-libs/libpng-1.6.1 @@ -4,9 +4,10 @@ DESCRIPTION=Portable Network Graphics library EAPI=5 HOMEPAGE=http://www.libpng.org/ IUSE=apng neon static-libs +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt LICENSE=libpng RDEPEND=sys-libs/zlib:= SLOT=0/16 SRC_URI=mirror://sourceforge/libpng/libpng-1.6.1.tar.xz apng? ( mirror://sourceforge/apng/libpng-1.6.1-apng.patch.gz ) _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7caa2c59a92b65c974fa29dee0536c33 +_md5_=875604bbc6d1fddf6676d06a93d358a6 diff --git a/metadata/md5-cache/media-libs/libtaginfo-0.1.3 b/metadata/md5-cache/media-libs/libtaginfo-0.1.5 similarity index 83% rename from metadata/md5-cache/media-libs/libtaginfo-0.1.3 rename to metadata/md5-cache/media-libs/libtaginfo-0.1.5 index 4346f62646e8..4db7588bf66a 100644 --- a/metadata/md5-cache/media-libs/libtaginfo-0.1.3 +++ b/metadata/md5-cache/media-libs/libtaginfo-0.1.5 @@ -7,5 +7,5 @@ KEYWORDS=~amd64 ~x86 LICENSE=LGPL-2.1 RDEPEND=media-libs/taglib !=media-libs/phonon-4.6.0 >=media-video/vlc-2.0.1[dbus,ogg,vorbis] >=dev-qt/qtdbus-4.6.0:4 >=dev-qt/qtgui-4.6.0:4 >=dev-util/automoc-0.9.87 virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Phonon VLC backend -EAPI=4 -HOMEPAGE=https://projects.kde.org/projects/kdesupport/phonon/phonon-vlc -IUSE=debug -KEYWORDS=amd64 ~arm ppc ppc64 x86 ~amd64-fbsd -LICENSE=LGPL-2.1 -RDEPEND=>=media-libs/phonon-4.6.0 >=media-video/vlc-2.0.1[dbus,ogg,vorbis] >=dev-qt/qtdbus-4.6.0:4 >=dev-qt/qtgui-4.6.0:4 -SLOT=0 -SRC_URI=mirror://kde/stable/phonon/phonon-backend-vlc/0.6.0/src/phonon-backend-vlc-0.6.0.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=889dcf03d101f55a7630768de2719bd8 diff --git a/metadata/md5-cache/media-libs/phonon-vlc-0.6.1 b/metadata/md5-cache/media-libs/phonon-vlc-0.6.1 deleted file mode 100644 index 3aa47938ae90..000000000000 --- a/metadata/md5-cache/media-libs/phonon-vlc-0.6.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare test unpack -DEPEND=>=media-libs/phonon-4.6.0 >=media-video/vlc-2.0.1[dbus,ogg,vorbis] >=dev-qt/qtdbus-4.6.0:4 >=dev-qt/qtgui-4.6.0:4 >=dev-util/automoc-0.9.87 virtual/pkgconfig sys-devel/make >=dev-util/cmake-2.8.9 userland_GNU? ( >=sys-apps/findutils-4.4.0 ) -DESCRIPTION=Phonon VLC backend -EAPI=4 -HOMEPAGE=https://projects.kde.org/projects/kdesupport/phonon/phonon-vlc -IUSE=debug -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd -LICENSE=LGPL-2.1 -RDEPEND=>=media-libs/phonon-4.6.0 >=media-video/vlc-2.0.1[dbus,ogg,vorbis] >=dev-qt/qtdbus-4.6.0:4 >=dev-qt/qtgui-4.6.0:4 -SLOT=0 -SRC_URI=mirror://kde/stable/phonon/phonon-backend-vlc/0.6.1/src/phonon-backend-vlc-0.6.1.tar.xz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=dbfa853b3512d6d9b2c19a02a821b420 diff --git a/metadata/md5-cache/media-libs/phonon-vlc-0.6.2 b/metadata/md5-cache/media-libs/phonon-vlc-0.6.2 index cc6e39fb66df..b38edffbb5de 100644 --- a/metadata/md5-cache/media-libs/phonon-vlc-0.6.2 +++ b/metadata/md5-cache/media-libs/phonon-vlc-0.6.2 @@ -4,10 +4,10 @@ DESCRIPTION=Phonon VLC backend EAPI=5 HOMEPAGE=https://projects.kde.org/projects/kdesupport/phonon/phonon-vlc IUSE=debug -KEYWORDS=amd64 ~arm ~ppc ~ppc64 x86 ~amd64-fbsd +KEYWORDS=amd64 ~arm ppc ppc64 x86 ~amd64-fbsd LICENSE=LGPL-2.1 RDEPEND=>=media-libs/phonon-4.6.0 >=media-video/vlc-2.0.1[dbus,ogg,vorbis] >=dev-qt/qtcore-4.6.0:4 >=dev-qt/qtdbus-4.6.0:4 >=dev-qt/qtgui-4.6.0:4 SLOT=0 SRC_URI=mirror://kde/stable/phonon/phonon-backend-vlc/0.6.2/phonon-backend-vlc-0.6.2.tar.xz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9128ccc52cb3bc0a54d745f4b11a9920 +_md5_=a9e91d33589cb7a9b5fab4ecb3a40100 diff --git a/metadata/md5-cache/media-radio/wspr-2.00-r1 b/metadata/md5-cache/media-radio/wspr-2.00-r1 index bb8bafdb9d64..c03013cd9eaf 100644 --- a/metadata/md5-cache/media-radio/wspr-2.00-r1 +++ b/metadata/md5-cache/media-radio/wspr-2.00-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/imaging[tk,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/pmw[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/fftw:3.0 media-libs/hamlib media-libs/portaudio media-libs/libsamplerate virtual/fortran python_targets_python2_6? ( dev-lang/python:2.6[tk] ) python_targets_python2_7? ( dev-lang/python:2.7[tk] ) 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=http://www.physics.princeton.edu/pulsar/K1JT/wspr-2.00.r1714.tgz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=475a0a662cea19a6ec0b1756934501b0 diff --git a/metadata/md5-cache/media-sound/amarok-2.7.0 b/metadata/md5-cache/media-sound/amarok-2.7.0 index 39e47eb5d30c..7142c3d60212 100644 --- a/metadata/md5-cache/media-sound/amarok-2.7.0 +++ b/metadata/md5-cache/media-sound/amarok-2.7.0 @@ -4,10 +4,10 @@ DESCRIPTION=Advanced audio player based on KDE framework. EAPI=4 HOMEPAGE=http://amarok.kde.org/ IUSE=cdda daap debug +embedded ipod lastfm mp3tunes mtp ofa opengl semantic-desktop test +utils linguas_bs linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_el linguas_en_GB linguas_es linguas_et linguas_eu linguas_fi linguas_fr linguas_ga linguas_gl linguas_hu linguas_it linguas_ja linguas_lt linguas_lv linguas_nb linguas_nl linguas_pa linguas_pl linguas_pt linguas_pt_BR linguas_ru linguas_sl linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@latin linguas_sv linguas_uk linguas_zh_CN linguas_zh_TW test aqua -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ppc x86 LICENSE=GPL-2 RDEPEND=app-crypt/qca:2 >=app-misc/strigi-0.5.7 >=kde-base/kdelibs-4.8.4:4[aqua=,opengl?,semantic-desktop?] >=kde-base/kdebase-kioslaves-4.4:4[aqua=] >=media-libs/taglib-1.7[asf,mp4] >=media-libs/taglib-extras-1.0.1 sys-libs/zlib >=virtual/mysql-5.1[embedded?] >=dev-qt/qtcore-4.8:4 >=dev-qt/qtdbus-4.8:4 >=dev-qt/qtscript-4.8:4 >=x11-libs/qtscriptgenerator-0.1.0 cdda? ( >=kde-base/libkcddb-4.4:4[aqua=] >=kde-base/libkcompactdisc-4.4:4[aqua=] >=kde-base/audiocd-kio-4.4:4[aqua=] ) ipod? ( >=media-libs/libgpod-0.7.0[gtk] ) lastfm? ( >=media-libs/liblastfm-1.0.3 ) mp3tunes? ( dev-libs/glib:2 dev-libs/libxml2 dev-libs/openssl net-libs/loudmouth net-misc/curl >=dev-qt/qtcore-4.8.4:4[glib] ) mtp? ( >=media-libs/libmtp-1.0.0 ) ofa? ( >=media-libs/libofa-0.9.0 ) opengl? ( virtual/opengl ) semantic-desktop? ( >=kde-base/nepomuk-core-4.9.0 ) !media-sound/amarok-utils >=kde-base/phonon-kde-4.4:4[aqua=] SLOT=4 SRC_URI=mirror://kde/stable/amarok/2.7.0/src/amarok-2.7.0.tar.bz2 _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=afc6ddb9fed406fb7756bf3760064b8d +_md5_=5c1876678088c84388de33df951693f0 diff --git a/metadata/md5-cache/media-sound/ardour-3.0 b/metadata/md5-cache/media-sound/ardour-3.0 index ce92a9d1404c..e1a0a21f3a83 100644 --- a/metadata/md5-cache/media-sound/ardour-3.0 +++ b/metadata/md5-cache/media-sound/ardour-3.0 @@ -10,4 +10,4 @@ RDEPEND=media-libs/aubio media-libs/liblo sci-libs/fftw:3.0 media-libs/freetype: SLOT=3 SRC_URI=mirror://gentoo/ardour-3.0.tar.bz2 _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 waf-utils 681b3e9181d1a20ad8d0c186333ddcf7 -_md5_=06faff0c9f735a602ad2bda8838cda46 +_md5_=0a3f51cbbe99493dddd7e423e0414d51 diff --git a/metadata/md5-cache/media-sound/frescobaldi-2.0.9 b/metadata/md5-cache/media-sound/frescobaldi-2.0.9 index 69bd99b43194..16d84145be14 100644 --- a/metadata/md5-cache/media-sound/frescobaldi-2.0.9 +++ b/metadata/md5-cache/media-sound/frescobaldi-2.0.9 @@ -9,5 +9,5 @@ LICENSE=GPL-2 public-domain RDEPEND=dev-python/python-poppler-qt4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/PyQt4[X,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=media-sound/lilypond-2.14.2 portmidi? ( media-libs/portmidi ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://lilykde.googlecode.com/files/frescobaldi-2.0.9.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=da89c7b1bd6cd256172a45fc7b3cd57c diff --git a/metadata/md5-cache/media-sound/google-musicmanager-1.0.55.7425_beta-r2 b/metadata/md5-cache/media-sound/google-musicmanager-1.0.55.7425_beta-r2 index 2b7b3ed38bd3..08bc91d41384 100644 --- a/metadata/md5-cache/media-sound/google-musicmanager-1.0.55.7425_beta-r2 +++ b/metadata/md5-cache/media-sound/google-musicmanager-1.0.55.7425_beta-r2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/expat dev-libs/glib:2 media-libs/flac media-libs/fontconfig med RESTRICT=strip mirror SLOT=0 SRC_URI=x86? ( http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/google-musicmanager-beta_1.0.55.7425-r0_i386.deb ) amd64? ( http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/google-musicmanager-beta_1.0.55.7425-r0_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=aac61f0720d6b39b4e0754a1997fc926 diff --git a/metadata/md5-cache/media-sound/google-musicmanager-1.0.60.7918_beta b/metadata/md5-cache/media-sound/google-musicmanager-1.0.60.7918_beta index 72f92f2dddc6..a377dfa0c0dc 100644 --- a/metadata/md5-cache/media-sound/google-musicmanager-1.0.60.7918_beta +++ b/metadata/md5-cache/media-sound/google-musicmanager-1.0.60.7918_beta @@ -10,5 +10,5 @@ RDEPEND=dev-libs/expat dev-libs/glib:2 dev-qt/qtcore:4 dev-qt/qtgui:4 dev-qt/qtw RESTRICT=strip mirror SLOT=0 SRC_URI=x86? ( http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/google-musicmanager-beta_1.0.60.7918-r0_i386.deb ) amd64? ( http://dl.google.com/linux/musicmanager/deb/pool/main/g/google-musicmanager-beta/google-musicmanager-beta_1.0.60.7918-r0_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b482bdb010c137e47f2d355cac552bea diff --git a/metadata/md5-cache/media-sound/mpc-0.23 b/metadata/md5-cache/media-sound/mpc-0.23 new file mode 100644 index 000000000000..b5210379ad59 --- /dev/null +++ b/metadata/md5-cache/media-sound/mpc-0.23 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install +DEPEND=>=media-libs/libmpdclient-2.2 iconv? ( virtual/libiconv ) virtual/pkgconfig +DESCRIPTION=A commandline client for Music Player Daemon (media-sound/mpd) +EAPI=4 +HOMEPAGE=http://www.musicpd.org +IUSE=iconv +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=>=media-libs/libmpdclient-2.2 iconv? ( virtual/libiconv ) +SLOT=0 +SRC_URI=http://www.musicpd.org/download/mpc/0/mpc-0.23.tar.bz2 +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 +_md5_=7d48342d28c83661e3a4d4ae020a911b diff --git a/metadata/md5-cache/media-sound/mpd-0.17.1 b/metadata/md5-cache/media-sound/mpd-0.17.1 deleted file mode 100644 index b6652b01712b..000000000000 --- a/metadata/md5-cache/media-sound/mpd-0.17.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare setup -DEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) soup? ( net-libs/libsoup:2.4 ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) virtual/pkgconfig -DESCRIPTION=The Music Player Daemon (mpd) -EAPI=4 -HOMEPAGE=http://www.musicpd.org -IUSE=aac +alsa ao audiofile bzip2 cdio +curl debug +fifo +ffmpeg flac fluidsynth gme +id3tag inotify ipv6 jack lame lastfmradio mms libsamplerate +mad mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio recorder sid sndfile soundcloud soup sqlite systemd tcpd twolame unicode vorbis wavpack wildmidi zeroconf zip -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x64-macos -LICENSE=GPL-2 -RDEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) soup? ( net-libs/libsoup:2.4 ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) -REQUIRED_USE=|| ( alsa ao fifo jack network openal oss pipe pulseaudio recorder ) || ( aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack ogg flac sid vorbis wavpack wildmidi ) network? ( || ( audiofile flac lame twolame vorbis ) ) recorder? ( || ( audiofile flac lame twolame vorbis ) ) lastfmradio? ( curl ) -SLOT=0 -SRC_URI=mirror://sourceforge/musicpd/mpd-0.17.1.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=ce8084825f26828078c2a17ce59f8001 diff --git a/metadata/md5-cache/media-sound/mpd-0.17.2 b/metadata/md5-cache/media-sound/mpd-0.17.2 deleted file mode 100644 index 4a785c46f124..000000000000 --- a/metadata/md5-cache/media-sound/mpd-0.17.2 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=configure install postinst prepare setup -DEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) soup? ( net-libs/libsoup:2.4 ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) virtual/pkgconfig -DESCRIPTION=The Music Player Daemon (mpd) -EAPI=4 -HOMEPAGE=http://www.musicpd.org -IUSE=aac +alsa ao audiofile bzip2 cdio +curl debug +fifo +ffmpeg flac fluidsynth gme +id3tag inotify ipv6 jack lame lastfmradio mms libsamplerate +mad mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio recorder sid sndfile soundcloud soup sqlite systemd tcpd twolame unicode vorbis wavpack wildmidi zeroconf zip -KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x64-macos -LICENSE=GPL-2 -RDEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) soup? ( net-libs/libsoup:2.4 ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) -REQUIRED_USE=|| ( alsa ao fifo jack network openal oss pipe pulseaudio recorder ) || ( aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack ogg flac sid vorbis wavpack wildmidi ) network? ( || ( audiofile flac lame twolame vorbis ) ) recorder? ( || ( audiofile flac lame twolame vorbis ) ) lastfmradio? ( curl ) -SLOT=0 -SRC_URI=mirror://sourceforge/musicpd/mpd-0.17.2.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=005692aebcee045f88346b46946863bf diff --git a/metadata/md5-cache/media-sound/mpd-0.17.4 b/metadata/md5-cache/media-sound/mpd-0.17.4 new file mode 100644 index 000000000000..dd28042a9e79 --- /dev/null +++ b/metadata/md5-cache/media-sound/mpd-0.17.4 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) soup? ( net-libs/libsoup:2.4 ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) virtual/pkgconfig +DESCRIPTION=The Music Player Daemon (mpd) +EAPI=4 +HOMEPAGE=http://www.musicpd.org +IUSE=aac +alsa ao audiofile bzip2 cdio +curl debug +fifo +ffmpeg flac fluidsynth gme +id3tag inotify ipv6 jack lame lastfmradio mms libsamplerate +mad mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio recorder sid sndfile soundcloud soup sqlite systemd tcpd twolame unicode vorbis wavpack wildmidi zeroconf zip +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x64-macos +LICENSE=GPL-2 +RDEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) soup? ( net-libs/libsoup:2.4 ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) +REQUIRED_USE=|| ( alsa ao fifo jack network openal oss pipe pulseaudio recorder ) || ( aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack ogg flac sid vorbis wavpack wildmidi ) network? ( || ( audiofile flac lame twolame vorbis ) ) recorder? ( || ( audiofile flac lame twolame vorbis ) ) lastfmradio? ( curl ) +SLOT=0 +SRC_URI=http://www.musicpd.org/download/mpd/0.17/mpd-0.17.4.tar.bz2 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b readme.gentoo 2705553a0f031d715b57878cc0d9bf64 systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=907798598511faffdf468f9c1041d46e diff --git a/metadata/md5-cache/media-sound/mpd-0.17.4-r2 b/metadata/md5-cache/media-sound/mpd-0.17.4-r2 new file mode 100644 index 000000000000..4c5396e83450 --- /dev/null +++ b/metadata/md5-cache/media-sound/mpd-0.17.4-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) soup? ( net-libs/libsoup:2.4 ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) virtual/pkgconfig +DESCRIPTION=The Music Player Daemon (mpd) +EAPI=4 +HOMEPAGE=http://www.musicpd.org +IUSE=aac +alsa ao audiofile bzip2 cdio +curl debug +fifo +ffmpeg flac fluidsynth gme +id3tag inotify ipv6 jack lame lastfmradio mms libsamplerate +mad mikmod modplug mpg123 musepack +network ogg openal oss pipe pulseaudio recorder sid sndfile soundcloud soup sqlite systemd tcpd twolame unicode vorbis wavpack wildmidi zeroconf zip +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x64-macos +LICENSE=GPL-2 +RDEPEND=!=media-libs/game-music-emu-0.6.0_pre20120802 ) id3tag? ( media-libs/libid3tag ) jack? ( media-sound/jack-audio-connection-kit ) lame? ( network? ( media-sound/lame ) ) libsamplerate? ( media-libs/libsamplerate ) mad? ( media-libs/libmad ) mikmod? ( media-libs/libmikmod:0 ) mms? ( media-libs/libmms ) modplug? ( media-libs/libmodplug ) mpg123? ( >=media-sound/mpg123-1.12.2 ) musepack? ( media-sound/musepack-tools ) network? ( >=media-libs/libshout-2 !lame? ( !vorbis? ( media-libs/libvorbis ) ) ) ogg? ( media-libs/libogg ) openal? ( media-libs/openal ) pulseaudio? ( media-sound/pulseaudio ) sid? ( media-libs/libsidplay:2 ) sndfile? ( media-libs/libsndfile ) soundcloud? ( >=dev-libs/yajl-2 ) soup? ( net-libs/libsoup:2.4 ) sqlite? ( dev-db/sqlite:3 ) systemd? ( sys-apps/systemd ) tcpd? ( sys-apps/tcp-wrappers ) twolame? ( media-sound/twolame ) vorbis? ( media-libs/libvorbis ) wavpack? ( media-sound/wavpack ) wildmidi? ( media-sound/wildmidi ) zeroconf? ( net-dns/avahi[dbus] ) zip? ( dev-libs/zziplib ) +REQUIRED_USE=|| ( alsa ao fifo jack network openal oss pipe pulseaudio recorder ) || ( aac audiofile ffmpeg flac fluidsynth mad mikmod modplug mpg123 musepack ogg flac sid vorbis wavpack wildmidi ) network? ( || ( audiofile flac lame twolame vorbis ) ) recorder? ( || ( audiofile flac lame twolame vorbis ) ) lastfmradio? ( curl ) +SLOT=0 +SRC_URI=http://www.musicpd.org/download/mpd/0.17/mpd-0.17.4.tar.bz2 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b readme.gentoo 2705553a0f031d715b57878cc0d9bf64 systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=a2f8c56888b57680a8b08bae47cdca24 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 99857ea343cb..04bb614a1b86 100644 --- a/metadata/md5-cache/media-sound/puddletag-1.0.1-r1 +++ b/metadata/md5-cache/media-sound/puddletag-1.0.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 GPL-3 RDEPEND=>=dev-python/PyQt4-4.9.6-r2[python_targets_python2_7(-)?,-python_single_target_python2_7(-),svg] virtual/pyparsing[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=media-libs/mutagen-1.21[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/configobj-4.7.2-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] acoustid? ( >=media-libs/chromaprint-0.6 ) musicbrainz? ( >=dev-python/python-musicbrainz-0.7.4-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) cover? ( >=dev-python/imaging-1.1.7-r2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) quodlibet? ( >=media-sound/quodlibet-2.5[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) >=dev-python/sip-4.14.2-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/lxml-3.0.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/puddletag/puddletag-1.0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f516f28af12cbf69b0b6d860251378b8 diff --git a/metadata/md5-cache/media-sound/quimup-1.2.0 b/metadata/md5-cache/media-sound/quimup-1.2.0 deleted file mode 100644 index 7664a3a5e1ce..000000000000 --- a/metadata/md5-cache/media-sound/quimup-1.2.0 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=compile configure install prepare unpack -DEPEND=dev-qt/qtgui:4 >=media-libs/libmpdclient-2.2 -DESCRIPTION=A Qt4 client for the music player daemon (MPD) written in C++ -EAPI=3 -HOMEPAGE=http://mpd.wikia.com/wiki/Client:Quimup -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=dev-qt/qtgui:4 >=media-libs/libmpdclient-2.2 -SLOT=0 -SRC_URI=mirror://sourceforge/musicpd/quimup_1.2.0_source.tar.gz -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=a7bcbd087116bfa76c4026d0380c4bdf diff --git a/metadata/md5-cache/media-sound/quodlibet-2.5 b/metadata/md5-cache/media-sound/quodlibet-2.5 index 059c95f043d1..509507f35f32 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 ) SLOT=0 SRC_URI=http://quodlibet.googlecode.com/files/quodlibet-2.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c292358bd2dab4d9ee57219a856e14c7 diff --git a/metadata/md5-cache/media-sound/scmpc-0.4.0 b/metadata/md5-cache/media-sound/scmpc-0.4.0 deleted file mode 100644 index e6ad3740379d..000000000000 --- a/metadata/md5-cache/media-sound/scmpc-0.4.0 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=install -DEPEND=dev-libs/glib:2 dev-libs/confuse media-libs/libmpdclient net-misc/curl virtual/pkgconfig -DESCRIPTION=a client for MPD which submits your tracks to last.fm -EAPI=4 -HOMEPAGE=http://cmende.github.com/scmpc/ -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=dev-libs/glib:2 dev-libs/confuse media-libs/libmpdclient net-misc/curl -SLOT=0 -SRC_URI=mirror://github/cmende/scmpc/scmpc-0.4.0.tar.bz2 -_md5_=42053349ef6de8df34a73b6420772950 diff --git a/metadata/md5-cache/media-sound/spotify-0.8.8.323-r1 b/metadata/md5-cache/media-sound/spotify-0.8.8.323-r1 index e4a510644f78..ea46d385f58c 100644 --- a/metadata/md5-cache/media-sound/spotify-0.8.8.323-r1 +++ b/metadata/md5-cache/media-sound/spotify-0.8.8.323-r1 @@ -9,5 +9,5 @@ RDEPEND=x11-libs/libxcb x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/ RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://repository.spotify.com/pool/non-free/s/spotify/spotify-client_0.8.8.323.gd143501.250-1_i386.deb ) amd64? ( http://repository.spotify.com/pool/non-free/s/spotify/spotify-client_0.8.8.323.gd143501.250-1_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c8bae59ffbf006eba23a39422f414dab diff --git a/metadata/md5-cache/media-sound/spotify-0.8.8.323-r2 b/metadata/md5-cache/media-sound/spotify-0.8.8.323-r2 index b7efa8ef85e6..277a5e64f6bd 100644 --- a/metadata/md5-cache/media-sound/spotify-0.8.8.323-r2 +++ b/metadata/md5-cache/media-sound/spotify-0.8.8.323-r2 @@ -9,5 +9,5 @@ RDEPEND=x11-libs/libxcb x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/ RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://repository.spotify.com/pool/non-free/s/spotify/spotify-client_0.8.8.323.gd143501.250-1_i386.deb ) amd64? ( http://repository.spotify.com/pool/non-free/s/spotify/spotify-client_0.8.8.323.gd143501.250-1_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=67cb0587dad5799788a587ec825f91ab diff --git a/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.10 b/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.10 index ec5d4b393f26..174f3f2a0288 100644 --- a/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.10 +++ b/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.10 @@ -8,5 +8,5 @@ RDEPEND=dev-qt/qtgui:4[accessibility,xinerama] dev-qt/qtsql:4 RESTRICT=mirror strip SLOT=0 SRC_URI=amd64? ( http://ftp.4players.de/pub/hosted/ts3/releases/3.0.10/TeamSpeak3-Client-linux_amd64-3.0.10.run ) x86? ( http://ftp.4players.de/pub/hosted/ts3/releases/3.0.10/TeamSpeak3-Client-linux_x86-3.0.10.run ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3967b3fcb03b2e389ee3ba5ac867cd35 diff --git a/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.9.2 b/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.9.2 index df9af446fdf1..92846e289752 100644 --- a/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.9.2 +++ b/metadata/md5-cache/media-sound/teamspeak-client-bin-3.0.9.2 @@ -8,5 +8,5 @@ RDEPEND=dev-qt/qtgui:4[accessibility,xinerama] dev-qt/qtsql:4 RESTRICT=mirror strip SLOT=0 SRC_URI=amd64? ( http://ftp.4players.de/pub/hosted/ts3/releases/3.0.9.2/TeamSpeak3-Client-linux_amd64-3.0.9.2.run ) x86? ( http://ftp.4players.de/pub/hosted/ts3/releases/3.0.9.2/TeamSpeak3-Client-linux_x86-3.0.9.2.run ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d68f0af1a10417af92acb21f4b3a7fd9 diff --git a/metadata/md5-cache/media-sound/vimpc-0.04 b/metadata/md5-cache/media-sound/vimpc-0.04 deleted file mode 100644 index 14a42c593b86..000000000000 --- a/metadata/md5-cache/media-sound/vimpc-0.04 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=dev-libs/libpcre[cxx] media-libs/libmpdclient virtual/pkgconfig -DESCRIPTION=An ncurses based mpd client with vi like key bindings. -EAPI=4 -HOMEPAGE=http://vimpc.sourceforge.net/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-libs/libpcre[cxx] media-libs/libmpdclient -SLOT=0 -SRC_URI=mirror://sourceforge/project/vimpc/Release%200.04/vimpc-0.04.tar.gz -_md5_=d48e756cac034d87342644318a648fee diff --git a/metadata/md5-cache/media-sound/vimpc-0.05 b/metadata/md5-cache/media-sound/vimpc-0.05 deleted file mode 100644 index eaa4f57db07f..000000000000 --- a/metadata/md5-cache/media-sound/vimpc-0.05 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=dev-libs/libpcre[cxx] media-libs/libmpdclient virtual/pkgconfig -DESCRIPTION=An ncurses based mpd client with vi like key bindings. -EAPI=4 -HOMEPAGE=http://vimpc.sourceforge.net/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-libs/libpcre[cxx] media-libs/libmpdclient -SLOT=0 -SRC_URI=mirror://sourceforge/project/vimpc/Release%200.05/vimpc-0.05.tar.gz -_md5_=51f64e78eef433505befcece46a20423 diff --git a/metadata/md5-cache/media-sound/vimpc-0.06.1 b/metadata/md5-cache/media-sound/vimpc-0.06.1 deleted file mode 100644 index 7c78c8df2ccd..000000000000 --- a/metadata/md5-cache/media-sound/vimpc-0.06.1 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=configure install -DEPEND=dev-libs/libpcre[cxx] media-libs/libmpdclient virtual/pkgconfig -DESCRIPTION=An ncurses based mpd client with vi like key bindings. -EAPI=4 -HOMEPAGE=http://vimpc.sourceforge.net/ -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=dev-libs/libpcre[cxx] media-libs/libmpdclient -SLOT=0 -SRC_URI=mirror://sourceforge/project/vimpc/Release%200.06.1/vimpc-0.06.1.tar.gz -_md5_=216d2813a4b9dc8fa6ad832da4a76937 diff --git a/metadata/md5-cache/media-sound/vimpc-0.07.2 b/metadata/md5-cache/media-sound/vimpc-0.07.2 index 0dbc06dbfd4b..8ce800fb00bd 100644 --- a/metadata/md5-cache/media-sound/vimpc-0.07.2 +++ b/metadata/md5-cache/media-sound/vimpc-0.07.2 @@ -3,9 +3,9 @@ DEPEND=dev-libs/libpcre[cxx] media-libs/libmpdclient virtual/pkgconfig DESCRIPTION=An ncurses based mpd client with vi like key bindings. EAPI=4 HOMEPAGE=http://vimpc.sourceforge.net/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-libs/libpcre[cxx] media-libs/libmpdclient SLOT=0 SRC_URI=mirror://sourceforge/project/vimpc/Release%200.07.2/vimpc-0.07.2.tar.gz -_md5_=7e9ddb974fadc3fe27cc46b60e7aabf8 +_md5_=52ceab923fec917d838623fb7816722b diff --git a/metadata/md5-cache/media-tv/huludesktop-0.9.8-r1 b/metadata/md5-cache/media-tv/huludesktop-0.9.8-r1 index d78c3a541c17..59b3e9a29f37 100644 --- a/metadata/md5-cache/media-tv/huludesktop-0.9.8-r1 +++ b/metadata/md5-cache/media-tv/huludesktop-0.9.8-r1 @@ -9,5 +9,5 @@ RDEPEND=sys-libs/glibc www-plugins/adobe-flash !amd64? ( sys-libs/zlib x11-libs/ RESTRICT=mirror SLOT=0 SRC_URI=amd64? ( http://download.hulu.com/huludesktop_amd64.deb -> huludesktop-0.9.8_amd64.deb ) x86? ( http://download.hulu.com/huludesktop_i386.deb -> huludesktop-0.9.8_i386.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=552c2182f379c327d907f5ce04ecf207 diff --git a/metadata/md5-cache/media-tv/livestation-3.2.0 b/metadata/md5-cache/media-tv/livestation-3.2.0 index 57d998b799c3..446794e35640 100644 --- a/metadata/md5-cache/media-tv/livestation-3.2.0 +++ b/metadata/md5-cache/media-tv/livestation-3.2.0 @@ -7,5 +7,5 @@ RDEPEND=amd64? ( >=app-emulation/emul-linux-x86-baselibs-20110101 >=app-emulatio RESTRICT=mirror SLOT=0 SRC_URI=http://updates.livestation.com/releases/Livestation-3.2.0-i386.run -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dfe4cfc28893f82fca0764adc7e83dfc diff --git a/metadata/md5-cache/media-video/arista-0.9.7 b/metadata/md5-cache/media-video/arista-0.9.7 index e359f83973db..fa6b00cdb3db 100644 --- a/metadata/md5-cache/media-video/arista-0.9.7 +++ b/metadata/md5-cache/media-video/arista-0.9.7 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=>=x11-libs/gtk+-2.16:2 >=dev-python/pygtk-2.16:2[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/pycairo[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/gconf-python:2 dev-python/dbus-python[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/python-gudev gnome-base/librsvg >=media-libs/gstreamer-0.10.22:0.10 dev-python/gst-python:0.10[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] media-libs/gst-plugins-base:0.10 media-libs/gst-plugins-good:0.10 media-libs/gst-plugins-bad:0.10 media-plugins/gst-plugins-meta:0.10 media-plugins/gst-plugins-ffmpeg:0.10 x11-themes/gnome-icon-theme nautilus? ( dev-python/nautilus-python ) kde? ( dev-python/librsvg-python ) faac? ( media-plugins/gst-plugins-faac:0.10 ) x264? ( media-plugins/gst-plugins-x264:0.10 ) xvid? ( media-plugins/gst-plugins-xvid:0.10 ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python: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(-)] SLOT=0 SRC_URI=http://programmer-art.org/media/releases/arista-transcoder/arista-0.9.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 l10n 33bde4fb0cfd3a21a277b66bfd837e19 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e53fcbcab5ccea64e2479cf5a7c2a7d4 diff --git a/metadata/md5-cache/media-video/dvdauthor-0.7.1 b/metadata/md5-cache/media-video/dvdauthor-0.7.1 index 9c1c9eb07ffe..5e4ef5face11 100644 --- a/metadata/md5-cache/media-video/dvdauthor-0.7.1 +++ b/metadata/md5-cache/media-video/dvdauthor-0.7.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure prepare -DEPEND=>=dev-libs/fribidi-0.19.2 dev-libs/libxml2 >=media-libs/freetype-2 media-libs/libdvdread media-libs/libpng graphicsmagick? ( media-gfx/graphicsmagick ) !graphicsmagick? ( >=media-gfx/imagemagick-5.5.7.14 ) virtual/pkgconfig +DEPEND=>=dev-libs/fribidi-0.19.2 dev-libs/libxml2 >=media-libs/freetype-2 media-libs/libdvdread media-libs/libpng:0= graphicsmagick? ( media-gfx/graphicsmagick ) !graphicsmagick? ( >=media-gfx/imagemagick-5.5.7.14 ) virtual/pkgconfig DESCRIPTION=Tools for generating DVD files to be played on standalone DVD players -EAPI=4 +EAPI=5 HOMEPAGE=http://dvdauthor.sourceforge.net/ IUSE=graphicsmagick KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=>=dev-libs/fribidi-0.19.2 dev-libs/libxml2 >=media-libs/freetype-2 media-libs/libdvdread media-libs/libpng graphicsmagick? ( media-gfx/graphicsmagick ) !graphicsmagick? ( >=media-gfx/imagemagick-5.5.7.14 ) +RDEPEND=>=dev-libs/fribidi-0.19.2 dev-libs/libxml2 >=media-libs/freetype-2 media-libs/libdvdread media-libs/libpng:0= graphicsmagick? ( media-gfx/graphicsmagick ) !graphicsmagick? ( >=media-gfx/imagemagick-5.5.7.14 ) SLOT=0 SRC_URI=mirror://sourceforge/dvdauthor/dvdauthor-0.7.1.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=c0df304163d489de308a4d94f11baa3e +_md5_=66d5aebc11347ad73da085b2c8d03ce6 diff --git a/metadata/md5-cache/net-analyzer/dnstracer-1.8 b/metadata/md5-cache/net-analyzer/dnstracer-1.8 deleted file mode 100644 index c2cc4bf8e522..000000000000 --- a/metadata/md5-cache/net-analyzer/dnstracer-1.8 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile install -DESCRIPTION=Determines where a given nameserver gets its information from -HOMEPAGE=http://www.mavetju.org/unix/general.php -IUSE=ipv6 -KEYWORDS=amd64 arm hppa ia64 ~ppc ppc64 s390 sparc x86 -LICENSE=BSD-2 -SLOT=0 -SRC_URI=http://www.mavetju.org/download/dnstracer-1.8.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=8ce6c3916f46ab010a7950e32dfee55d diff --git a/metadata/md5-cache/net-analyzer/dnstracer-1.9 b/metadata/md5-cache/net-analyzer/dnstracer-1.9 deleted file mode 100644 index 45963004dca0..000000000000 --- a/metadata/md5-cache/net-analyzer/dnstracer-1.9 +++ /dev/null @@ -1,10 +0,0 @@ -DEFINED_PHASES=compile install -DESCRIPTION=Determines where a given nameserver gets its information from -HOMEPAGE=http://www.mavetju.org/unix/general.php -IUSE=ipv6 -KEYWORDS=amd64 arm hppa ia64 ~ppc ppc64 s390 sparc x86 -LICENSE=BSD-2 -SLOT=0 -SRC_URI=http://www.mavetju.org/download/dnstracer-1.9.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=8d655bb6128d2e9d65e1ceebf0b2b34d diff --git a/metadata/md5-cache/net-analyzer/dnstracer-1.9-r1 b/metadata/md5-cache/net-analyzer/dnstracer-1.9-r1 index 735d97354306..bacd182aa946 100644 --- a/metadata/md5-cache/net-analyzer/dnstracer-1.9-r1 +++ b/metadata/md5-cache/net-analyzer/dnstracer-1.9-r1 @@ -3,8 +3,8 @@ DESCRIPTION=Determines where a given nameserver gets its information from EAPI=5 HOMEPAGE=http://www.mavetju.org/unix/general.php IUSE=ipv6 -KEYWORDS=~amd64 ~amd64-linux ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 +KEYWORDS=amd64 arm hppa ia64 ~ppc ppc64 s390 sparc x86 ~amd64-linux LICENSE=BSD-2 SLOT=0 SRC_URI=http://www.mavetju.org/download/dnstracer-1.9.tar.gz -_md5_=46158a035b70ebb21e518b2a98bb61ca +_md5_=b76f3d564473409b337ab0bce6b1b46a diff --git a/metadata/md5-cache/net-analyzer/linkchecker-8.3 b/metadata/md5-cache/net-analyzer/linkchecker-8.3 index 175430258cf9..3473ddf7aa5a 100644 --- a/metadata/md5-cache/net-analyzer/linkchecker-8.3 +++ b/metadata/md5-cache/net-analyzer/linkchecker-8.3 @@ -10,5 +10,5 @@ RDEPEND=dev-python/dnspython bash-completion? ( dev-python/optcomplete ) clamav? RESTRICT=test SLOT=0 SRC_URI=mirror://github/downloads/wummel/linkchecker/LinkChecker-8.3.tar.xz -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2e873bedc6d858994b17382d416dea79 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 79ffb32e6bde..73c48c9c5297 100644 --- a/metadata/md5-cache/net-analyzer/rrdtool-1.4.7-r2 +++ b/metadata/md5-cache/net-analyzer/rrdtool-1.4.7-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.28.7[static-libs(+)?] >=dev-libs/libxml2-2.7.8[static-libs(+)?] dbi? ( dev-db/libdbi[static-libs(+)?] ) graph? ( >=media-libs/libpng-1.5.10[static-libs(+)?] >=x11-libs/cairo-1.10.2[svg,static-libs(+)?] >=x11-libs/pango-1.28 ) lua? ( dev-lang/lua[deprecated] ) perl? ( dev-lang/perl ) python? ( python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) ruby? ( >=dev-lang/ruby-1.8.6_p287-r13 ) tcl? ( dev-lang/tcl ) tcpd? ( sys-apps/tcp-wrappers ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.7.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8d41cd9b6ec9a99f47e3cbdb957dcbb1 diff --git a/metadata/md5-cache/net-analyzer/snort-2.9.2.3-r1 b/metadata/md5-cache/net-analyzer/snort-2.9.2.3-r1 new file mode 100644 index 000000000000..73c4d51cc1ce --- /dev/null +++ b/metadata/md5-cache/net-analyzer/snort-2.9.2.3-r1 @@ -0,0 +1,14 @@ +DEFINED_PHASES=configure install postinst prepare setup +DEPEND=>=net-libs/libpcap-1.0.0 >=net-libs/daq-0.6 >=dev-libs/libpcre-6.0 dev-libs/libdnet postgres? ( dev-db/postgresql-base ) mysql? ( virtual/mysql ) odbc? ( dev-db/unixODBC ) zlib? ( sys-libs/zlib ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=The de facto standard for intrusion detection/prevention +EAPI=5 +HOMEPAGE=http://www.snort.org/ +IUSE=static +dynamicplugin +zlib +gre +mpls +targetbased +decoder-preprocessor-rules +ppm +perfprofiling linux-smp-stats inline-init-failopen +threads debug +active-response +normalizer reload-error-restart +react +flexresp3 +paf large-pcap-64bit aruba mysql odbc postgres selinux +KEYWORDS=~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 +LICENSE=GPL-2 +RDEPEND=>=net-libs/libpcap-1.0.0 >=net-libs/daq-0.6 >=dev-libs/libpcre-6.0 dev-libs/libdnet postgres? ( dev-db/postgresql-base ) mysql? ( virtual/mysql ) odbc? ( dev-db/unixODBC ) zlib? ( sys-libs/zlib ) selinux? ( sec-policy/selinux-snort ) +REQUIRED_USE=zlib? ( dynamicplugin ) +SLOT=0 +SRC_URI=http://www.snort.org/dl/snort-current/snort-2.9.2.3.tar.gz +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=df0e8c5131838d0a1c7e9fbcec528741 diff --git a/metadata/md5-cache/net-dns/bind-9.9.2_p2 b/metadata/md5-cache/net-dns/bind-9.9.2_p2 index 254abe7e4077..605ef78e1a98 100644 --- a/metadata/md5-cache/net-dns/bind-9.9.2_p2 +++ b/metadata/md5-cache/net-dns/bind-9.9.2_p2 @@ -4,11 +4,11 @@ DESCRIPTION=BIND - Berkeley Internet Name Domain - Name Server EAPI=4 HOMEPAGE=http://www.isc.org/software/bind IUSE=berkdb caps dlz doc filter-aaaa geoip gost gssapi idn ipv6 ldap mysql odbc postgres python rpz rrl sdb-ldap selinux ssl static-libs threads urandom xml -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=ISC BSD BSD-2 HPND JNIC openssl RDEPEND=ssl? ( >=dev-libs/openssl-0.9.6g ) mysql? ( >=virtual/mysql-4.0 ) odbc? ( >=dev-db/unixODBC-2.2.6 ) ldap? ( net-nds/openldap ) idn? ( net-dns/idnkit ) postgres? ( dev-db/postgresql-base ) caps? ( >=sys-libs/libcap-2.1.0 ) xml? ( dev-libs/libxml2 ) geoip? ( >=dev-libs/geoip-1.4.6 ) gssapi? ( virtual/krb5 ) sdb-ldap? ( net-nds/openldap ) gost? ( >=dev-libs/openssl-1.0.0[-bindist] ) python? ( virtual/python-argparse ) selinux? ( sec-policy/selinux-bind ) || ( sys-process/psmisc >=sys-freebsd/freebsd-ubin-9.0_rc sys-process/fuser-bsd ) python? ( || ( =dev-lang/python-3* =dev-lang/python-2.7* ) ) REQUIRED_USE=postgres? ( dlz ) berkdb? ( dlz ) mysql? ( dlz !threads ) odbc? ( dlz ) ldap? ( dlz ) sdb-ldap? ( dlz ) gost? ( ssl ) threads? ( caps ) SLOT=0 SRC_URI=ftp://ftp.isc.org/isc/bind9/9.9.2-P2/bind-9.9.2-P2.tar.gz doc? ( mirror://gentoo/dyndns-samples.tbz2 ) geoip? ( http://bind-geoip.googlecode.com//files/bind-geoip-1.3-readme.txt http://bind-geoip.googlecode.com//files/bind-9.9.2-geoip-1.3.patch ) sdb-ldap? ( http://ftp.disconnected-by-peer.at/pub/bind-sdb-ldap-1.1.0-fc14.patch.bz2 ) rrl? ( http://ss.vix.su/~vjs/rl-9.9.2-P2.patch ) _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 db-use 2f5d6a2718559b90a51648d8ff58be83 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=23278bbe907c5c0e39ef5c03e9ed3ae0 +_md5_=2c35ca4ec0ff99580dc57418f7553bd4 diff --git a/metadata/md5-cache/net-dns/dnswalk-2.0.2 b/metadata/md5-cache/net-dns/dnswalk-2.0.2 index bcffd6cb990e..885d1e14dc46 100644 --- a/metadata/md5-cache/net-dns/dnswalk-2.0.2 +++ b/metadata/md5-cache/net-dns/dnswalk-2.0.2 @@ -1,10 +1,10 @@ DEFINED_PHASES=install prepare -DEPEND=>=dev-perl/Net-DNS-0.12 DESCRIPTION=dnswalk is a DNS database debugger EAPI=4 HOMEPAGE=http://sourceforge.net/projects/dnswalk/ KEYWORDS=amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~x86-macos -LICENSE=as-is +LICENSE=freedist +RDEPEND=>=dev-perl/Net-DNS-0.12 SLOT=0 SRC_URI=mirror://sourceforge/dnswalk/dnswalk-2.0.2.tar.gz -_md5_=cd24f591832844a2406689d5437fed0a +_md5_=02246fa7bd4351a2293f9bc9557601a4 diff --git a/metadata/md5-cache/net-fs/cifs-utils-5.9-r1 b/metadata/md5-cache/net-fs/cifs-utils-5.9-r1 index 4532b57ba081..fbbed0185bc7 100644 --- a/metadata/md5-cache/net-fs/cifs-utils-5.9-r1 +++ b/metadata/md5-cache/net-fs/cifs-utils-5.9-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Tools for Managing Linux CIFS Client Filesystems EAPI=4 HOMEPAGE=http://wiki.samba.org/index.php/LinuxCIFS_utils IUSE=ads +caps caps-ng creds upcall -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux LICENSE=GPL-3 RDEPEND=!net-fs/mount-cifs !=dev-libs/libmemcached-0.41 ) mysql? ( virtual/mysql ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses ) openssl? ( dev-libs/openssl ) pam? ( virtual/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql-base ) sqlite? ( dev-db/sqlite:3 ) xinetd? ( virtual/inetd ) test? ( dev-libs/check ) +DESCRIPTION=An advanced and very configurable FTP server. +EAPI=5 +HOMEPAGE=http://www.proftpd.org/ http://www.castaglia.org/proftpd/ http://www.thrallingpenguin.com/resources/mod_clamav.htm http://gssmod.sourceforge.net/ +IUSE=acl authfile ban +caps case clamav copy ctrls deflate diskuse doc dso dynmasq exec ifsession ifversion ident ipv6 kerberos ldap linguas_bg_BG linguas_en_US linguas_fr_FR linguas_it_IT linguas_ja_JP linguas_ko_KR linguas_ru_RU linguas_zh_CN linguas_zh_TW memcache msg mysql ncurses nls openssl pam +pcre postgres qos radius ratio readme rewrite selinux sftp shaper sitemisc softquota sqlite ssl tcpd test trace vroot xinetd +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +LICENSE=GPL-2 +RDEPEND=acl? ( virtual/acl ) caps? ( sys-libs/libcap ) clamav? ( app-antivirus/clamav ) kerberos? ( virtual/krb5 ) ldap? ( net-nds/openldap ) memcache? ( >=dev-libs/libmemcached-0.41 ) mysql? ( virtual/mysql ) nls? ( virtual/libiconv ) ncurses? ( sys-libs/ncurses ) openssl? ( dev-libs/openssl ) pam? ( virtual/pam ) pcre? ( dev-libs/libpcre ) postgres? ( dev-db/postgresql-base ) sqlite? ( dev-db/sqlite:3 ) xinetd? ( virtual/inetd ) net-ftp/ftpbase selinux? ( sec-policy/selinux-ftp ) +REQUIRED_USE=ban? ( ctrls ) msg? ( ctrls ) sftp? ( openssl ) shaper? ( ctrls ) ssl? ( openssl ) +SLOT=0 +SRC_URI=ftp://ftp.proftpd.org/distrib/source/proftpd-1.3.4c.tar.gz case? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-case-0.7.tar.gz ) clamav? ( https://secure.thrallingpenguin.com/redmine/attachments/download/1/mod_clamav-0.11rc.tar.gz ) diskuse? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-diskuse-0.9.tar.gz ) kerberos? ( mirror://sourceforge/gssmod/mod_gss-1.3.3.tar.gz ) msg? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-msg-0.4.1.tar.gz ) vroot? ( http://www.castaglia.org/proftpd/modules/proftpd-mod-vroot-0.9.2.tar.gz ) +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=5b84af1c99f2b4ad564bafb1366ece1c diff --git a/metadata/md5-cache/net-im/skype-2.2.0.35-r99 b/metadata/md5-cache/net-im/skype-2.2.0.35-r99 index a097f5df325e..b7ec7ee17cca 100644 --- a/metadata/md5-cache/net-im/skype-2.2.0.35-r99 +++ b/metadata/md5-cache/net-im/skype-2.2.0.35-r99 @@ -10,5 +10,5 @@ RDEPEND=amd64? ( >=app-emulation/emul-linux-x86-baselibs-20120520 >=app-emulatio RESTRICT=mirror strip SLOT=0 SRC_URI=qt-static? ( http://download.skype.com/linux/skype_static-2.2.0.99.tar.bz2 ) !qt-static? ( http://download.skype.com/linux/skype-2.2.0.35.tar.bz2 ) -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 qt4-r2 f735f67b3de93a007dbdec708b481831 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=89e9cfe9cc41c96557c6e7e91c5dfcc5 diff --git a/metadata/md5-cache/net-im/skype-4.0.0.8-r1 b/metadata/md5-cache/net-im/skype-4.0.0.8-r1 index c8edbed1f351..6c720cd70fd0 100644 --- a/metadata/md5-cache/net-im/skype-4.0.0.8-r1 +++ b/metadata/md5-cache/net-im/skype-4.0.0.8-r1 @@ -10,5 +10,5 @@ RDEPEND=virtual/ttf-fonts amd64? ( >=app-emulation/emul-linux-x86-baselibs-20120 RESTRICT=mirror strip SLOT=0 SRC_URI=!qt-static? ( http://download.skype.com/linux/skype-4.0.0.8.tar.bz2 ) qt-static? ( http://download.skype.com/linux/skype_static-4.0.0.8.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f4ffad2fb9dccfbdfe3d4d6b30d31cb2 diff --git a/metadata/md5-cache/net-im/skype-4.1.0.20 b/metadata/md5-cache/net-im/skype-4.1.0.20 index f7ba2e5f0eec..e62621b8c652 100644 --- a/metadata/md5-cache/net-im/skype-4.1.0.20 +++ b/metadata/md5-cache/net-im/skype-4.1.0.20 @@ -10,5 +10,5 @@ RDEPEND=virtual/ttf-fonts amd64? ( >=app-emulation/emul-linux-x86-baselibs-20120 RESTRICT=mirror strip SLOT=0 SRC_URI=http://download.skype.com/linux/skype-4.1.0.20.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=857fea6ab489e2d536858a157dcdf8f2 diff --git a/metadata/md5-cache/net-irc/quassel-0.8.0 b/metadata/md5-cache/net-irc/quassel-0.8.0 index c72042a34ddf..3c0720a3e2db 100644 --- a/metadata/md5-cache/net-irc/quassel-0.8.0 +++ b/metadata/md5-cache/net-irc/quassel-0.8.0 @@ -10,5 +10,5 @@ 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 SRC_URI=http://quassel-irc.org/pub/quassel-0.8.0.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=58c3141877f54ec6a393dc4ac09b9876 diff --git a/metadata/md5-cache/net-irc/quassel-9999 b/metadata/md5-cache/net-irc/quassel-9999 index c4a5ac431e98..ad09942bc8ed 100644 --- a/metadata/md5-cache/net-irc/quassel-9999 +++ b/metadata/md5-cache/net-irc/quassel-9999 @@ -8,5 +8,5 @@ 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 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=bff9a163d06f4d359116609fb0d8a209 diff --git a/metadata/md5-cache/net-libs/courier-authlib-0.65.0-r3 b/metadata/md5-cache/net-libs/courier-authlib-0.65.0-r3 index 5d17e7923684..e7326ea7ed26 100644 --- a/metadata/md5-cache/net-libs/courier-authlib-0.65.0-r3 +++ b/metadata/md5-cache/net-libs/courier-authlib-0.65.0-r3 @@ -4,7 +4,7 @@ DESCRIPTION=Courier authentication library. EAPI=4 HOMEPAGE=http://www.courier-mta.org/ IUSE=berkdb crypt debug gdbm ldap mysql pam postgres sqlite static-libs vpopmail -KEYWORDS=alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=GPL-3 RDEPEND=gdbm? ( sys-libs/gdbm ) !gdbm? ( sys-libs/db ) REQUIRED_USE=( !vpopmail ) @@ -12,4 +12,4 @@ RESTRICT=userpriv !berkdb? ( test ) SLOT=0 SRC_URI=mirror://sourceforge/courier/courier-authlib-0.65.0.tar.bz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=77abe71d7ddfdfac56eb34eb0b0b35e1 +_md5_=84fd6b326c141384c871e0f22ca98bf0 diff --git a/metadata/md5-cache/net-libs/dslib-3.0-r1 b/metadata/md5-cache/net-libs/dslib-3.0-r1 index 2ae5e5ae9fae..b5d4011e3a63 100644 --- a/metadata/md5-cache/net-libs/dslib-3.0-r1 +++ b/metadata/md5-cache/net-libs/dslib-3.0-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/pyasn1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyopenssl[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/sudsds-1.0.1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://www.nic.cz/public_media/datove_schranky/releases//src/dslib-3.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=728eb2998eb225c20f61ab7c43bbbe2f diff --git a/metadata/md5-cache/net-libs/libcapi-3.0.7 b/metadata/md5-cache/net-libs/libcapi-3.0.7 new file mode 100644 index 000000000000..f8697bcdc581 --- /dev/null +++ b/metadata/md5-cache/net-libs/libcapi-3.0.7 @@ -0,0 +1,11 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=|| ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=CAPI library used by AVM products +EAPI=5 +HOMEPAGE=http://www.tabos.org/ffgtk +KEYWORDS=~amd64 ~x86 +LICENSE=GPL-2 LGPL-2 +SLOT=0 +SRC_URI=http://www.tabos.org/ffgtk/download/libcapi20-3.0.7.tar.bz2 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=421141bc2356245211960eb5b534ecf1 diff --git a/metadata/md5-cache/net-libs/libgadu-1.11.2 b/metadata/md5-cache/net-libs/libgadu-1.11.2 index 93a3cd5f8bcd..bcdfb3ea67a7 100644 --- a/metadata/md5-cache/net-libs/libgadu-1.11.2 +++ b/metadata/md5-cache/net-libs/libgadu-1.11.2 @@ -1,7 +1,7 @@ DEFINED_PHASES=compile configure install prepare test DEPEND=sys-libs/zlib ssl? ( gnutls? ( net-libs/gnutls ) !gnutls? ( >=dev-libs/openssl-0.9.6m ) ) doc? ( app-doc/doxygen ) DESCRIPTION=This library implements the client side of the Gadu-Gadu protocol -EAPI=4 +EAPI=5 HOMEPAGE=http://toxygen.net/libgadu/ IUSE=doc gnutls ssl static-libs threads KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos @@ -12,4 +12,4 @@ RESTRICT=test SLOT=0 SRC_URI=http://toxygen.net/libgadu/files/libgadu-1.11.2.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ad1df50f6c6a23684018013686d69487 +_md5_=3918360391b6fdad22cc53b20c978e78 diff --git a/metadata/md5-cache/net-libs/libgrss-0.3.0 b/metadata/md5-cache/net-libs/libgrss-0.3.0 index e81ba9780f8a..c2557f40edbe 100644 --- a/metadata/md5-cache/net-libs/libgrss-0.3.0 +++ b/metadata/md5-cache/net-libs/libgrss-0.3.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=>=dev-libs/glib-2.22.2:2 >=dev-libs/libxml2-2.7.4:2 >=net-libs/libsoup-2.28.1:2.4 virtual/pkgconfig sys-devel/gettext dev-util/intltool doc? ( dev-util/gtk-doc ) gnome-base/gnome-common sys-devel/autoconf:2.5 sys-devel/automake:1.10 sys-devel/libtool >=sys-apps/sed-4 +DEPEND=>=dev-libs/glib-2.22.2:2 >=dev-libs/libxml2-2.7.4:2 >=net-libs/libsoup-2.28.1:2.4 app-text/gnome-doc-utils >=dev-util/gtk-doc-am-1.10 dev-util/intltool sys-devel/gettext virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool app-arch/xz-utils >=sys-apps/sed-4 DESCRIPTION=LibGRSS is a library for easy management of RSS/Atom/Pie feeds -EAPI=3 +EAPI=5 HOMEPAGE=http://live.gnome.org/Libgrss -IUSE=doc examples debug +IUSE=examples debug KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=LGPL-3 RDEPEND=>=dev-libs/glib-2.22.2:2 >=dev-libs/libxml2-2.7.4:2 >=net-libs/libsoup-2.28.1:2.4 SLOT=0 SRC_URI=http://gtk.mplat.es/libgrss/tarballs/libgrss-0.3.0.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b5f62a51718da8c4c72f999cd97c4da0 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=5314db042a71b0a7074a12f36b78247b diff --git a/metadata/md5-cache/net-libs/libgrss-0.5.0 b/metadata/md5-cache/net-libs/libgrss-0.5.0 index 5dc7eb07f52c..2762bbacc809 100644 --- a/metadata/md5-cache/net-libs/libgrss-0.5.0 +++ b/metadata/md5-cache/net-libs/libgrss-0.5.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=>=dev-libs/glib-2.30.2:2 >=dev-libs/libxml2-2.7.8:2 >=net-libs/libsoup-2.36.1:2.4 virtual/pkgconfig sys-devel/gettext dev-util/intltool doc? ( dev-util/gtk-doc ) gnome-base/gnome-common sys-devel/autoconf:2.5 sys-devel/automake:1.10 sys-devel/libtool app-arch/xz-utils >=sys-apps/sed-4 +DEPEND=>=dev-libs/glib-2.30.2:2 >=dev-libs/libxml2-2.7.8:2 >=net-libs/libsoup-2.36.1:2.4 app-text/gnome-doc-utils >=dev-util/gtk-doc-am-1.10 dev-util/intltool sys-devel/gettext virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool app-arch/xz-utils >=sys-apps/sed-4 DESCRIPTION=LibGRSS is a library for easy management of RSS/Atom/Pie feeds EAPI=5 HOMEPAGE=http://live.gnome.org/Libgrss -IUSE=doc examples debug +IUSE=examples debug KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=LGPL-3 RDEPEND=>=dev-libs/glib-2.30.2:2 >=dev-libs/libxml2-2.7.8:2 >=net-libs/libsoup-2.36.1:2.4 -SLOT=0 +SLOT=0.5 SRC_URI=http://gtk.mplat.es/libgrss/tarballs/libgrss-0.5.0.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=678fcb0d7f5719bf53928d87727557e5 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=47bf5bb6ff7903dd04dd7444f975c834 diff --git a/metadata/md5-cache/net-libs/libnet-1.2_rc1-r1 b/metadata/md5-cache/net-libs/libnet-1.2_rc2 similarity index 89% rename from metadata/md5-cache/net-libs/libnet-1.2_rc1-r1 rename to metadata/md5-cache/net-libs/libnet-1.2_rc2 index dba7195438d3..ae76a21100d8 100644 --- a/metadata/md5-cache/net-libs/libnet-1.2_rc1-r1 +++ b/metadata/md5-cache/net-libs/libnet-1.2_rc2 @@ -7,6 +7,6 @@ IUSE=doc static-libs KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos LICENSE=BSD BSD-2 HPND SLOT=1.1 -SRC_URI=mirror://sourceforge/project/libnet-dev/libnet-1.2-rc1.tar.gz +SRC_URI=mirror://sourceforge/project/libnet-dev/libnet-1.2-rc2.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=1f800e235501396e4e3baf452efcf464 +_md5_=ae33172bbd6af4f9222a6cf58219090a diff --git a/metadata/md5-cache/net-libs/liboauth-1.0.1 b/metadata/md5-cache/net-libs/liboauth-1.0.1 index 8075b405cebd..56a2470d9fae 100644 --- a/metadata/md5-cache/net-libs/liboauth-1.0.1 +++ b/metadata/md5-cache/net-libs/liboauth-1.0.1 @@ -11,4 +11,4 @@ REQUIRED_USE=bindist? ( nss ) SLOT=0 SRC_URI=mirror://sourceforge/project/liboauth/liboauth-1.0.1.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=facaa2a952d903276769b887afa292f3 +_md5_=2c620b803d4fc6995ba842f509711349 diff --git a/metadata/md5-cache/net-libs/libotr-3.2.1 b/metadata/md5-cache/net-libs/libotr-3.2.1 new file mode 100644 index 000000000000..eea2cd77644e --- /dev/null +++ b/metadata/md5-cache/net-libs/libotr-3.2.1 @@ -0,0 +1,11 @@ +DEFINED_PHASES=- +DEPEND=>=dev-libs/libgcrypt-1.2 dev-libs/libgpg-error +DESCRIPTION=(OTR) Messaging allows you to have private conversations over instant messaging +EAPI=5 +HOMEPAGE=http://www.cypherpunks.ca/otr/ +KEYWORDS=~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos +LICENSE=GPL-2 +RDEPEND=>=dev-libs/libgcrypt-1.2 dev-libs/libgpg-error +SLOT=0 +SRC_URI=http://www.cypherpunks.ca/otr/libotr-3.2.1.tar.gz +_md5_=23f20457c320a9b7155c3dd799a4b141 diff --git a/metadata/md5-cache/net-libs/nodejs-0.10.1 b/metadata/md5-cache/net-libs/nodejs-0.10.1 index 1d843a737b17..c7fce2e699b7 100644 --- a/metadata/md5-cache/net-libs/nodejs-0.10.1 +++ b/metadata/md5-cache/net-libs/nodejs-0.10.1 @@ -9,5 +9,5 @@ RDEPEND=dev-libs/openssl RESTRICT=test SLOT=0 SRC_URI=http://nodejs.org/dist/v0.10.1/node-v0.10.1.tar.gz -_eclasses_=multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_eclasses_=multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e _md5_=7125550340a6d1dd17e66fe8bbf0dd9b diff --git a/metadata/md5-cache/net-libs/nodejs-0.10.2 b/metadata/md5-cache/net-libs/nodejs-0.10.2 index e4054b4413ae..ed8f76feabc4 100644 --- a/metadata/md5-cache/net-libs/nodejs-0.10.2 +++ b/metadata/md5-cache/net-libs/nodejs-0.10.2 @@ -9,5 +9,5 @@ RDEPEND=dev-libs/openssl RESTRICT=test SLOT=0 SRC_URI=http://nodejs.org/dist/v0.10.2/node-v0.10.2.tar.gz -_eclasses_=multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_eclasses_=multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e _md5_=61924c28dc560b5b2bae4cb4219b1de9 diff --git a/metadata/md5-cache/net-libs/nodejs-0.10.3 b/metadata/md5-cache/net-libs/nodejs-0.10.3 index b25a7efab08e..cf07e968b15e 100644 --- a/metadata/md5-cache/net-libs/nodejs-0.10.3 +++ b/metadata/md5-cache/net-libs/nodejs-0.10.3 @@ -9,5 +9,5 @@ RDEPEND=dev-libs/openssl RESTRICT=test SLOT=0 SRC_URI=http://nodejs.org/dist/v0.10.3/node-v0.10.3.tar.gz -_eclasses_=multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_eclasses_=multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e _md5_=22b5d0f058bd4b189446f971a95835b5 diff --git a/metadata/md5-cache/net-libs/nodejs-0.11.0 b/metadata/md5-cache/net-libs/nodejs-0.11.0 new file mode 100644 index 000000000000..68f04c27a31e --- /dev/null +++ b/metadata/md5-cache/net-libs/nodejs-0.11.0 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=dev-libs/openssl virtual/python-json +DESCRIPTION=Evented IO for V8 Javascript +EAPI=5 +HOMEPAGE=http://nodejs.org/ +KEYWORDS=~amd64 ~arm ~x86 ~x64-macos +LICENSE=Apache-1.1 Apache-2.0 BSD BSD-2 MIT +RDEPEND=dev-libs/openssl +RESTRICT=test +SLOT=0 +SRC_URI=http://nodejs.org/dist/v0.11.0/node-v0.11.0.tar.gz +_eclasses_=multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=9384dcf946964cc07db7353b6e8daa2d diff --git a/metadata/md5-cache/net-libs/nodejs-0.8.21 b/metadata/md5-cache/net-libs/nodejs-0.8.21 index bd91980ca028..a6a2e7384b00 100644 --- a/metadata/md5-cache/net-libs/nodejs-0.8.21 +++ b/metadata/md5-cache/net-libs/nodejs-0.8.21 @@ -9,5 +9,5 @@ RDEPEND=dev-libs/openssl =dev-lang/python-2* RESTRICT=test SLOT=0 SRC_URI=http://nodejs.org/dist/v0.8.21/node-v0.8.21.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=780cb8ebf95a1252904ee3c99e3b9943 diff --git a/metadata/md5-cache/net-libs/nodejs-0.8.23 b/metadata/md5-cache/net-libs/nodejs-0.8.23 new file mode 100644 index 000000000000..1026f670378a --- /dev/null +++ b/metadata/md5-cache/net-libs/nodejs-0.8.23 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare setup test +DEPEND=dev-libs/openssl =dev-lang/python-2* +DESCRIPTION=Evented IO for V8 Javascript +EAPI=5 +HOMEPAGE=http://nodejs.org/ +KEYWORDS=~amd64 ~arm ~x86 ~x64-macos +LICENSE=GPL-2 +RDEPEND=dev-libs/openssl =dev-lang/python-2* +RESTRICT=test +SLOT=0 +SRC_URI=http://nodejs.org/dist/v0.8.23/node-v0.8.23.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=138687bd649956c97f8e9b1781bc5eab diff --git a/metadata/md5-cache/net-libs/telepathy-logger-qt-0.4.1 b/metadata/md5-cache/net-libs/telepathy-logger-qt-0.4.1 deleted file mode 100644 index a9e6962e55a2..000000000000 --- a/metadata/md5-cache/net-libs/telepathy-logger-qt-0.4.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=media-libs/qt-gstreamer >=net-im/telepathy-logger-0.2.12-r1 >=net-libs/telepathy-qt-0.9.1 =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.0:4[accessibility,dbus] >=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=Qt4 bindings for the Telepathy logger -EAPI=4 -HOMEPAGE=https://projects.kde.org/projects/kdereview/telepathy-logger-qt -IUSE=debug aqua -KEYWORDS=~amd64 ~x86 -LICENSE=LGPL-2.1 -RDEPEND=media-libs/qt-gstreamer >=net-im/telepathy-logger-0.2.12-r1 >=net-libs/telepathy-qt-0.9.1 >=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.0:4[accessibility,dbus] >=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=0 -SRC_URI=mirror://kde/unstable/kde-telepathy/0.4.1/src/telepathy-logger-qt-0.4.1.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=2cc73e5e67bcd325ac896c5266944fb0 diff --git a/metadata/md5-cache/net-libs/telepathy-logger-qt-0.5.0 b/metadata/md5-cache/net-libs/telepathy-logger-qt-0.5.0 deleted file mode 100644 index c33aa065ce0b..000000000000 --- a/metadata/md5-cache/net-libs/telepathy-logger-qt-0.5.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=media-libs/qt-gstreamer >=net-im/telepathy-logger-0.2.12-r1 >=net-libs/telepathy-qt-0.9.1 sys-devel/bison sys-devel/flex >=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.0:4[accessibility,dbus] >=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=Qt4 bindings for the Telepathy logger -EAPI=4 -HOMEPAGE=https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt -IUSE=debug aqua -KEYWORDS=~amd64 ~x86 -LICENSE=LGPL-2.1 -RDEPEND=media-libs/qt-gstreamer >=net-im/telepathy-logger-0.2.12-r1 >=net-libs/telepathy-qt-0.9.1 >=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.0:4[accessibility,dbus] >=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=0 -SRC_URI=mirror://kde/unstable/kde-telepathy/0.5.0/src/telepathy-logger-qt-0.5.0.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=fbd63e7cd7b8686fdc63477299b11667 diff --git a/metadata/md5-cache/net-libs/telepathy-logger-qt-0.5.0-r1 b/metadata/md5-cache/net-libs/telepathy-logger-qt-0.5.0-r1 deleted file mode 100644 index fd156dc7b1d1..000000000000 --- a/metadata/md5-cache/net-libs/telepathy-logger-qt-0.5.0-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=media-libs/qt-gstreamer >=net-im/telepathy-logger-0.2.12-r1 >=net-libs/telepathy-qt-0.9.1 sys-devel/bison sys-devel/flex >=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.0:4[accessibility,dbus] >=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=Qt4 bindings for the Telepathy logger -EAPI=4 -HOMEPAGE=https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt -IUSE=debug aqua -KEYWORDS=~amd64 ~x86 -LICENSE=LGPL-2.1 -RDEPEND=media-libs/qt-gstreamer >=net-im/telepathy-logger-0.2.12-r1 >=net-libs/telepathy-qt-0.9.1 >=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.0:4[accessibility,dbus] >=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=0 -SRC_URI=mirror://kde/unstable/kde-telepathy/0.5.0/src/telepathy-logger-qt-0.5.0.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=28a9fe8b3815b1adefdcfac38107a96c diff --git a/metadata/md5-cache/net-libs/webkit-gtk-1.10.2-r300 b/metadata/md5-cache/net-libs/webkit-gtk-1.10.2-r300 index 65cdb875d595..db15591c25ef 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-1.10.2-r300 +++ b/metadata/md5-cache/net-libs/webkit-gtk-1.10.2-r300 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libxml2:2 dev-libs/libxslt virtual/jpeg:= >=media-libs/libpng-1 REQUIRED_USE=introspection? ( geoloc gstreamer ) SLOT=3 SRC_URI=http://www.webkitgtk.org/releases/webkitgtk-1.10.2.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=0a60453eb77ed7f25769b41c05a6223e diff --git a/metadata/md5-cache/net-libs/webkit-gtk-1.8.3-r200 b/metadata/md5-cache/net-libs/webkit-gtk-1.8.3-r200 index 9f99a725c212..a5845a7064aa 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-1.8.3-r200 +++ b/metadata/md5-cache/net-libs/webkit-gtk-1.8.3-r200 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libxml2:2 dev-libs/libxslt virtual/jpeg >=media-libs/libpng-1.4 REQUIRED_USE=introspection? ( geoloc gstreamer ) SLOT=2 SRC_URI=http://www.webkitgtk.org/releases/webkit-1.8.3.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=e093fc8a4c66772b0b98d57cf6d6ba72 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-1.8.3-r300 b/metadata/md5-cache/net-libs/webkit-gtk-1.8.3-r300 index 60e8f63792eb..142fd211b825 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-1.8.3-r300 +++ b/metadata/md5-cache/net-libs/webkit-gtk-1.8.3-r300 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/libxml2:2 dev-libs/libxslt virtual/jpeg >=media-libs/libpng-1.4 REQUIRED_USE=introspection? ( geoloc gstreamer ) SLOT=3 SRC_URI=http://www.webkitgtk.org/releases/webkit-1.8.3.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=755ba8ded7f6563722bc3cff1ec23350 diff --git a/metadata/md5-cache/net-libs/webkit-gtk-2.0.0 b/metadata/md5-cache/net-libs/webkit-gtk-2.0.0 index a1eb82167ff8..bdd06d6c75f1 100644 --- a/metadata/md5-cache/net-libs/webkit-gtk-2.0.0 +++ b/metadata/md5-cache/net-libs/webkit-gtk-2.0.0 @@ -10,5 +10,5 @@ RDEPEND=app-crypt/libsecret dev-libs/libxml2:2 dev-libs/libxslt media-libs/harfb REQUIRED_USE=introspection? ( geoloc gstreamer ) SLOT=3/25 SRC_URI=http://www.webkitgtk.org/releases/webkitgtk-2.0.0.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=7697c55793d7825ff28de69f13cf8289 diff --git a/metadata/md5-cache/net-mail/automx-0.9.2 b/metadata/md5-cache/net-mail/automx-0.9.2 index 407214affae8..2e419a2a312f 100644 --- a/metadata/md5-cache/net-mail/automx-0.9.2 +++ b/metadata/md5-cache/net-mail/automx-0.9.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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/ipaddr[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/python-dateutil[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] || ( www-apache/mod_wsgi www-servers/uwsgi ) ldap? ( dev-python/python-ldap[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) memcached? ( dev-python/python-memcached ) sql? ( dev-python/sqlalchemy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) tools? ( net-dns/bind-tools net-misc/wget ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=https://github.com/sys4/automx/archive/v0.9.2.tar.gz -> automx-0.9.2.tgz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2042fb171d1909a809afd51fc91b27b6 diff --git a/metadata/md5-cache/net-mail/getmail-4.36.0 b/metadata/md5-cache/net-mail/getmail-4.36.0 index 26c24e64a27d..1a9870d04d0b 100644 --- a/metadata/md5-cache/net-mail/getmail-4.36.0 +++ b/metadata/md5-cache/net-mail/getmail-4.36.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=4 SRC_URI=http://pyropus.ca/software/getmail/old-versions/getmail-4.36.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=16eb650771d763168ceb48ce50444ded diff --git a/metadata/md5-cache/net-mail/getmail-4.37.0 b/metadata/md5-cache/net-mail/getmail-4.37.0 index a4c01dd83f3b..10e04f12d52f 100644 --- a/metadata/md5-cache/net-mail/getmail-4.37.0 +++ b/metadata/md5-cache/net-mail/getmail-4.37.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=4 SRC_URI=http://pyropus.ca/software/getmail/old-versions/getmail-4.37.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e54145133ab2b2db5b018513adc6b0da diff --git a/metadata/md5-cache/net-mail/getmail-4.39.0 b/metadata/md5-cache/net-mail/getmail-4.39.0 index 371c21d199e4..f2d920ec1884 100644 --- a/metadata/md5-cache/net-mail/getmail-4.39.0 +++ b/metadata/md5-cache/net-mail/getmail-4.39.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=4 SRC_URI=http://pyropus.ca/software/getmail/old-versions/getmail-4.39.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b4629eedb4b90f6c9ef60e8c0e519662 diff --git a/metadata/md5-cache/net-mail/getmail-4.39.1 b/metadata/md5-cache/net-mail/getmail-4.39.1 index 75db3977379a..d4f996a4c8e2 100644 --- a/metadata/md5-cache/net-mail/getmail-4.39.1 +++ b/metadata/md5-cache/net-mail/getmail-4.39.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=4 SRC_URI=http://pyropus.ca/software/getmail/old-versions/getmail-4.39.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=947eb42f517841adedbb8373b8a46018 diff --git a/metadata/md5-cache/net-mail/imapsync-1.525 b/metadata/md5-cache/net-mail/imapsync-1.525 index a7a76eefb150..290b501abf3f 100644 --- a/metadata/md5-cache/net-mail/imapsync-1.525 +++ b/metadata/md5-cache/net-mail/imapsync-1.525 @@ -3,10 +3,10 @@ DEPEND=dev-lang/perl DESCRIPTION=A tool allowing incremental and recursive imap transfer from one mailbox to another EAPI=4 HOMEPAGE=http://ks.lamiral.info/imapsync/ -KEYWORDS=~amd64 ~ppc ~x86 +KEYWORDS=amd64 ~ppc x86 LICENSE=WTFPL-2 RDEPEND=dev-lang/perl dev-perl/Digest-HMAC dev-perl/IO-Socket-SSL dev-perl/Mail-IMAPClient dev-perl/TermReadKey virtual/perl-Digest-MD5 virtual/perl-MIME-Base64 RESTRICT=test SLOT=0 SRC_URI=https://fedorahosted.org/released/imapsync/imapsync-1.525.tgz -_md5_=6ceb1981f98063e35f00412492dad396 +_md5_=4faf0a7d671ad6c127f3e89e95094911 diff --git a/metadata/md5-cache/net-mail/notmuch-0.10.2-r3 b/metadata/md5-cache/net-mail/notmuch-0.10.2-r3 index 1b877940f374..89072d62e603 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.10.2-r3 +++ b/metadata/md5-cache/net-mail/notmuch-0.10.2-r3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.22 dev-libs/gmime:2.4 dev-libs/xapian sys-libs/talloc REQUIRED_USE=test? ( crypt emacs python ) SLOT=0 SRC_URI=http://notmuchmail.org/releases/notmuch-0.10.2.tar.gz -_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6aa961fa0a56b5a72cc591ddabcfbe53 diff --git a/metadata/md5-cache/net-mail/notmuch-0.11.1-r3 b/metadata/md5-cache/net-mail/notmuch-0.11.1-r3 index 0ed3c344219c..5e011aa51d5d 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.11.1-r3 +++ b/metadata/md5-cache/net-mail/notmuch-0.11.1-r3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.22 dev-libs/gmime:2.4 dev-libs/xapian sys-libs/talloc REQUIRED_USE=test? ( crypt emacs python ) SLOT=0 SRC_URI=http://notmuchmail.org/releases/notmuch-0.11.1.tar.gz -_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=290177790e1cd8d045bd851a0fab9d6f diff --git a/metadata/md5-cache/net-mail/notmuch-0.12 b/metadata/md5-cache/net-mail/notmuch-0.12 index 971ff42dc186..6f22ea0ba257 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.12 +++ b/metadata/md5-cache/net-mail/notmuch-0.12 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.22 >=dev-libs/gmime-2.6.7 dev-libs/xapian sys-libs/tal REQUIRED_USE=test? ( crypt emacs python ) SLOT=0 SRC_URI=http://notmuchmail.org/releases/notmuch-0.12.tar.gz -_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e _md5_=f81788043797db168c13b0ff17377908 diff --git a/metadata/md5-cache/net-mail/notmuch-0.13.1 b/metadata/md5-cache/net-mail/notmuch-0.13.1 index 7737b500fb16..43f1aec90ae1 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.13.1 +++ b/metadata/md5-cache/net-mail/notmuch-0.13.1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.22 >=dev-libs/gmime-2.6.7 dev-libs/xapian sys-libs/tal REQUIRED_USE=test? ( crypt emacs python ) SLOT=0 SRC_URI=http://notmuchmail.org/releases/notmuch-0.13.1.tar.gz -_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e _md5_=3868831e32f7e8bc5c6a74ef8c4e3b93 diff --git a/metadata/md5-cache/net-mail/notmuch-0.14-r1 b/metadata/md5-cache/net-mail/notmuch-0.14-r1 index caa9e0a7b8da..27a41d2b509d 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.14-r1 +++ b/metadata/md5-cache/net-mail/notmuch-0.14-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.22 >=dev-libs/gmime-2.6.7 dev-libs/xapian sys-libs/tal REQUIRED_USE=test? ( crypt emacs python ) SLOT=0 SRC_URI=http://notmuchmail.org/releases/notmuch-0.14.tar.gz -_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e _md5_=c00732bd63f6981004d4f3ba0538c7a2 diff --git a/metadata/md5-cache/net-mail/notmuch-0.15.2 b/metadata/md5-cache/net-mail/notmuch-0.15.2 index 62eaa7f54d47..016a0d6a87ca 100644 --- a/metadata/md5-cache/net-mail/notmuch-0.15.2 +++ b/metadata/md5-cache/net-mail/notmuch-0.15.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/glib-2.22 >=dev-libs/gmime-2.6.7 dev-libs/xapian sys-libs/tal REQUIRED_USE=pick? ( emacs ) test? ( crypt emacs python ) SLOT=0 SRC_URI=http://notmuchmail.org/releases/notmuch-0.15.2.tar.gz -_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 elisp-common 090a78f3eaf8f79b5c038c950c6fbaf7 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=72e3b6321c92107476a555130af9c913 diff --git a/metadata/md5-cache/net-misc/chrony-1.27 b/metadata/md5-cache/net-misc/chrony-1.27 index c6a711adf666..09dce91c6f46 100644 --- a/metadata/md5-cache/net-misc/chrony-1.27 +++ b/metadata/md5-cache/net-misc/chrony-1.27 @@ -4,9 +4,9 @@ DESCRIPTION=NTP client and server programs EAPI=5 HOMEPAGE=http://chrony.tuxfamily.org/ IUSE=caps ipv6 +readline +rtc -KEYWORDS=~amd64 ~arm ~hppa ~mips ~ppc ~sparc ~x86 +KEYWORDS=amd64 ~arm hppa ~mips ppc ~sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=http://download.tuxfamily.org/chrony/chrony-1.27.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d186a005788c936cd4b11919c7d5b2b2 +_md5_=352717afcf860aa94482c6316fbc1024 diff --git a/metadata/md5-cache/net-misc/dhcp-4.2.5_p1 b/metadata/md5-cache/net-misc/dhcp-4.2.5_p1 index 222fc4b1c7b2..a9e4aa5556f8 100644 --- a/metadata/md5-cache/net-misc/dhcp-4.2.5_p1 +++ b/metadata/md5-cache/net-misc/dhcp-4.2.5_p1 @@ -4,10 +4,10 @@ DESCRIPTION=ISC Dynamic Host Configuration Protocol (DHCP) client/server EAPI=4 HOMEPAGE=http://www.isc.org/products/DHCP IUSE=+client ipv6 kernel_linux ldap selinux +server ssl vim-syntax -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 SSLeay GPL-2 RDEPEND=selinux? ( sec-policy/selinux-dhcp ) client? ( kernel_linux? ( sys-apps/net-tools ) ) ldap? ( net-nds/openldap ssl? ( dev-libs/openssl ) ) vim-syntax? ( app-vim/dhcpd-syntax ) SLOT=0 SRC_URI=ftp://ftp.isc.org/isc/dhcp/dhcp-4.2.5-P1.tar.gz ftp://ftp.isc.org/isc/dhcp/4.2.5-P1/dhcp-4.2.5-P1.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b91dc63d60854a99095231aab2ff6a23 +_md5_=1dd5a19fa7d1bb78a0b364af1ab7197c diff --git a/metadata/md5-cache/net-misc/dropbox-1.2.51-r2 b/metadata/md5-cache/net-misc/dropbox-1.2.51-r2 index f2a4a6e56741..4e6fe4aa6fa0 100644 --- a/metadata/md5-cache/net-misc/dropbox-1.2.51-r2 +++ b/metadata/md5-cache/net-misc/dropbox-1.2.51-r2 @@ -10,5 +10,5 @@ RDEPEND=app-arch/bzip2 dev-libs/popt dev-libs/openssl:0.9.8 media-libs/libpng:1. RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86-1.2.51.tar.gz ) amd64? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86_64-1.2.51.tar.gz ) -_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=82d7f1e890be9ca5589a0479ea830e7e diff --git a/metadata/md5-cache/net-misc/dropbox-1.4.17 b/metadata/md5-cache/net-misc/dropbox-1.4.17 index 6ebbbb3e5628..3bb1f837d6ac 100644 --- a/metadata/md5-cache/net-misc/dropbox-1.4.17 +++ b/metadata/md5-cache/net-misc/dropbox-1.4.17 @@ -10,5 +10,5 @@ RDEPEND=app-arch/bzip2 dev-libs/popt dev-libs/openssl:0.9.8 media-libs/libpng:1. RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86-1.4.17.tar.gz ) amd64? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86_64-1.4.17.tar.gz ) -_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=778079bee20c24ae9f257367e85fd7ee diff --git a/metadata/md5-cache/net-misc/dropbox-1.4.23 b/metadata/md5-cache/net-misc/dropbox-1.4.23 index 37aebd7a6f7b..9962e9011e7f 100644 --- a/metadata/md5-cache/net-misc/dropbox-1.4.23 +++ b/metadata/md5-cache/net-misc/dropbox-1.4.23 @@ -10,5 +10,5 @@ RDEPEND=X? ( dev-libs/glib:2 media-libs/libpng:0 sys-libs/zlib virtual/jpeg x11- RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86-1.4.23.tar.gz ) amd64? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86_64-1.4.23.tar.gz ) -_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=41a631c0ac6d15dbebb2ee04a8ec3a1a diff --git a/metadata/md5-cache/net-misc/dropbox-1.4.3-r1 b/metadata/md5-cache/net-misc/dropbox-1.4.3-r1 index 6afe861af50a..d70be960aae2 100644 --- a/metadata/md5-cache/net-misc/dropbox-1.4.3-r1 +++ b/metadata/md5-cache/net-misc/dropbox-1.4.3-r1 @@ -10,5 +10,5 @@ RDEPEND=app-arch/bzip2 dev-libs/popt dev-libs/openssl:0.9.8 media-libs/libpng:1. RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86-1.4.3.tar.gz ) amd64? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86_64-1.4.3.tar.gz ) -_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=a090ac2ecaab631ebfaa3b1a8f65d5a8 diff --git a/metadata/md5-cache/net-misc/dropbox-1.4.7-r1 b/metadata/md5-cache/net-misc/dropbox-1.4.7-r1 index 58920b7b2593..ba187f4ee5d6 100644 --- a/metadata/md5-cache/net-misc/dropbox-1.4.7-r1 +++ b/metadata/md5-cache/net-misc/dropbox-1.4.7-r1 @@ -10,5 +10,5 @@ RDEPEND=app-arch/bzip2 dev-libs/popt dev-libs/openssl:0.9.8 media-libs/libpng:1. RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86-1.4.7.tar.gz ) amd64? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86_64-1.4.7.tar.gz ) -_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=4a1418c2826e79ec549b468a6751128b diff --git a/metadata/md5-cache/net-misc/dropbox-1.4.7-r2 b/metadata/md5-cache/net-misc/dropbox-1.4.7-r2 index 383350163b8b..23e23ea8fc99 100644 --- a/metadata/md5-cache/net-misc/dropbox-1.4.7-r2 +++ b/metadata/md5-cache/net-misc/dropbox-1.4.7-r2 @@ -10,5 +10,5 @@ RDEPEND=app-arch/bzip2 dev-libs/popt dev-libs/openssl:0.9.8 media-libs/libpng:1. RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86-1.4.7.tar.gz ) amd64? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86_64-1.4.7.tar.gz ) -_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils a0cae5abb25d0ff197d56bf838502fa1 +_eclasses_=gnome2-utils 794d2847b4af390a1e020924876c8297 pax-utils d727728a240d5f59bf9370a64259fd61 _md5_=40299f14e9b35186b99ba334dd951320 diff --git a/metadata/md5-cache/net-misc/dropbox-1.6.16 b/metadata/md5-cache/net-misc/dropbox-1.6.16 index b2baca70637d..7a719494ded2 100644 --- a/metadata/md5-cache/net-misc/dropbox-1.6.16 +++ b/metadata/md5-cache/net-misc/dropbox-1.6.16 @@ -10,5 +10,5 @@ RDEPEND=X? ( dev-libs/glib:2 media-libs/libpng:1.2 sys-libs/zlib virtual/jpeg x1 RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86-1.6.16.tar.gz ) amd64? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86_64-1.6.16.tar.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=566b44319647672b9c352e49fb5412ce diff --git a/metadata/md5-cache/net-misc/electrum-1.6.2 b/metadata/md5-cache/net-misc/electrum-1.6.2 index 39e598903e48..a2143834d04c 100644 --- a/metadata/md5-cache/net-misc/electrum-1.6.2 +++ b/metadata/md5-cache/net-misc/electrum-1.6.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools dev-python/ecdsa dev-python/slowaes gtk? ( dev-pyt REQUIRED_USE=|| ( gtk qt4 ) SLOT=0 SRC_URI=http://download.electrum.org/download/Electrum-1.6.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=60cfc1c342eeb6b0ccd52c183d0492f1 diff --git a/metadata/md5-cache/net-misc/electrum-1.7 b/metadata/md5-cache/net-misc/electrum-1.7 index 32acf84acd4c..eafb0b246094 100644 --- a/metadata/md5-cache/net-misc/electrum-1.7 +++ b/metadata/md5-cache/net-misc/electrum-1.7 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools dev-python/ecdsa dev-python/slowaes gtk? ( dev-pyt REQUIRED_USE=|| ( gtk qt4 ) SLOT=0 SRC_URI=http://download.electrum.org/download/Electrum-1.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b2aff17c233d9c1f1e4d324c844e7aa3 diff --git a/metadata/md5-cache/net-misc/electrum-1.7.2 b/metadata/md5-cache/net-misc/electrum-1.7.2 index fe69da77f632..cbc5bc307a2f 100644 --- a/metadata/md5-cache/net-misc/electrum-1.7.2 +++ b/metadata/md5-cache/net-misc/electrum-1.7.2 @@ -10,5 +10,5 @@ RDEPEND=dev-python/setuptools dev-python/ecdsa dev-python/slowaes gtk? ( dev-pyt REQUIRED_USE=|| ( gtk qt4 ) SLOT=0 SRC_URI=http://download.electrum.org/download/Electrum-1.7.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d1dddc74c22922c462d8e28c97dbadd8 diff --git a/metadata/md5-cache/net-misc/flexget-1.0.3352 b/metadata/md5-cache/net-misc/flexget-1.0.3352 index 67d01a6b17b2..e594c719a51e 100644 --- a/metadata/md5-cache/net-misc/flexget-1.0.3352 +++ b/metadata/md5-cache/net-misc/flexget-1.0.3352 @@ -9,5 +9,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 =dev-python/requests-1.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] =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 =dev-python/requests-1.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] =sys-apps/openrc-0.10.5 ssl? ( dev-libs/openssl ) monitor? ( python_single_target_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/twisted dev-python/twisted-conch dev-python/twisted-web pyside? ( dev-python/pyside[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] ) !pyside? ( dev-python/PyQt4[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] ) net-zope/zope-interface[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] ) debug? ( dev-lang/perl ) virtual/pkgconfig kernel_linux? ( virtual/modutils ) sys-apps/sed kernel_linux? ( virtual/linux-sources ) +DESCRIPTION=Production quality, multilayer virtual switch. +EAPI=5 +HOMEPAGE=http://openvswitch.org +IUSE=debug modules monitor +pyside +ssl kernel_linux python_targets_python2_7 python_single_target_python2_7 +KEYWORDS=~amd64 +LICENSE=Apache-2.0 GPL-2 +RDEPEND=>=sys-apps/openrc-0.10.5 ssl? ( dev-libs/openssl ) monitor? ( python_single_target_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] dev-python/twisted dev-python/twisted-conch dev-python/twisted-web pyside? ( dev-python/pyside[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] ) !pyside? ( dev-python/PyQt4[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] ) net-zope/zope-interface[python_targets_python2_7(-)?,python_single_target_python2_7(+)?] ) debug? ( dev-lang/perl ) kernel_linux? ( virtual/modutils ) +SLOT=0 +SRC_URI=http://openvswitch.org/releases/openvswitch-1.9.0.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=7ec7827dd75b6e728ede6c9c85a03e1b diff --git a/metadata/md5-cache/net-misc/rdate-1.4-r4 b/metadata/md5-cache/net-misc/rdate-1.4-r4 index 2e454f9f06b0..204056eed420 100644 --- a/metadata/md5-cache/net-misc/rdate-1.4-r4 +++ b/metadata/md5-cache/net-misc/rdate-1.4-r4 @@ -3,9 +3,9 @@ DESCRIPTION=use TCP or UDP to retrieve the current time of another machine EAPI=5 HOMEPAGE=http://www.apps.ietf.org/rfc/rfc868.html IUSE=ipv6 -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~sparc x86 +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86 LICENSE=GPL-2 SLOT=0 SRC_URI=ftp://people.redhat.com/sopwith/rdate-1.4.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=4228b79e3f1a8c2eb6f766deaae19dcf +_md5_=b0a07a89c5bca1b471dd9a28baa941cc diff --git a/metadata/md5-cache/net-misc/strongswan-5.0.2 b/metadata/md5-cache/net-misc/strongswan-5.0.3 similarity index 92% rename from metadata/md5-cache/net-misc/strongswan-5.0.2 rename to metadata/md5-cache/net-misc/strongswan-5.0.3 index 2d9c20aa9b22..1c60839d81c9 100644 --- a/metadata/md5-cache/net-misc/strongswan-5.0.2 +++ b/metadata/md5-cache/net-misc/strongswan-5.0.3 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 LICENSE=GPL-2 RSA DES RDEPEND=!net-misc/openswan >=dev-libs/gmp-4.1.5 gcrypt? ( dev-libs/libgcrypt ) caps? ( sys-libs/libcap ) curl? ( net-misc/curl ) ldap? ( net-nds/openldap ) openssl? ( >=dev-libs/openssl-0.9.8[-bindist] ) mysql? ( virtual/mysql ) sqlite? ( >=dev-db/sqlite-3.3.1 ) pam? ( sys-libs/pam ) virtual/logger sys-apps/iproute2 SLOT=0 -SRC_URI=http://download.strongswan.org/strongswan-5.0.2.tar.bz2 +SRC_URI=http://download.strongswan.org/strongswan-5.0.3.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=5e0820c375405f0febfffa5dfc3cdeb6 +_md5_=0484b86150ce189024b643c738f546fb diff --git a/metadata/md5-cache/net-misc/teamviewer-8.0.17147-r1 b/metadata/md5-cache/net-misc/teamviewer-8.0.17147-r1 index 2ce897155345..2161ff7d8ff4 100644 --- a/metadata/md5-cache/net-misc/teamviewer-8.0.17147-r1 +++ b/metadata/md5-cache/net-misc/teamviewer-8.0.17147-r1 @@ -10,5 +10,5 @@ RDEPEND=x11-misc/xdg-utils !system-wine? ( amd64? ( app-emulation/emul-linux-x86 RESTRICT=mirror SLOT=8 SRC_URI=http://www.teamviewer.com/download/version_8x/teamviewer_linux.deb -> teamviewer-8.0.17147.deb -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=dbce933a6ee6bed42705a12177155103 diff --git a/metadata/md5-cache/net-misc/youtube-dl-2013.04.03 b/metadata/md5-cache/net-misc/youtube-dl-2013.04.03 new file mode 100644 index 000000000000..69f0baf637c9 --- /dev/null +++ b/metadata/md5-cache/net-misc/youtube-dl-2013.04.03 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install prepare setup +DEPEND=test? ( dev-python/nose[coverage(+)] ) +DESCRIPTION=Download videos from YouTube.com (and mores sites...) +EAPI=5 +HOMEPAGE=http://rg3.github.com/youtube-dl/ +IUSE=offensive test python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 python_single_target_python2_5 python_single_target_python2_6 python_single_target_python2_7 +KEYWORDS=~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris +LICENSE=public-domain +SLOT=0 +SRC_URI=http://youtube-dl.org/downloads/2013.04.03/youtube-dl-2013.04.03.tar.gz +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b python-single-r1 b4f112abff5d77f982f83e1a9e554093 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=560ee0cfc157eb229d76c442e2aa8f87 diff --git a/metadata/md5-cache/net-news/liferea-1.8.0 b/metadata/md5-cache/net-news/liferea-1.8.0 index 20a00cb17652..a22ac356d448 100644 --- a/metadata/md5-cache/net-news/liferea-1.8.0 +++ b/metadata/md5-cache/net-news/liferea-1.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.18.0:2 >=dev-libs/glib-2.24.0:2 >=x11-libs/pango-1.4.0 >=gnome-base/gconf-1.1.9:2 dev-libs/json-glib dev-libs/libunique:1 >=dev-libs/libxml2-2.6.27:2 >=dev-libs/libxslt-1.1.19 >=dev-db/sqlite-3.6.10:3 >=net-libs/libsoup-2.28.2:2.4 >=net-libs/webkit-gtk-1.2.2:2 ayatana? ( dev-libs/libindicate ) libnotify? ( >=x11-libs/libnotify-0.3.2 ) SLOT=0 SRC_URI=mirror://sourceforge/liferea/liferea-1.8.0.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=9906f5fe68fa3eac03e8abd3075e7f6e diff --git a/metadata/md5-cache/net-news/liferea-1.8.11 b/metadata/md5-cache/net-news/liferea-1.8.11 index e0ca1af95b08..0691fd953467 100644 --- a/metadata/md5-cache/net-news/liferea-1.8.11 +++ b/metadata/md5-cache/net-news/liferea-1.8.11 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.18.0:2 >=dev-libs/glib-2.26.0:2 >=x11-libs/pango-1.4.0 >=gnome-base/gconf-1.1.9:2 >=dev-libs/libxml2-2.6.27:2 >=dev-libs/libxslt-1.1.19 >=dev-db/sqlite-3.7.0:3 >=net-libs/libsoup-2.28.2:2.4 dev-libs/libunique:1 >=net-libs/webkit-gtk-1.2.2:2 dev-libs/json-glib ayatana? ( dev-libs/libindicate ) libnotify? ( >=x11-libs/libnotify-0.3.2 ) SLOT=0 SRC_URI=mirror://sourceforge/liferea/liferea-1.8.11.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=411d5e981b4cd7e3c52771e73436c21c diff --git a/metadata/md5-cache/net-news/liferea-1.8.5 b/metadata/md5-cache/net-news/liferea-1.8.5 index 09ca96b12952..1d3fa201ac6f 100644 --- a/metadata/md5-cache/net-news/liferea-1.8.5 +++ b/metadata/md5-cache/net-news/liferea-1.8.5 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.18.0:2 >=dev-libs/glib-2.24.0:2 >=x11-libs/pango-1.4.0 >=gnome-base/gconf-1.1.9:2 >=dev-libs/libxml2-2.6.27:2 >=dev-libs/libxslt-1.1.19 >=dev-db/sqlite-3.7.0:3 >=net-libs/libsoup-2.28.2:2.4 dev-libs/libunique:1 >=net-libs/webkit-gtk-1.2.2:2 dev-libs/json-glib ayatana? ( dev-libs/libindicate ) libnotify? ( >=x11-libs/libnotify-0.3.2 ) SLOT=0 SRC_URI=mirror://sourceforge/liferea/liferea-1.8.5.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=e0bb779a76268af0b2e9b0bc760deb22 diff --git a/metadata/md5-cache/net-news/liferea-1.8.8 b/metadata/md5-cache/net-news/liferea-1.8.8 index 07a2dcf86031..87d451c642ce 100644 --- a/metadata/md5-cache/net-news/liferea-1.8.8 +++ b/metadata/md5-cache/net-news/liferea-1.8.8 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.18.0:2 >=dev-libs/glib-2.24.0:2 >=x11-libs/pango-1.4.0 >=gnome-base/gconf-1.1.9:2 >=dev-libs/libxml2-2.6.27:2 >=dev-libs/libxslt-1.1.19 >=dev-db/sqlite-3.7.0:3 >=net-libs/libsoup-2.28.2:2.4 dev-libs/libunique:1 >=net-libs/webkit-gtk-1.2.2:2 dev-libs/json-glib ayatana? ( dev-libs/libindicate ) libnotify? ( >=x11-libs/libnotify-0.3.2 ) SLOT=0 SRC_URI=mirror://sourceforge/liferea/liferea-1.8.8.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8f3a630bd680b459d54e3885be7e3d6b diff --git a/metadata/md5-cache/net-news/liferea-1.9.4_p20120821 b/metadata/md5-cache/net-news/liferea-1.9.4_p20120821 index 7e0b7ebef608..3bd41c140f38 100644 --- a/metadata/md5-cache/net-news/liferea-1.9.4_p20120821 +++ b/metadata/md5-cache/net-news/liferea-1.9.4_p20120821 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.91.4:3 >=dev-libs/glib-2.26.0:2 >=x11-libs/pango-1.4.0 >=gnome-base/gconf-1.1.9:2 >=dev-libs/libxml2-2.6.27:2 >=dev-libs/libxslt-1.1.19 >=dev-db/sqlite-3.7.0:3 >=net-libs/libsoup-2.28.2:2.4 dev-libs/libunique:3 >=net-libs/webkit-gtk-1.6.1:3 dev-libs/json-glib ayatana? ( dev-libs/libindicate ) libnotify? ( >=x11-libs/libnotify-0.3.2 ) >=dev-libs/libpeas-1.0.0[gtk] gnome-base/gsettings-desktop-schemas SLOT=0 SRC_URI=http://dev.gentoo.org/~vostorga/distfiles/liferea-1.9.4_p20120821.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d1e586f2c986f76b7294b9bb713f0a5a diff --git a/metadata/md5-cache/net-news/liferea-1.9.6_p20121021 b/metadata/md5-cache/net-news/liferea-1.9.6_p20121021 index 1ac0ecbd2b64..30f992b2d175 100644 --- a/metadata/md5-cache/net-news/liferea-1.9.6_p20121021 +++ b/metadata/md5-cache/net-news/liferea-1.9.6_p20121021 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=x11-libs/gtk+-2.91.4:3 >=dev-libs/glib-2.26.0:2 >=x11-libs/pango-1.4.0 >=gnome-base/gconf-1.1.9:2 >=dev-libs/libxml2-2.6.27:2 >=dev-libs/libxslt-1.1.19 >=dev-db/sqlite-3.7.0:3 >=net-libs/libsoup-2.28.2:2.4 dev-libs/libunique:3 >=net-libs/webkit-gtk-1.6.1:3 dev-libs/json-glib ayatana? ( dev-libs/libindicate ) libnotify? ( >=x11-libs/libnotify-0.3.2 ) >=dev-libs/libpeas-1.0.0[gtk] gnome-base/gsettings-desktop-schemas SLOT=0 SRC_URI=http://dev.gentoo.org/~vostorga/distfiles/liferea-1.9.6_p20121021.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=fe50803b63b453215a9c438c0886f3b7 diff --git a/metadata/md5-cache/net-news/yarssr-0.2.2-r2 b/metadata/md5-cache/net-news/yarssr-0.2.2-r2 new file mode 100644 index 000000000000..b83f5a51f3f6 --- /dev/null +++ b/metadata/md5-cache/net-news/yarssr-0.2.2-r2 @@ -0,0 +1,11 @@ +DEFINED_PHASES=prepare +DESCRIPTION=Yet Another RSS Reader - A KDE/Gnome system tray rss aggregator +EAPI=5 +HOMEPAGE=http://yarssr.sourceforge.net/ +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-2 +RDEPEND=dev-perl/Locale-gettext dev-perl/XML-RSS dev-perl/gtk2-trayicon dev-perl/gtk2-gladexml dev-perl/gnome2-vfs-perl >=dev-perl/gnome2-perl-0.94 +SLOT=0 +SRC_URI=mirror://sourceforge/yarssr/yarssr-0.2.2.tar.bz2 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=2fa46b962cff4dd7f438a37b28866288 diff --git a/metadata/md5-cache/net-p2p/tribler-6.0.3 b/metadata/md5-cache/net-p2p/tribler-6.0.3 index 4e286a751a38..7a5c8301febf 100644 --- a/metadata/md5-cache/net-p2p/tribler-6.0.3 +++ b/metadata/md5-cache/net-p2p/tribler-6.0.3 @@ -9,5 +9,5 @@ LICENSE=LGPL-2.1 RDEPEND=dev-python/apsw dev-python/m2crypto dev-python/netifaces dev-libs/openssl dev-python/wxpython vlc? ( media-video/vlc media-video/ffmpeg ) =dev-lang/python-2* =dev-lang/python-2*[sqlite] SLOT=0 SRC_URI=http://dl.tribler.org/tribler_6.0.3_all.deb x86? ( http://dl.tribler.org/tribler-swift_6.0.0-28795_i386.deb ) amd64? ( http://dl.tribler.org/tribler-swift_6.0.0-28795_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=322fe5ed9e159ca6f102fa57b0c50869 diff --git a/metadata/md5-cache/net-print/cups-1.6.2-r1 b/metadata/md5-cache/net-print/cups-1.6.2-r2 similarity index 66% rename from metadata/md5-cache/net-print/cups-1.6.2-r1 rename to metadata/md5-cache/net-print/cups-1.6.2-r2 index a223d82a2ee5..e13a3daad48d 100644 --- a/metadata/md5-cache/net-print/cups-1.6.2-r1 +++ b/metadata/md5-cache/net-print/cups-1.6.2-r2 @@ -1,16 +1,16 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=app-text/libpaper acl? ( kernel_linux? ( sys-apps/acl sys-apps/attr ) ) dbus? ( sys-apps/dbus ) java? ( >=virtual/jre-1.6 ) kerberos? ( virtual/krb5 ) pam? ( virtual/pam ) selinux? ( sec-policy/selinux-cups ) ssl? ( gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) systemd? ( sys-apps/systemd ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) zeroconf? ( net-dns/avahi ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) java? ( >=dev-java/java-config-2.1.9-r1 ) +DEPEND=app-text/libpaper acl? ( kernel_linux? ( sys-apps/acl sys-apps/attr ) ) dbus? ( sys-apps/dbus ) java? ( >=virtual/jre-1.6 ) kerberos? ( virtual/krb5 ) pam? ( virtual/pam ) selinux? ( sec-policy/selinux-cups ) ssl? ( gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) zeroconf? ( net-dns/avahi ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) java? ( >=dev-java/java-config-2.1.9-r1 ) DESCRIPTION=The Common Unix Printing System EAPI=5 HOMEPAGE=http://www.cups.org/ -IUSE=acl dbus debug +filters gnutls java kerberos pam python selinux +ssl static-libs systemd +threads usb X xinetd zeroconf +linguas_ca +linguas_es +linguas_fr +linguas_ja +linguas_ru elibc_FreeBSD java +IUSE=acl dbus debug +filters gnutls java kerberos pam python selinux +ssl static-libs +threads usb X xinetd zeroconf +linguas_ca +linguas_es +linguas_fr +linguas_ja +linguas_ru elibc_FreeBSD java KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd LICENSE=GPL-2 PDEPEND=app-text/ghostscript-gpl[cups] app-text/poppler[utils] >=net-print/cups-filters-1.0.30 filters? ( net-print/foomatic-filters ) -RDEPEND=app-text/libpaper acl? ( kernel_linux? ( sys-apps/acl sys-apps/attr ) ) dbus? ( sys-apps/dbus ) java? ( >=virtual/jre-1.6 ) kerberos? ( virtual/krb5 ) pam? ( virtual/pam ) selinux? ( sec-policy/selinux-cups ) ssl? ( gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) systemd? ( sys-apps/systemd ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) zeroconf? ( net-dns/avahi ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) java? ( >=dev-java/java-config-2.1.9-r1 ) +RDEPEND=app-text/libpaper acl? ( kernel_linux? ( sys-apps/acl sys-apps/attr ) ) dbus? ( sys-apps/dbus ) java? ( >=virtual/jre-1.6 ) kerberos? ( virtual/krb5 ) pam? ( virtual/pam ) selinux? ( sec-policy/selinux-cups ) ssl? ( gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) zeroconf? ( net-dns/avahi ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) java? ( >=dev-java/java-config-2.1.9-r1 ) REQUIRED_USE=gnutls? ( ssl ) RESTRICT=test SLOT=0 SRC_URI=mirror://easysw/cups/1.6.2/cups-1.6.2-source.tar.bz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 python dd56675d8e9f7e85d815a28c87383141 systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f3ac7b250b8edb7371f09dbe2b34223f +_md5_=66a33690974327a5c75ad7397630ad8a diff --git a/metadata/md5-cache/net-print/cups-9999 b/metadata/md5-cache/net-print/cups-9999 index de728d82cd42..f4dc863a1b95 100644 --- a/metadata/md5-cache/net-print/cups-9999 +++ b/metadata/md5-cache/net-print/cups-9999 @@ -1,14 +1,14 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=app-text/libpaper acl? ( kernel_linux? ( sys-apps/acl sys-apps/attr ) ) dbus? ( sys-apps/dbus ) java? ( >=virtual/jre-1.6 ) kerberos? ( virtual/krb5 ) pam? ( virtual/pam ) selinux? ( sec-policy/selinux-cups ) ssl? ( gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) systemd? ( sys-apps/systemd ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) zeroconf? ( net-dns/avahi ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) java? ( >=dev-java/java-config-2.1.9-r1 ) || ( dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] ) net-misc/rsync +DEPEND=app-text/libpaper acl? ( kernel_linux? ( sys-apps/acl sys-apps/attr ) ) dbus? ( sys-apps/dbus ) java? ( >=virtual/jre-1.6 ) kerberos? ( virtual/krb5 ) pam? ( virtual/pam ) selinux? ( sec-policy/selinux-cups ) ssl? ( gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) zeroconf? ( net-dns/avahi ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) java? ( >=dev-java/java-config-2.1.9-r1 ) || ( dev-vcs/subversion[webdav-neon] dev-vcs/subversion[webdav-serf] ) net-misc/rsync DESCRIPTION=The Common Unix Printing System EAPI=5 HOMEPAGE=http://www.cups.org/ -IUSE=acl dbus debug +filters gnutls java kerberos pam python selinux +ssl static-libs systemd +threads usb X xinetd zeroconf +linguas_ca +linguas_es +linguas_fr +linguas_ja +linguas_ru elibc_FreeBSD java +IUSE=acl dbus debug +filters gnutls java kerberos pam python selinux +ssl static-libs +threads usb X xinetd zeroconf +linguas_ca +linguas_es +linguas_fr +linguas_ja +linguas_ru elibc_FreeBSD java LICENSE=GPL-2 PDEPEND=app-text/ghostscript-gpl[cups] app-text/poppler[utils] >=net-print/cups-filters-1.0.30 filters? ( net-print/foomatic-filters ) -RDEPEND=app-text/libpaper acl? ( kernel_linux? ( sys-apps/acl sys-apps/attr ) ) dbus? ( sys-apps/dbus ) java? ( >=virtual/jre-1.6 ) kerberos? ( virtual/krb5 ) pam? ( virtual/pam ) selinux? ( sec-policy/selinux-cups ) ssl? ( gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) systemd? ( sys-apps/systemd ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) zeroconf? ( net-dns/avahi ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) java? ( >=dev-java/java-config-2.1.9-r1 ) +RDEPEND=app-text/libpaper acl? ( kernel_linux? ( sys-apps/acl sys-apps/attr ) ) dbus? ( sys-apps/dbus ) java? ( >=virtual/jre-1.6 ) kerberos? ( virtual/krb5 ) pam? ( virtual/pam ) selinux? ( sec-policy/selinux-cups ) ssl? ( gnutls? ( dev-libs/libgcrypt net-libs/gnutls ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) zeroconf? ( net-dns/avahi ) python? ( || ( =dev-lang/python-2.7* =dev-lang/python-2.6* =dev-lang/python-2.5* ) ) java? ( >=dev-java/java-config-2.1.9-r1 ) REQUIRED_USE=gnutls? ( ssl ) RESTRICT=test SLOT=0 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 java-pkg-opt-2 f9bbbe5092225a2059aa9e6a3a2b52f1 java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 python dd56675d8e9f7e85d815a28c87383141 subversion 877d251a42b69543c01f6a36b4707b3b systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=95c1ffbf86200f9feb53be4a0c4a44a3 +_md5_=6ccb916078a73c6810b64d4c6ad65f81 diff --git a/metadata/md5-cache/net-print/libgnomecups-0.2.3-r3 b/metadata/md5-cache/net-print/libgnomecups-0.2.3-r3 index f5596e951ee3..6080a0b3eb3e 100644 --- a/metadata/md5-cache/net-print/libgnomecups-0.2.3-r3 +++ b/metadata/md5-cache/net-print/libgnomecups-0.2.3-r3 @@ -4,10 +4,10 @@ DESCRIPTION=GNOME cups library EAPI=4 HOMEPAGE=http://www.gnome.org/ IUSE=debug -KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd +KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd LICENSE=GPL-2 LGPL-2 RDEPEND=>=dev-libs/glib-2:2 >=net-print/cups-1.3.8 SLOT=0 SRC_URI=mirror://gnome/sources/libgnomecups/0.2/libgnomecups-0.2.3.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=eb29b515a655f495ca31dd8b57a24a7a +_md5_=2157474b766a569a0d22d610b8938983 diff --git a/metadata/md5-cache/net-proxy/dansguardian-2.10.1.1-r2 b/metadata/md5-cache/net-proxy/dansguardian-2.10.0.3-r1 similarity index 56% rename from metadata/md5-cache/net-proxy/dansguardian-2.10.1.1-r2 rename to metadata/md5-cache/net-proxy/dansguardian-2.10.0.3-r1 index 24691f0d6548..2f9717c53cec 100644 --- a/metadata/md5-cache/net-proxy/dansguardian-2.10.1.1-r2 +++ b/metadata/md5-cache/net-proxy/dansguardian-2.10.0.3-r1 @@ -1,13 +1,12 @@ -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=sys-libs/zlib pcre? ( dev-libs/libpcre ) clamav? ( >=app-antivirus/clamav-0.93 ) virtual/pkgconfig +DEFINED_PHASES=compile install postinst setup unpack +DEPEND=sys-libs/zlib pcre? ( >=dev-libs/libpcre-8.32 ) clamav? ( >=app-antivirus/clamav-0.93 ) virtual/pkgconfig DESCRIPTION=Web content filtering via proxy -EAPI=2 HOMEPAGE=http://dansguardian.org IUSE=clamav kaspersky debug ntlm pcre KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=sys-libs/zlib pcre? ( dev-libs/libpcre ) clamav? ( >=app-antivirus/clamav-0.93 ) +RDEPEND=sys-libs/zlib pcre? ( >=dev-libs/libpcre-8.32 ) clamav? ( >=app-antivirus/clamav-0.93 ) SLOT=0 -SRC_URI=http://dansguardian.org/downloads/2/Stable/dansguardian-2.10.1.1.tar.gz +SRC_URI=http://dansguardian.org/downloads/2/Stable/dansguardian-2.10.0.3.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=177b690d8a7ddde6f9e58cd2f1748441 +_md5_=a46b20d367f43560f9068179fd8936ad diff --git a/metadata/md5-cache/net-proxy/dansguardian-2.10.1.1 b/metadata/md5-cache/net-proxy/dansguardian-2.10.1.1 deleted file mode 100644 index 5b7bb314e997..000000000000 --- a/metadata/md5-cache/net-proxy/dansguardian-2.10.1.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=sys-libs/zlib pcre? ( dev-libs/libpcre ) clamav? ( >=app-antivirus/clamav-0.93 ) virtual/pkgconfig -DESCRIPTION=Web content filtering via proxy -EAPI=2 -HOMEPAGE=http://dansguardian.org -IUSE=clamav kaspersky debug ntlm pcre -KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib pcre? ( dev-libs/libpcre ) clamav? ( >=app-antivirus/clamav-0.93 ) -SLOT=0 -SRC_URI=http://dansguardian.org/downloads/2/Stable/dansguardian-2.10.1.1.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=59d944caf370998967fc5b4794ee1573 diff --git a/metadata/md5-cache/net-proxy/dansguardian-2.10.1.1-r1 b/metadata/md5-cache/net-proxy/dansguardian-2.10.1.1-r1 deleted file mode 100644 index ba363092a335..000000000000 --- a/metadata/md5-cache/net-proxy/dansguardian-2.10.1.1-r1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup -DEPEND=sys-libs/zlib pcre? ( dev-libs/libpcre ) clamav? ( >=app-antivirus/clamav-0.93 ) virtual/pkgconfig -DESCRIPTION=Web content filtering via proxy -EAPI=2 -HOMEPAGE=http://dansguardian.org -IUSE=clamav kaspersky debug ntlm pcre -KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=sys-libs/zlib pcre? ( dev-libs/libpcre ) clamav? ( >=app-antivirus/clamav-0.93 ) -SLOT=0 -SRC_URI=http://dansguardian.org/downloads/2/Stable/dansguardian-2.10.1.1.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=b39c0fb8098fc6bb2eb53e7c7ee3ec26 diff --git a/metadata/md5-cache/net-proxy/dansguardian-2.12.0.3 b/metadata/md5-cache/net-proxy/dansguardian-2.12.0.3-r2 similarity index 75% rename from metadata/md5-cache/net-proxy/dansguardian-2.12.0.3 rename to metadata/md5-cache/net-proxy/dansguardian-2.12.0.3-r2 index d5eec08ae04c..fad1569a9042 100644 --- a/metadata/md5-cache/net-proxy/dansguardian-2.12.0.3 +++ b/metadata/md5-cache/net-proxy/dansguardian-2.12.0.3-r2 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install postinst setup -DEPEND=sys-libs/zlib clamav? ( app-antivirus/clamav ) logrotate? ( app-admin/logrotate ) ntlm? ( virtual/libiconv ) pcre? ( dev-libs/libpcre ) virtual/pkgconfig +DEPEND=sys-libs/zlib clamav? ( app-antivirus/clamav ) logrotate? ( app-admin/logrotate ) ntlm? ( virtual/libiconv ) pcre? ( >=dev-libs/libpcre-8.32 ) virtual/pkgconfig DESCRIPTION=Web content filtering via proxy EAPI=5 HOMEPAGE=http://www.dansguardian.org IUSE=avast backtrace clamav commandline debug email +fancydm icap kaspersky +lfs logrotate ntlm orig-ip +pcre static-libs trickledm KEYWORDS=~amd64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=sys-libs/zlib clamav? ( app-antivirus/clamav ) logrotate? ( app-admin/logrotate ) ntlm? ( virtual/libiconv ) pcre? ( dev-libs/libpcre ) +RDEPEND=sys-libs/zlib clamav? ( app-antivirus/clamav ) logrotate? ( app-admin/logrotate ) ntlm? ( virtual/libiconv ) pcre? ( >=dev-libs/libpcre-8.32 ) SLOT=0 SRC_URI=mirror://sourceforge/dansguardian/dansguardian-2.12.0.3.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=bcbc3cbc1bb3e9f040227e64a14b1e05 +_md5_=2de5a65086a02f33cd87128604a99714 diff --git a/metadata/md5-cache/net-proxy/dante-1.1.19-r4 b/metadata/md5-cache/net-proxy/dante-1.1.19-r4 index 847d4dc4d6c9..de285c5373b2 100644 --- a/metadata/md5-cache/net-proxy/dante-1.1.19-r4 +++ b/metadata/md5-cache/net-proxy/dante-1.1.19-r4 @@ -4,9 +4,9 @@ DESCRIPTION=A free socks4,5 and msproxy implementation HOMEPAGE=http://www.inet.no/dante/ IUSE=tcpd debug selinux pam KEYWORDS=alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd -LICENSE=BSD +LICENSE=BSD GPL-2 RDEPEND=pam? ( virtual/pam ) tcpd? ( sys-apps/tcp-wrappers ) selinux? ( sec-policy/selinux-dante ) userland_GNU? ( virtual/shadow ) SLOT=0 SRC_URI=ftp://ftp.inet.no/pub/socks/dante-1.1.19.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=60169183d657d7639863eec44c09e5cc +_md5_=d0d3caacd7b6bbfe7a5071788d3d5ecb diff --git a/metadata/md5-cache/net-proxy/dante-1.3.2 b/metadata/md5-cache/net-proxy/dante-1.3.2 index eb7e75ec7cd6..dcdf5a312f09 100644 --- a/metadata/md5-cache/net-proxy/dante-1.3.2 +++ b/metadata/md5-cache/net-proxy/dante-1.3.2 @@ -5,9 +5,9 @@ EAPI=4 HOMEPAGE=http://www.inet.no/dante/ IUSE=debug kerberos pam selinux static-libs tcpd KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd -LICENSE=BSD +LICENSE=BSD GPL-2 RDEPEND=pam? ( virtual/pam ) kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-dante ) tcpd? ( sys-apps/tcp-wrappers ) userland_GNU? ( virtual/shadow ) SLOT=0 SRC_URI=ftp://ftp.inet.no/pub/socks/dante-1.3.2.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=38f5c62726d926e434135b031d5dfc93 +_md5_=2e03a2fe9e66aac9e0257bad5b30432d diff --git a/metadata/md5-cache/net-proxy/dante-1.3.2-r1 b/metadata/md5-cache/net-proxy/dante-1.3.2-r1 new file mode 100644 index 000000000000..d22f60e437f7 --- /dev/null +++ b/metadata/md5-cache/net-proxy/dante-1.3.2-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst prepare +DEPEND=pam? ( virtual/pam ) kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-dante ) tcpd? ( sys-apps/tcp-wrappers ) userland_GNU? ( virtual/shadow ) sys-devel/flex sys-devel/bison || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=A free socks4,5 and msproxy implementation +EAPI=5 +HOMEPAGE=http://www.inet.no/dante/ +IUSE=debug kerberos pam selinux static-libs tcpd +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd +LICENSE=BSD GPL-2 +RDEPEND=pam? ( virtual/pam ) kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-dante ) tcpd? ( sys-apps/tcp-wrappers ) userland_GNU? ( virtual/shadow ) +SLOT=0 +SRC_URI=ftp://ftp.inet.no/pub/socks/dante-1.3.2.tar.gz +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=8647f8d092af9fd17edbf04d723a5db7 diff --git a/metadata/md5-cache/net-proxy/dante-1.4.0_pre1 b/metadata/md5-cache/net-proxy/dante-1.4.0_pre1 index e343a560121d..f2c492c48e80 100644 --- a/metadata/md5-cache/net-proxy/dante-1.4.0_pre1 +++ b/metadata/md5-cache/net-proxy/dante-1.4.0_pre1 @@ -5,9 +5,9 @@ EAPI=5 HOMEPAGE=http://www.inet.no/dante/ IUSE=debug kerberos pam selinux static-libs tcpd KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd -LICENSE=BSD +LICENSE=BSD GPL-2 RDEPEND=pam? ( virtual/pam ) kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-dante ) tcpd? ( sys-apps/tcp-wrappers ) userland_GNU? ( virtual/shadow ) SLOT=0 SRC_URI=ftp://ftp.inet.no/pub/socks/dante-1.4.0-pre1.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=4c2b6cab4767a7e7621615900027136c +_md5_=dbf41fe5760d93029777a9e436f10676 diff --git a/metadata/md5-cache/net-proxy/dante-1.4.0_pre1-r1 b/metadata/md5-cache/net-proxy/dante-1.4.0_pre1-r1 new file mode 100644 index 000000000000..ab920bbceda3 --- /dev/null +++ b/metadata/md5-cache/net-proxy/dante-1.4.0_pre1-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst prepare +DEPEND=pam? ( virtual/pam ) kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-dante ) tcpd? ( sys-apps/tcp-wrappers ) userland_GNU? ( virtual/shadow ) sys-devel/flex sys-devel/bison || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=A free socks4,5 and msproxy implementation +EAPI=5 +HOMEPAGE=http://www.inet.no/dante/ +IUSE=debug kerberos pam selinux static-libs tcpd +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd +LICENSE=BSD GPL-2 +RDEPEND=pam? ( virtual/pam ) kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-dante ) tcpd? ( sys-apps/tcp-wrappers ) userland_GNU? ( virtual/shadow ) +SLOT=0 +SRC_URI=ftp://ftp.inet.no/pub/socks/dante-1.4.0-pre1.tar.gz +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=73144d82c0cabb49eb89e0bb9fed00d9 diff --git a/metadata/md5-cache/net-voip/linphone-3.4.3-r1 b/metadata/md5-cache/net-voip/linphone-3.4.3-r1 index 3780cd80c8d3..b920a993c8c5 100644 --- a/metadata/md5-cache/net-voip/linphone-3.4.3-r1 +++ b/metadata/md5-cache/net-voip/linphone-3.4.3-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=media-libs/mediastreamer-2.7.3[video?,ipv6?] >=net-libs/libeXosip-3.0.2 >=net-libs/libosip-3.0.0 =net-libs/ortp-0.16.3 gtk? ( dev-libs/glib:2 >=gnome-base/libglade-2.4.0:2.0 >=x11-libs/gtk+-2.4.0:2 ) ncurses? ( sys-libs/readline sys-libs/ncurses ) SLOT=0 SRC_URI=mirror://nongnu/linphone/3.4.x/sources/linphone-3.4.3.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1d60b218f5ea5e1ebece5e7166a4da7f diff --git a/metadata/md5-cache/net-voip/linphone-3.5.2 b/metadata/md5-cache/net-voip/linphone-3.5.2 index 51466a7bac26..e65cfcc5c8b5 100644 --- a/metadata/md5-cache/net-voip/linphone-3.5.2 +++ b/metadata/md5-cache/net-voip/linphone-3.5.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=media-libs/mediastreamer-2.8.2[video?,ipv6?] >=net-libs/libeXosip-3.0.2 >=net-libs/libosip-3.0.0 =net-libs/libsoup-2.26 >=net-libs/ortp-0.20.0 gtk? ( dev-libs/glib:2 >=gnome-base/libglade-2.4.0:2.0 >=x11-libs/gtk+-2.4.0:2 x11-libs/libnotify ) gsm-nonstandard? ( >=media-libs/mediastreamer-2.8.2[gsm] ) ncurses? ( sys-libs/readline sys-libs/ncurses ) ssl? ( dev-libs/openssl ) SLOT=0 SRC_URI=mirror://nongnu/linphone/3.5.x/sources/linphone-3.5.2.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6cb7ed3850bb43b0381d3c6b5dd2579f 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 29df0ef12600..6cd452e783e9 100644 --- a/metadata/md5-cache/net-zope/zope-fixers-1.0-r1 +++ b/metadata/md5-cache/net-zope/zope-fixers-1.0-r1 @@ -9,5 +9,5 @@ LICENSE=ZPL RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/z/zope.fixers/zope.fixers-1.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=70b121e76e93c6c607dc8bfc9bd8a075 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 53652af1784c..005aec9542b4 100644 --- a/metadata/md5-cache/net-zope/zope-fixers-1.1.2 +++ b/metadata/md5-cache/net-zope/zope-fixers-1.1.2 @@ -9,5 +9,5 @@ LICENSE=ZPL RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/z/zope.fixers/zope.fixers-1.1.2.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=046b9c8281cc9c57dc801e446d61054c diff --git a/metadata/md5-cache/net-zope/zope-interface-4.0.3-r1 b/metadata/md5-cache/net-zope/zope-interface-4.0.3-r1 index 9e3d4d174e85..5a09a5a618df 100644 --- a/metadata/md5-cache/net-zope/zope-interface-4.0.3-r1 +++ b/metadata/md5-cache/net-zope/zope-interface-4.0.3-r1 @@ -9,5 +9,5 @@ LICENSE=ZPL RDEPEND=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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,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_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/z/zope.interface/zope.interface-4.0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=105cbd66722817d1b588728de72cb472 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 4ccc435b0f36..c1f450f0d826 100644 --- a/metadata/md5-cache/net-zope/zope-interface-4.0.5 +++ b/metadata/md5-cache/net-zope/zope-interface-4.0.5 @@ -9,5 +9,5 @@ LICENSE=ZPL RDEPEND=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_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,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_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=mirror://pypi/z/zope.interface/zope.interface-4.0.5.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a6bea7d1316b9a81c5b897ffe8b19cc1 diff --git a/metadata/md5-cache/sci-astronomy/celestia-1.6.1-r1 b/metadata/md5-cache/sci-astronomy/celestia-1.6.1-r1 index d6cccd05af59..9ee8ad745d00 100644 --- a/metadata/md5-cache/sci-astronomy/celestia-1.6.1-r1 +++ b/metadata/md5-cache/sci-astronomy/celestia-1.6.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=virtual/opengl virtual/jpeg media-libs/libpng:0= =x11-libs/gtkglext-1.0 ) ) gnome? ( x11-libs/gtk+:2 >=x11-libs/gtkglext-1.0 >=gnome-base/libgnomeui-2.0 ) !gtk? ( !gnome? ( media-libs/freeglut ) ) cairo? ( x11-libs/cairo ) theora? ( media-libs/libtheora ) SLOT=0 SRC_URI=mirror://sourceforge/celestia/celestia-1.6.1.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=ef7ee8360449b888c6f4ccbd98701680 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 d1bc9dbbf4e3..5772e5d0cd5c 100644 --- a/metadata/md5-cache/sci-biology/vienna-rna-2.1.1 +++ b/metadata/md5-cache/sci-biology/vienna-rna-2.1.1 @@ -9,5 +9,5 @@ LICENSE=vienna-rna RDEPEND=dev-lang/perl media-libs/gd doc? ( dev-texlive/texlive-latex ) python? ( python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-lang/swig ) dev-lang/perl[-build] SLOT=0 SRC_URI=http://www.tbi.univie.ac.at/~ronny/RNA/ViennaRNA-2.1.1.tar.gz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 base ec46b36a6f6fd1d0b505a33e0b74e413 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 perl-module 825d3d7654c88c5c4dec7400d3612578 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f80e5c05237f47476d0ba11da421144d diff --git a/metadata/md5-cache/sci-chemistry/GromacsWrapper-0.3.1 b/metadata/md5-cache/sci-chemistry/GromacsWrapper-0.3.1 index 91fd84a7d73f..a4478e4ba1b9 100644 --- a/metadata/md5-cache/sci-chemistry/GromacsWrapper-0.3.1 +++ b/metadata/md5-cache/sci-chemistry/GromacsWrapper-0.3.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 LGPL-3 RDEPEND=>=dev-python/matplotlib-0.91.3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/RecSQL-0.3[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=sci-libs/scipy-0.9[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 ) python_targets_python2_7? ( dev-lang/python: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=https://github.com/orbeckst/GromacsWrapper/archive/release-0.3.1.tar.gz -> GromacsWrapper-0.3.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _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 19834721ebd1..d26e5405dddf 100644 --- a/metadata/md5-cache/sci-chemistry/PyMca-4.6.2-r1 +++ b/metadata/md5-cache/sci-chemistry/PyMca-4.6.2-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyopengl[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/sip[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/opengl X? ( dev-python/PyQt4[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyqwt[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) hdf5? ( dev-python/h5py[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) matplotlib? ( dev-python/matplotlib[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 ) python_targets_python2_7? ( dev-lang/python: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/project/pymca/pymca/PyMca4.6.2/pymca4.6.2-src.tgz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2b917cfdfcf51f4376ced8bf7f8b120 diff --git a/metadata/md5-cache/sci-chemistry/gabedit-2.4.6 b/metadata/md5-cache/sci-chemistry/gabedit-2.4.6 new file mode 100644 index 000000000000..4913e2589339 --- /dev/null +++ b/metadata/md5-cache/sci-chemistry/gabedit-2.4.6 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare +DEPEND=dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/gtkglext x11-libs/gl2ps x11-libs/pango virtual/opengl virtual/glu virtual/pkgconfig +DESCRIPTION=GUI for computational chemistry packages +EAPI=5 +HOMEPAGE=http://gabedit.sourceforge.net/ +IUSE=openmp +KEYWORDS=~amd64 ~x86 +LICENSE=MIT +RDEPEND=dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf:2 x11-libs/gtk+:2 x11-libs/gtkglext x11-libs/gl2ps x11-libs/pango virtual/opengl virtual/glu +SLOT=0 +SRC_URI=mirror://sourceforge/gabedit/GabeditSrc246.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=f82b0644404570392858e976588dc14b diff --git a/metadata/md5-cache/sci-chemistry/gamess-20110811.1 b/metadata/md5-cache/sci-chemistry/gamess-20110811.1 index 8fd170284edd..a9859e63ad21 100644 --- a/metadata/md5-cache/sci-chemistry/gamess-20110811.1 +++ b/metadata/md5-cache/sci-chemistry/gamess-20110811.1 @@ -10,5 +10,5 @@ RDEPEND=app-shells/tcsh mpi? ( virtual/mpi ) virtual/blas net-misc/openssh virtu RESTRICT=fetch SLOT=0 SRC_URI=gamess-20110811.1.tar.gz qmmm-tinker? ( tinker.tar.Z ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7332d237e9d9a9319144b67e323f9def diff --git a/metadata/md5-cache/sci-chemistry/icm-3.7.2d b/metadata/md5-cache/sci-chemistry/icm-3.7.2d index 966a536f8b64..2b4a245507cd 100644 --- a/metadata/md5-cache/sci-chemistry/icm-3.7.2d +++ b/metadata/md5-cache/sci-chemistry/icm-3.7.2d @@ -11,5 +11,5 @@ REQUIRED_USE=^^ ( ( !32bit 64bit ) ( 32bit !64bit ) ( 32bit 64bit ) ) RESTRICT=fetch SLOT=0 SRC_URI=icm-3.7-2d-linux.sh -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=cd873a83ee23da3c1ae1cba256177a02 diff --git a/metadata/md5-cache/sci-chemistry/icm-3.7.2e b/metadata/md5-cache/sci-chemistry/icm-3.7.2e index 77c1c0291629..ac59e87d9c57 100644 --- a/metadata/md5-cache/sci-chemistry/icm-3.7.2e +++ b/metadata/md5-cache/sci-chemistry/icm-3.7.2e @@ -11,5 +11,5 @@ REQUIRED_USE=^^ ( ( !32bit 64bit ) ( 32bit !64bit ) ( 32bit 64bit ) ) RESTRICT=fetch SLOT=0 SRC_URI=icm-3.7-2e-linux.sh -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c90da8526e6df9a8405801b94653cc59 diff --git a/metadata/md5-cache/sci-chemistry/nmrglue-0.4 b/metadata/md5-cache/sci-chemistry/nmrglue-0.4 index 743751f56f6c..1e2c00b06ed1 100644 --- a/metadata/md5-cache/sci-chemistry/nmrglue-0.4 +++ b/metadata/md5-cache/sci-chemistry/nmrglue-0.4 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/ipython[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/matplotlib[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(-)] sci-libs/scipy[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 ) python_targets_python2_7? ( dev-lang/python: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=https://nmrglue.googlecode.com/files/nmrglue-0.4-corrected.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9ee6fcded1832a1ae67649f1911cad51 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 a3eb0fbebfff..69c41deaf8d6 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 @@ -9,5 +9,5 @@ LICENSE=PSF-2.2 RDEPEND=dev-python/numpy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pmw[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/freetype:2 media-libs/glew media-libs/libpng media-video/mpeg-tools sys-libs/zlib media-libs/freeglut apbs? ( dev-libs/maloc sci-chemistry/apbs sci-chemistry/pdb2pqr sci-chemistry/pymol-apbs-plugin ) web? ( !dev-python/webpy ) python_targets_python2_7? ( dev-lang/python:2.7[tk] ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 prefix 21058c21ca48453d771df15500873ede python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 prefix 21058c21ca48453d771df15500873ede python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a5a94ccd020c66e2b3cbe1dac93a2898 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 a72b2863afb1..8bcf813798d8 100644 --- a/metadata/md5-cache/sci-chemistry/pymol-1.6.0_rc1 +++ b/metadata/md5-cache/sci-chemistry/pymol-1.6.0_rc1 @@ -9,5 +9,5 @@ LICENSE=PSF-2.2 RDEPEND=dev-python/pmw[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] media-libs/freetype:2 media-libs/glew media-libs/libpng media-video/mpeg-tools sys-libs/zlib media-libs/freeglut apbs? ( dev-libs/maloc sci-chemistry/apbs sci-chemistry/pdb2pqr sci-chemistry/pymol-apbs-plugin ) web? ( !dev-python/webpy ) python_targets_python2_7? ( dev-lang/python:2.7[tk] ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_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 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8c33b170eb5ad7e2b8461acee92ffb0f diff --git a/metadata/md5-cache/sci-chemistry/theseus-2.0.1 b/metadata/md5-cache/sci-chemistry/theseus-2.0.1 new file mode 100644 index 000000000000..bd8b6c92db2f --- /dev/null +++ b/metadata/md5-cache/sci-chemistry/theseus-2.0.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install prepare +DEPEND=sci-libs/gsl || ( sci-biology/probcons sci-biology/mafft sci-biology/t-coffee sci-biology/kalign sci-biology/clustalw sci-biology/muscle ) virtual/pkgconfig +DESCRIPTION=maximum likelihood superpositioning and analysis of macromolecular structures +EAPI=5 +HOMEPAGE=http://www.theseus3d.org/ +IUSE=examples +KEYWORDS=~amd64 ~x86 ~amd64-linux ~x86-linux +LICENSE=GPL-3 +RDEPEND=sci-libs/gsl || ( sci-biology/probcons sci-biology/mafft sci-biology/t-coffee sci-biology/kalign sci-biology/clustalw sci-biology/muscle ) +SLOT=0 +SRC_URI=http://www.theseus3d.org/src/theseus_2.0.1.tar.gz +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=42ed6037a49ec92233d7a4ee3b0fd2de 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 ac4eef4f37f8..49c4f300732a 100644 --- a/metadata/md5-cache/sci-geosciences/cdat-lite-6.0_rc2 +++ b/metadata/md5-cache/sci-geosciences/cdat-lite-6.0_rc2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=sci-libs/netcdf-4.0.1 >=sci-libs/hdf5-1.6.4 dev-python/numpy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/wxpython:2.8[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] virtual/pmw[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] !sci-biology/ncbi-tools python_targets_python2_6? ( dev-lang/python:2.6[tk,xml] ) python_targets_python2_7? ( dev-lang/python:2.7[tk,xml] ) 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=http://ndg.nerc.ac.uk/dist/cdat_lite-6.0rc2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=df8eaf39d56282fb816bfb53c1f2a867 diff --git a/metadata/md5-cache/sci-geosciences/googleearth-5.1.3535.3218-r1 b/metadata/md5-cache/sci-geosciences/googleearth-5.1.3535.3218-r1 index bef115d23d37..ab6a46407a46 100644 --- a/metadata/md5-cache/sci-geosciences/googleearth-5.1.3535.3218-r1 +++ b/metadata/md5-cache/sci-geosciences/googleearth-5.1.3535.3218-r1 @@ -9,5 +9,5 @@ RDEPEND=|| ( >=sys-devel/gcc-4.2[cxx] >=sys-devel/gcc-4.2[-nocxx] ) x86? ( media RESTRICT=fetch strip SLOT=0 SRC_URI=GoogleEarthLinux-5.1.3535.3218.bin -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=55cdaf1b33e3623f8e8d1046e1abe075 diff --git a/metadata/md5-cache/sci-geosciences/googleearth-5.2.1.1588 b/metadata/md5-cache/sci-geosciences/googleearth-5.2.1.1588 index 66b4a161b536..df068602d4fd 100644 --- a/metadata/md5-cache/sci-geosciences/googleearth-5.2.1.1588 +++ b/metadata/md5-cache/sci-geosciences/googleearth-5.2.1.1588 @@ -9,5 +9,5 @@ RDEPEND=|| ( >=sys-devel/gcc-4.2[cxx] >=sys-devel/gcc-4.2[-nocxx] ) x86? ( media RESTRICT=mirror strip SLOT=0 SRC_URI=http://dl.google.com/earth/client/advanced/previous/GoogleEarthLinux.bin -> GoogleEarthLinux-5.2.1.1588.bin -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=fee169d1bb6cddf66a1c58e0bcbce413 diff --git a/metadata/md5-cache/sci-geosciences/googleearth-6.0.2.2074 b/metadata/md5-cache/sci-geosciences/googleearth-6.0.2.2074 index 4da14fda1320..8abe89b2eca8 100644 --- a/metadata/md5-cache/sci-geosciences/googleearth-6.0.2.2074 +++ b/metadata/md5-cache/sci-geosciences/googleearth-6.0.2.2074 @@ -10,5 +10,5 @@ RDEPEND=|| ( >=sys-devel/gcc-4.2[cxx] >=sys-devel/gcc-4.2[-nocxx] ) x86? ( media RESTRICT=fetch strip SLOT=0 SRC_URI=GoogleEarthLinux-6.0.2.2074.bin -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=37c61256ff17a9e60c69d60dc236d2a6 diff --git a/metadata/md5-cache/sci-geosciences/googleearth-6.0.3.2197 b/metadata/md5-cache/sci-geosciences/googleearth-6.0.3.2197 index 424389b96ec9..c381e18dd6a0 100644 --- a/metadata/md5-cache/sci-geosciences/googleearth-6.0.3.2197 +++ b/metadata/md5-cache/sci-geosciences/googleearth-6.0.3.2197 @@ -10,5 +10,5 @@ RDEPEND=|| ( >=sys-devel/gcc-4.2[cxx] >=sys-devel/gcc-4.2[-nocxx] ) x86? ( media RESTRICT=mirror strip SLOT=0 SRC_URI=http://dl.google.com/earth/client/current/GoogleEarthLinux.bin -> GoogleEarthLinux-6.0.3.2197.bin -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=585cab5021d748f92f0a53f6fa4566ef diff --git a/metadata/md5-cache/sci-geosciences/googleearth-6.2.2.6613 b/metadata/md5-cache/sci-geosciences/googleearth-6.2.2.6613 index 6c06e99a19df..979197c80eed 100644 --- a/metadata/md5-cache/sci-geosciences/googleearth-6.2.2.6613 +++ b/metadata/md5-cache/sci-geosciences/googleearth-6.2.2.6613 @@ -10,5 +10,5 @@ RDEPEND=|| ( >=sys-devel/gcc-4.2[cxx] >=sys-devel/gcc-4.2[-nocxx] ) x86? ( media RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl.google.com/dl/earth/client/current/google-earth-stable_current_i386.deb -> GoogleEarthLnux-6.2.2.6613_i386.deb ) amd64? ( http://dl.google.com/dl/earth/client/current/google-earth-stable_current_amd64.deb -> GoogleEarthLinux-6.2.2.6613_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5aa523b1d023eaff4834e927252d5a04 diff --git a/metadata/md5-cache/sci-geosciences/googleearth-7.0.2.8415 b/metadata/md5-cache/sci-geosciences/googleearth-7.0.2.8415 index babf94fc12df..5b1c4e0620e6 100644 --- a/metadata/md5-cache/sci-geosciences/googleearth-7.0.2.8415 +++ b/metadata/md5-cache/sci-geosciences/googleearth-7.0.2.8415 @@ -10,5 +10,5 @@ RDEPEND=|| ( >=sys-devel/gcc-4.2[cxx] >=sys-devel/gcc-4.2[-nocxx] ) x86? ( media RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl.google.com/dl/earth/client/current/google-earth-stable_current_i386.deb -> GoogleEarthLinux-7.0.2.8415_i386.deb ) amd64? ( http://dl.google.com/dl/earth/client/current/google-earth-stable_current_amd64.deb -> GoogleEarthLinux-7.0.2.8415_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f764ffa998a6d6b3a2a9693b8f017933 diff --git a/metadata/md5-cache/sci-geosciences/googleearth-7.0.2.8415-r2 b/metadata/md5-cache/sci-geosciences/googleearth-7.0.2.8415-r2 index eab96ff438db..b7c8ce3c7a12 100644 --- a/metadata/md5-cache/sci-geosciences/googleearth-7.0.2.8415-r2 +++ b/metadata/md5-cache/sci-geosciences/googleearth-7.0.2.8415-r2 @@ -10,5 +10,5 @@ RDEPEND=|| ( >=sys-devel/gcc-4.2[cxx] >=sys-devel/gcc-4.2[-nocxx] ) x86? ( media RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl.google.com/dl/earth/client/current/google-earth-stable_current_i386.deb -> GoogleEarthLinux-7.0.2.8415_i386.deb ) amd64? ( http://dl.google.com/dl/earth/client/current/google-earth-stable_current_amd64.deb -> GoogleEarthLinux-7.0.2.8415_amd64.deb ) http://dev.gentoo.org/~hasufell/distfiles/googleearth-libexpat-2.1.0-novisibility.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c0258e27360c7e3b9698022193682c2c diff --git a/metadata/md5-cache/sci-geosciences/googleearth-7.0.3.8542 b/metadata/md5-cache/sci-geosciences/googleearth-7.0.3.8542 index 3b8c10038c7b..19fcf09090cf 100644 --- a/metadata/md5-cache/sci-geosciences/googleearth-7.0.3.8542 +++ b/metadata/md5-cache/sci-geosciences/googleearth-7.0.3.8542 @@ -10,5 +10,5 @@ RDEPEND=|| ( >=sys-devel/gcc-4.2[cxx] >=sys-devel/gcc-4.2[-nocxx] ) x86? ( media RESTRICT=mirror strip SLOT=0 SRC_URI=x86? ( http://dl.google.com/dl/earth/client/current/google-earth-stable_current_i386.deb -> GoogleEarthLinux-7.0.3.8542_i386.deb ) amd64? ( http://dl.google.com/dl/earth/client/current/google-earth-stable_current_amd64.deb -> GoogleEarthLinux-7.0.3.8542_amd64.deb ) http://dev.gentoo.org/~hasufell/distfiles/googleearth-libexpat-2.1.0-novisibility.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4ff6cf18e6c2f81aade55d07798f5dc6 diff --git a/metadata/md5-cache/sci-geosciences/gpxpy-0.8.6 b/metadata/md5-cache/sci-geosciences/gpxpy-0.8.6 index d80e95faed61..9e601665cc33 100644 --- a/metadata/md5-cache/sci-geosciences/gpxpy-0.8.6 +++ b/metadata/md5-cache/sci-geosciences/gpxpy-0.8.6 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-)] SLOT=0 SRC_URI=https://github.com/tkrajina/gpxpy/tarball/85c3477b -> gpxpy-0.8.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 _md5_=ef735f1deb44966de623f5278da7c2be 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 9075f4220c57..6c50699f464d 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 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=dev-libs/glib-2.16.0 >=net-libs/libsoup-2.4.0 >=x11-libs/cairo-1.6.0 >=x11-libs/gtk+-2.14.0:2[introspection?] x11-libs/gdk-pixbuf[introspection?] introspection? ( dev-libs/gobject-introspection ) python? ( python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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/pygtk[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(-)] ) 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 cf83655b19ed98f9ea3b44f4572b51a3 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=93f2a47d56e49115aab889c6da523d5f diff --git a/metadata/md5-cache/sci-geosciences/seawater-2.0.1 b/metadata/md5-cache/sci-geosciences/seawater-2.0.1 index a900832ba43c..4f3956958a11 100644 --- a/metadata/md5-cache/sci-geosciences/seawater-2.0.1 +++ b/metadata/md5-cache/sci-geosciences/seawater-2.0.1 @@ -9,5 +9,5 @@ LICENSE=MIT RDEPEND=dev-python/numpy[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/s/seawater/seawater-2.0.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c221df26f4a91094e52c9fcf3054fb51 diff --git a/metadata/md5-cache/sci-geosciences/tappy-0.9.0 b/metadata/md5-cache/sci-geosciences/tappy-0.9.0 index 1c9c8d4542ae..43dfae77deca 100644 --- a/metadata/md5-cache/sci-geosciences/tappy-0.9.0 +++ b/metadata/md5-cache/sci-geosciences/tappy-0.9.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-python/matplotlib[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pywavelets sci-libs/scipy[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[xml] ) python_targets_python2_7? ( dev-lang/python: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(-)] SLOT=0 SRC_URI=mirror://sourceforge/tappy/tappy-0.9.0.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d9b4771cfd91eb150581384fb331b84b diff --git a/metadata/md5-cache/sci-libs/armadillo-3.4.4 b/metadata/md5-cache/sci-libs/armadillo-3.4.4 index d81876848e2c..2f300e29693d 100644 --- a/metadata/md5-cache/sci-libs/armadillo-3.4.4 +++ b/metadata/md5-cache/sci-libs/armadillo-3.4.4 @@ -10,4 +10,4 @@ RDEPEND=dev-libs/boost blas? ( virtual/blas ) lapack? ( virtual/lapack ) SLOT=0 SRC_URI=mirror://sourceforge/arma/armadillo-3.4.4.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=15c833022269e5d4da80a50513c92067 +_md5_=b7a15398e67294c53936b04918007278 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 fad9514bd484..f3a24f564681 100644 --- a/metadata/md5-cache/sci-libs/bmrblib-1.0.0-r1 +++ b/metadata/md5-cache/sci-libs/bmrblib-1.0.0-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://download.gna.org/bmrblib/bmrblib-1.0.0.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=176c7f5a8b6825a3fbe1a3691c50c2f8 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 cd69092c11fc..5c423498e2ec 100644 --- a/metadata/md5-cache/sci-libs/bmrblib-1.0.1_pre198 +++ b/metadata/md5-cache/sci-libs/bmrblib-1.0.1_pre198 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/bmrblib-1.0.1_pre198.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0a2ef26b94026fe9c665c85abd0312ea diff --git a/metadata/md5-cache/sci-libs/cholmod-2.0.1 b/metadata/md5-cache/sci-libs/cholmod-2.0.1 index dd6d83843630..104113db3a5d 100644 --- a/metadata/md5-cache/sci-libs/cholmod-2.0.1 +++ b/metadata/md5-cache/sci-libs/cholmod-2.0.1 @@ -10,4 +10,4 @@ RDEPEND=>=sci-libs/amd-2.3 >=sci-libs/colamd-2.8 cuda? ( x11-drivers/nvidia-driv SLOT=0 SRC_URI=http://dev.gentoo.org/~bicatali/distfiles/cholmod-2.0.1.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=f90f51677ddb63b618a45819b0a77d05 +_md5_=861db37921e92c78484ac1f266bf90c8 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 cad924250059..64c14559876c 100644 --- a/metadata/md5-cache/sci-libs/minfx-1.0.3-r1 +++ b/metadata/md5-cache/sci-libs/minfx-1.0.3-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://download.gna.org/minfx/minfx-1.0.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5021a21f1a49ae3d01546eeba29eb9f4 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 15fcfcc78eb8..3fbfa8d458a8 100644 --- a/metadata/md5-cache/sci-libs/minfx-1.0.4_pre98 +++ b/metadata/md5-cache/sci-libs/minfx-1.0.4_pre98 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) python_targets_python3_1? ( dev-lang/python:3.1 ) python_targets_python3_2? ( dev-lang/python:3.2 ) python_targets_python3_3? ( dev-lang/python:3.3 ) python_targets_pypy1_9? ( dev-python/pypy:1.9 ) python_targets_pypy2_0? ( dev-python/pypy:2.0 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://dev.gentoo.org/~jlec/distfiles/minfx-1.0.4_pre98.tar.xz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ab6f2d6dcbc1fb0e2db18e1ddc1964e9 diff --git a/metadata/md5-cache/sci-libs/scikits_image-0.7.2-r2 b/metadata/md5-cache/sci-libs/scikits_image-0.7.2-r2 index 15dea0f99088..d369f71e6f76 100644 --- a/metadata/md5-cache/sci-libs/scikits_image-0.7.2-r2 +++ b/metadata/md5-cache/sci-libs/scikits_image-0.7.2-r2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=sci-libs/scikits[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scipy[umfpack,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] freeimage? ( media-libs/freeimage ) gtk? ( dev-python/pygtk[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) qt4? ( dev-python/PyQt4[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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/s/scikit-image/scikit-image-0.7.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7304184c7b095b9041f69bdb173906d3 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 a7764650d8d0..0353e3bb24de 100644 --- a/metadata/md5-cache/sci-libs/scikits_image-0.8.2 +++ b/metadata/md5-cache/sci-libs/scikits_image-0.8.2 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=sci-libs/scikits[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scipy[umfpack,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] freeimage? ( media-libs/freeimage ) gtk? ( dev-python/pygtk[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] ) qt4? ( dev-python/PyQt4[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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/s/scikit-image/scikit-image-0.8.2.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=722e23c34228e7e7491603a629427adf diff --git a/metadata/md5-cache/sci-libs/scikits_learn-0.13-r1 b/metadata/md5-cache/sci-libs/scikits_learn-0.13-r1 index 51d15d7856bb..33e306aeedf5 100644 --- a/metadata/md5-cache/sci-libs/scikits_learn-0.13-r1 +++ b/metadata/md5-cache/sci-libs/scikits_learn-0.13-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=sci-libs/scikits[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scipy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/matplotlib[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 ) python_targets_python2_7? ( dev-lang/python: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/scikit-learn/scikit-learn-0.13.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=afd33b6b4931ab2fe93377813c36f6dc 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 c935e46db0e6..70019895cb5c 100644 --- a/metadata/md5-cache/sci-libs/scikits_learn-0.13.1 +++ b/metadata/md5-cache/sci-libs/scikits_learn-0.13.1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=sci-libs/scikits[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scipy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/matplotlib[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 ) python_targets_python2_7? ( dev-lang/python: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/scikit-learn/scikit-learn-0.13.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=29f91c12428e7924deb5687517e1d545 diff --git a/metadata/md5-cache/sci-libs/scikits_optimization-0.2-r1 b/metadata/md5-cache/sci-libs/scikits_optimization-0.2-r1 index 707c66bd86b7..db06c66ce7db 100644 --- a/metadata/md5-cache/sci-libs/scikits_optimization-0.2-r1 +++ b/metadata/md5-cache/sci-libs/scikits_optimization-0.2-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/numpy[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scikits[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/s/scikits.optimization/scikits.optimization-0.2.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=df79eeba018f105ab1d18be783c4074e diff --git a/metadata/md5-cache/sci-libs/scikits_statsmodels-0.4.3-r1 b/metadata/md5-cache/sci-libs/scikits_statsmodels-0.4.3-r1 index ca36b37468f1..4967eff106d3 100644 --- a/metadata/md5-cache/sci-libs/scikits_statsmodels-0.4.3-r1 +++ b/metadata/md5-cache/sci-libs/scikits_statsmodels-0.4.3-r1 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=dev-python/pandas[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scikits[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scipy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] examples? ( dev-python/matplotlib[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 ) python_targets_python2_7? ( dev-lang/python: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://pypi/s/statsmodels/statsmodels-0.4.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=0e06d155083c9bd89c798b7ab9bbf725 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 eba9b435a0bb..199c68846c81 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 @@ -9,5 +9,5 @@ LICENSE=BSD eGenixPublic-1.1 RDEPEND=sci-libs/scipy[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/scikits[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/matplotlib[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pytables python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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/pytseries/scikits.timeseries-0.91.3.tar.gz doc? ( mirror://sourceforge/pytseries/scikits.timeseries-0.91.3-html_docs.zip ) -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=550825989fd38f8f17a2edf30aad35e7 diff --git a/metadata/md5-cache/sci-libs/scipy-0.11.0-r1 b/metadata/md5-cache/sci-libs/scipy-0.11.0-r1 index 4f0532c47e3a..963f1988a012 100644 --- a/metadata/md5-cache/sci-libs/scipy-0.11.0-r1 +++ b/metadata/md5-cache/sci-libs/scipy-0.11.0-r1 @@ -9,5 +9,5 @@ LICENSE=BSD LGPL-2 RDEPEND=dev-python/numpy[lapack,python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sci-libs/arpack virtual/cblas virtual/lapack umfpack? ( sci-libs/umfpack ) dev-python/imaging[python_targets_python2_5(-)?,-python_single_target_python2_5(-),python_targets_python2_6(-)?,-python_single_target_python2_6(-),python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/fortran python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/scipy/scipy-0.11.0.tar.gz doc? ( http://docs.scipy.org/doc/scipy-0.11.0/scipy-html.zip -> scipy-0.11.0-html.zip http://docs.scipy.org/doc/scipy-0.11.0/scipy-ref.pdf -> scipy-0.11.0-ref.pdf ) -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de fortran-2 ea80967500d9deda5468aed13b0bfca8 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5fac6340e6716a3f913c21f4cdc0d431 diff --git a/metadata/md5-cache/sci-mathematics/wxmaxima-12.09.0 b/metadata/md5-cache/sci-mathematics/wxmaxima-12.09.0 index 11b33a1cccbe..3fdb4f91ecc3 100644 --- a/metadata/md5-cache/sci-mathematics/wxmaxima-12.09.0 +++ b/metadata/md5-cache/sci-mathematics/wxmaxima-12.09.0 @@ -1,13 +1,12 @@ -DEFINED_PHASES=configure install postinst postrm prepare -DEPEND=dev-libs/libxml2:2 x11-libs/wxGTK:2.8 +DEFINED_PHASES=configure install postinst postrm preinst prepare +DEPEND=dev-libs/libxml2:2 x11-libs/wxGTK:2.8 >=sys-apps/sed-4 DESCRIPTION=Graphical frontend to Maxima, using the wxWidgets toolkit. -EAPI=4 +EAPI=5 HOMEPAGE=http://wxmaxima.sourceforge.net/ -IUSE=unicode KEYWORDS=~amd64 ~ppc ~x86 LICENSE=GPL-2 RDEPEND=dev-libs/libxml2:2 x11-libs/wxGTK:2.8 media-fonts/jsmath sci-visualization/gnuplot[wxwidgets] sci-mathematics/maxima SLOT=0 SRC_URI=mirror://sourceforge/wxmaxima/wxMaxima-12.09.0.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 -_md5_=6496afee9ac91a014afce1a41326a492 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 wxwidgets fb1a306837717dfa2af841ecdf929565 +_md5_=99d0f2eae41f25fae1c959ee59b38a2a diff --git a/metadata/md5-cache/sci-misc/mendeleydesktop-1.8.3 b/metadata/md5-cache/sci-misc/mendeleydesktop-1.8.4 similarity index 66% rename from metadata/md5-cache/sci-misc/mendeleydesktop-1.8.3 rename to metadata/md5-cache/sci-misc/mendeleydesktop-1.8.4 index 8107f58e0e5c..00455975fe28 100644 --- a/metadata/md5-cache/sci-misc/mendeleydesktop-1.8.3 +++ b/metadata/md5-cache/sci-misc/mendeleydesktop-1.8.4 @@ -7,6 +7,6 @@ LICENSE=Mendeley-EULA RDEPEND=>=dev-qt/qtcore-4.6:4 >=dev-qt/qtgui-4.6:4 >=dev-qt/qtsvg-4.6:4 >=dev-qt/qtwebkit-4.6:4 >=dev-qt/qtxmlpatterns-4.6:4 RESTRICT=fetch SLOT=0 -SRC_URI=amd64? ( mendeleydesktop-1.8.3-linux-x86_64.tar.bz2 ) x86? ( mendeleydesktop-1.8.3-linux-i486.tar.bz2 ) amd64-linux? ( mendeleydesktop-1.8.3-linux-x86_64.tar.bz2 ) x86-linux? ( mendeleydesktop-1.8.3-linux-i486.tar.bz2 ) +SRC_URI=amd64? ( mendeleydesktop-1.8.4-linux-x86_64.tar.bz2 ) x86? ( mendeleydesktop-1.8.4-linux-i486.tar.bz2 ) amd64-linux? ( mendeleydesktop-1.8.4-linux-x86_64.tar.bz2 ) x86-linux? ( mendeleydesktop-1.8.4-linux-i486.tar.bz2 ) _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=ffddb05267e569d8ca47b10738eb7cae +_md5_=8341bba415cbb02ddbfb05bbeec9074e diff --git a/metadata/md5-cache/sys-apps/baselayout-java-0.1.0 b/metadata/md5-cache/sys-apps/baselayout-java-0.1.0 new file mode 100644 index 000000000000..621029c1d302 --- /dev/null +++ b/metadata/md5-cache/sys-apps/baselayout-java-0.1.0 @@ -0,0 +1,12 @@ +DEFINED_PHASES=postinst postrm +DEPEND=>=sys-apps/sed-4 +DESCRIPTION=Baselayout for Java +EAPI=5 +HOMEPAGE=http://www.gentoo.org/proj/en/java/ +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=!=dev-python/pygtk-2 nls? ( sys-devel/gettext ) =dev-lang/python-2* =dev-lang/python-2*[sqlite] -DESCRIPTION=Clean junk to free disk space and to maintain privacy -EAPI=5 -HOMEPAGE=http://bleachbit.sourceforge.net/ -IUSE=nls -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-3 -RDEPEND=>=dev-python/pygtk-2 =dev-lang/python-2* =dev-lang/python-2*[sqlite] -SLOT=0 -SRC_URI=mirror://sourceforge/bleachbit/bleachbit-0.9.4.tar.bz2 -_eclasses_=distutils 77fc6005d2dfcc7bdb5ec363a49d9912 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=e4306eef6471123aa4a5f781c96e1be1 diff --git a/metadata/md5-cache/sys-apps/bleachbit-0.9.5 b/metadata/md5-cache/sys-apps/bleachbit-0.9.5 index acc9d3309928..500999aeefb7 100644 --- a/metadata/md5-cache/sys-apps/bleachbit-0.9.5 +++ b/metadata/md5-cache/sys-apps/bleachbit-0.9.5 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/pygtk:2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7[sqlite] ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://sourceforge/bleachbit/bleachbit-0.9.5.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=3b20ba67ae84f525061588a7fe7fb15d +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=83b2f735eaf4203ab3b98bea204007c5 diff --git a/metadata/md5-cache/sys-apps/dtc-1.3.0 b/metadata/md5-cache/sys-apps/dtc-1.3.0 index ae9d777e55cb..6b8f75708dc3 100644 --- a/metadata/md5-cache/sys-apps/dtc-1.3.0 +++ b/metadata/md5-cache/sys-apps/dtc-1.3.0 @@ -3,9 +3,9 @@ DEPEND=sys-devel/flex sys-devel/bison DESCRIPTION=Open Firmware device-trees compiler EAPI=4 HOMEPAGE=http://www.t2-project.org/packages/dtc.html -KEYWORDS=amd64 ppc ppc64 x86 +KEYWORDS=amd64 arm ppc ppc64 x86 LICENSE=GPL-2 SLOT=0 SRC_URI=http://www.jdl.com/software/dtc-v1.3.0.tgz _eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=1bdb16fcd314fbef9ca6babdc440bad8 +_md5_=ba45c2dbc3c951800bbed3fc638b745f diff --git a/metadata/md5-cache/sys-apps/dtc-1.3.0-r1 b/metadata/md5-cache/sys-apps/dtc-1.3.0-r1 index 6451abced4a0..64220ea3cebd 100644 --- a/metadata/md5-cache/sys-apps/dtc-1.3.0-r1 +++ b/metadata/md5-cache/sys-apps/dtc-1.3.0-r1 @@ -4,9 +4,9 @@ DESCRIPTION=Open Firmware device-trees compiler EAPI=4 HOMEPAGE=http://git.jdl.com/gitweb/?p=dtc.git IUSE=static-libs -KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 LICENSE=GPL-2 SLOT=0 SRC_URI=http://www.jdl.com/software/dtc-v1.3.0.tgz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=095785270919d0b1fe7f7ff3d3f3f943 +_md5_=d0910cffa00819c90e046f4f165f3823 diff --git a/metadata/md5-cache/sys-apps/edac-utils-0.12 b/metadata/md5-cache/sys-apps/edac-utils-0.12 deleted file mode 100644 index d32d7884e9c0..000000000000 --- a/metadata/md5-cache/sys-apps/edac-utils-0.12 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile install postinst -DEPEND=sys-fs/sysfsutils -DESCRIPTION=Userspace helper for Linux kernel EDAC drivers -HOMEPAGE=http://sourceforge.net/projects/edac-utils/ -IUSE=debug -KEYWORDS=~amd64 -LICENSE=GPL-2 -RDEPEND=sys-fs/sysfsutils sys-apps/dmidecode -SLOT=0 -SRC_URI=mirror://sourceforge/edac-utils/edac-utils-0.12.tar.bz2 -_md5_=5e9888d358448566165e6dbf74181cc3 diff --git a/metadata/md5-cache/sys-apps/edac-utils-0.16 b/metadata/md5-cache/sys-apps/edac-utils-0.16 deleted file mode 100644 index ee2e9c300edb..000000000000 --- a/metadata/md5-cache/sys-apps/edac-utils-0.16 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=configure install postinst -DEPEND=sys-fs/sysfsutils -DESCRIPTION=Userspace helper for Linux kernel EDAC drivers -EAPI=2 -HOMEPAGE=http://sourceforge.net/projects/edac-utils/ -IUSE=debug -KEYWORDS=~amd64 -LICENSE=GPL-2 -RDEPEND=sys-fs/sysfsutils sys-apps/dmidecode -SLOT=0 -SRC_URI=mirror://sourceforge/edac-utils/edac-utils-0.16.tar.bz2 -_md5_=c402915c54f32b7e78793e883d865972 diff --git a/metadata/md5-cache/sys-apps/edac-utils-0.18 b/metadata/md5-cache/sys-apps/edac-utils-0.18 new file mode 100644 index 000000000000..0c2eb9370418 --- /dev/null +++ b/metadata/md5-cache/sys-apps/edac-utils-0.18 @@ -0,0 +1,13 @@ +DEFINED_PHASES=configure install postinst +DEPEND=sys-fs/sysfsutils +DESCRIPTION=Userspace helper for Linux kernel EDAC drivers +EAPI=5 +HOMEPAGE=https://github.com/grondo/edac-utils +IUSE=debug +KEYWORDS=~amd64 +LICENSE=GPL-2 +RDEPEND=sys-fs/sysfsutils sys-apps/dmidecode +SLOT=0 +SRC_URI=https://github.com/grondo/edac-utils/archive/0.18.tar.gz -> edac-utils-0.18.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=c20ab1c4b2a9d56958bb8d6cabf670f5 diff --git a/metadata/md5-cache/sys-apps/hwids-20130329 b/metadata/md5-cache/sys-apps/hwids-20130329 index 30d51cf38246..c6616b75f855 100644 --- a/metadata/md5-cache/sys-apps/hwids-20130329 +++ b/metadata/md5-cache/sys-apps/hwids-20130329 @@ -4,10 +4,10 @@ DESCRIPTION=Hardware (PCI, USB, OUI, IAB) IDs databases EAPI=5 HOMEPAGE=https://github.com/gentoo/hwids IUSE=+udev -KEYWORDS=alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux LICENSE=|| ( GPL-2 BSD ) public-domain RDEPEND=!=app-arch/xz-utils-5.0.4-r1 ) zlib? ( >=sys-libs/zlib-1.2.6 ) dev-libs/libxslt doc? ( dev-util/gtk-doc ) lzma? ( virtual/pkgconfig ) zlib? ( virtual/pkgconfig ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=library and tools for managing linux kernel modules +EAPI=5 +HOMEPAGE=http://git.kernel.org/?p=utils/kernel/kmod/kmod.git +IUSE=debug doc lzma static-libs +tools zlib kernel_linux +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=LGPL-2 +RDEPEND=!sys-apps/module-init-tools !sys-apps/modutils lzma? ( >=app-arch/xz-utils-5.0.4-r1 ) zlib? ( >=sys-libs/zlib-1.2.6 ) +RESTRICT=test +SLOT=0 +SRC_URI=mirror://kernel/linux/utils/kernel/kmod/kmod-13.tar.xz +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=0da9d53185c911240880bb72f15e320f diff --git a/metadata/md5-cache/sys-apps/kmod-9999 b/metadata/md5-cache/sys-apps/kmod-9999 index 60b5d4eaabd6..d828eb2c629e 100644 --- a/metadata/md5-cache/sys-apps/kmod-9999 +++ b/metadata/md5-cache/sys-apps/kmod-9999 @@ -1,7 +1,7 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack DEPEND=!sys-apps/module-init-tools !sys-apps/modutils lzma? ( >=app-arch/xz-utils-5.0.4-r1 ) zlib? ( >=sys-libs/zlib-1.2.6 ) dev-libs/libxslt doc? ( dev-util/gtk-doc ) lzma? ( virtual/pkgconfig ) zlib? ( virtual/pkgconfig ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/git DESCRIPTION=library and tools for managing linux kernel modules -EAPI=4 +EAPI=5 HOMEPAGE=http://git.kernel.org/?p=utils/kernel/kmod/kmod.git IUSE=debug doc lzma static-libs +tools zlib kernel_linux LICENSE=LGPL-2 @@ -9,4 +9,4 @@ RDEPEND=!sys-apps/module-init-tools !sys-apps/modutils lzma? ( >=app-arch/xz-uti RESTRICT=test SLOT=0 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=348038f814ba1ce9a6ec62576921631e +_md5_=c803763519b8a5994ce35e880cbf98ff diff --git a/metadata/md5-cache/sys-apps/sandbox-1.6-r2 b/metadata/md5-cache/sys-apps/sandbox-1.6-r2 index 8f2942a7a242..37fbd2e75717 100644 --- a/metadata/md5-cache/sys-apps/sandbox-1.6-r2 +++ b/metadata/md5-cache/sys-apps/sandbox-1.6-r2 @@ -6,5 +6,5 @@ KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/sandbox-1.6.tar.lzma http://dev.gentoo.org/~vapier/dist/sandbox-1.6.tar.lzma -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=52ccfd95493693371a597b6b9910974d diff --git a/metadata/md5-cache/sys-apps/sandbox-2.3-r1 b/metadata/md5-cache/sys-apps/sandbox-2.3-r1 index 118e94865ce1..35f61e1bc80f 100644 --- a/metadata/md5-cache/sys-apps/sandbox-2.3-r1 +++ b/metadata/md5-cache/sys-apps/sandbox-2.3-r1 @@ -7,5 +7,5 @@ KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/sandbox-2.3.tar.xz http://dev.gentoo.org/~vapier/dist/sandbox-2.3.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=051d98f8db05ffee66e6ad6702c669b6 diff --git a/metadata/md5-cache/sys-apps/sandbox-2.4 b/metadata/md5-cache/sys-apps/sandbox-2.4 index db2eb14fc704..73449b66955a 100644 --- a/metadata/md5-cache/sys-apps/sandbox-2.4 +++ b/metadata/md5-cache/sys-apps/sandbox-2.4 @@ -7,5 +7,5 @@ KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/sandbox-2.4.tar.xz http://dev.gentoo.org/~vapier/dist/sandbox-2.4.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3b9e875a2f881c2f453a1edeb245c90a diff --git a/metadata/md5-cache/sys-apps/sandbox-2.5 b/metadata/md5-cache/sys-apps/sandbox-2.5 index 8c608622ac86..df0720a168ff 100644 --- a/metadata/md5-cache/sys-apps/sandbox-2.5 +++ b/metadata/md5-cache/sys-apps/sandbox-2.5 @@ -7,5 +7,5 @@ KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/sandbox-2.5.tar.xz http://dev.gentoo.org/~vapier/dist/sandbox-2.5.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ec4079d11c54e39d01adc71c2c7eb261 diff --git a/metadata/md5-cache/sys-apps/sandbox-2.6-r1 b/metadata/md5-cache/sys-apps/sandbox-2.6-r1 index a39a7c8cb477..167dd340f3c3 100644 --- a/metadata/md5-cache/sys-apps/sandbox-2.6-r1 +++ b/metadata/md5-cache/sys-apps/sandbox-2.6-r1 @@ -7,5 +7,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/sandbox-2.6.tar.xz http://dev.gentoo.org/~vapier/dist/sandbox-2.6.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=481c7bfca560b46885f8c3ecb7ff037c diff --git a/metadata/md5-cache/sys-apps/texinfo-4.13-r2 b/metadata/md5-cache/sys-apps/texinfo-4.13-r2 index 6b847c9c0a32..d279af73360d 100644 --- a/metadata/md5-cache/sys-apps/texinfo-4.13-r2 +++ b/metadata/md5-cache/sys-apps/texinfo-4.13-r2 @@ -4,10 +4,10 @@ DESCRIPTION=The GNU info program and utilities EAPI=2 HOMEPAGE=http://www.gnu.org/software/texinfo/ IUSE=nls static -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-3 RDEPEND=!=app-text/tetex-2* >=sys-libs/ncurses-5.2-r2 nls? ( virtual/libintl ) SLOT=0 SRC_URI=mirror://gnu/texinfo/texinfo-4.13.tar.lzma _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=38d2c7cfe02cf3ea9ad41e44cf84e843 +_md5_=8f8a283859ee23bb1a07784427c560d8 diff --git a/metadata/md5-cache/sys-auth/keystone-2012.2.3-r2 b/metadata/md5-cache/sys-auth/keystone-2012.2.3-r2 index 98712965a1b3..9a564bf5aa81 100644 --- a/metadata/md5-cache/sys-auth/keystone-2012.2.3-r2 +++ b/metadata/md5-cache/sys-auth/keystone-2012.2.3-r2 @@ -11,5 +11,5 @@ REQUIRED_USE=|| ( ldap mysql postgres sqlite ) RESTRICT=test SLOT=folsom SRC_URI=http://launchpad.net/keystone/folsom/2012.2.3/+download/keystone-2012.2.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=5a4503e6a8e64df0e50c5143878d967d diff --git a/metadata/md5-cache/sys-auth/keystone-2013.1 b/metadata/md5-cache/sys-auth/keystone-2013.1 new file mode 100644 index 000000000000..d84bea877532 --- /dev/null +++ b/metadata/md5-cache/sys-auth/keystone-2013.1 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=Keystone is the Openstack authentication, authorization, and service catalog written in Python. +EAPI=5 +HOMEPAGE=https://launchpad.net/keystone +IUSE=+sqlite mysql postgres ldap python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] 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/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-keystoneclient-0.2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <=dev-python/python-keystoneclient-0.3[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/lxml[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/passlib[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/paste[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pastedeploy[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-daemon >=dev-python/python-pam-0.1.4[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.2 =dev-python/webob-1.2.3-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite] <=dev-python/sqlalchemy-0.7.9[sqlite] ) mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql] <=dev-python/sqlalchemy-0.7.9[mysql] ) postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres] <=dev-python/sqlalchemy-0.7.9[postgres] ) ldap? ( dev-python/python-ldap[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +REQUIRED_USE=|| ( ldap mysql postgres sqlite ) +RESTRICT=test +SLOT=folsom +SRC_URI=http://launchpad.net/keystone/grizzly/2013.1/+download/keystone-2013.1.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=9ffbf538c8ca386ffe829c45f8da458a diff --git a/metadata/md5-cache/sys-auth/keystone-9999 b/metadata/md5-cache/sys-auth/keystone-9999 index 38d003513c09..f86dad7b7cb0 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_6(-)?,python_targets_python REQUIRED_USE=|| ( ldap mysql postgres sqlite ) RESTRICT=test SLOT=folsom -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2abbd5184ceca7c72512167edee8c4b6 diff --git a/metadata/md5-cache/sys-auth/polkit-0.110 b/metadata/md5-cache/sys-auth/polkit-0.110 index 53db8f087169..c9dd252ba228 100644 --- a/metadata/md5-cache/sys-auth/polkit-0.110 +++ b/metadata/md5-cache/sys-auth/polkit-0.110 @@ -10,5 +10,5 @@ PDEPEND=gtk? ( || ( >=gnome-extra/polkit-gnome-0.105 lxde-base/lxpolkit ) ) kde? RDEPEND=>=dev-lang/spidermonkey-1.8.5-r1[-debug] >=dev-libs/glib-2.32 >=dev-libs/expat-2 introspection? ( >=dev-libs/gobject-introspection-1 ) pam? ( sys-auth/pambase virtual/pam ) selinux? ( sec-policy/selinux-policykit ) systemd? ( sys-apps/systemd ) SLOT=0 SRC_URI=http://www.freedesktop.org/software/polkit/releases/polkit-0.110.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 pax-utils a0cae5abb25d0ff197d56bf838502fa1 systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pam 5c1a9ef4892062f9ec25c8ef7c1f1e52 pax-utils d727728a240d5f59bf9370a64259fd61 systemd 0c62b9aceddad24eb96da235b42eded1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3fcee1a7e595e31be41f1bca7dd2043b diff --git a/metadata/md5-cache/sys-auth/polkit-kde-agent-0.99.0 b/metadata/md5-cache/sys-auth/polkit-kde-agent-0.99.0 deleted file mode 100644 index efa41a221b41..000000000000 --- a/metadata/md5-cache/sys-auth/polkit-kde-agent-0.99.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=sys-auth/polkit-qt-0.98_pre >=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.0:4[accessibility,dbus] >=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=PolKit agent module for KDE. -EAPI=3 -HOMEPAGE=http://www.kde.org -IUSE=debug linguas_ca linguas_ca@valencia linguas_cs linguas_da linguas_de linguas_en_GB linguas_eo linguas_es linguas_et linguas_fi linguas_fr linguas_ga linguas_gl linguas_hr linguas_hu linguas_is linguas_it linguas_ja linguas_km linguas_lt linguas_nb linguas_mai linguas_ms linguas_nds linguas_nl linguas_pa linguas_pt linguas_pt_BR linguas_ro linguas_ru linguas_sk linguas_sr linguas_sr@ijekavian linguas_sr@ijekavianlatin linguas_sr@latin linguas_sv linguas_th linguas_tr linguas_uk linguas_zh_TW aqua -KEYWORDS=amd64 ~arm ppc ~ppc64 x86 -LICENSE=GPL-2 -RDEPEND=>=sys-auth/polkit-qt-0.98_pre !sys-auth/polkit-kde >=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.0:4[accessibility,dbus] >=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=mirror://kde/stable/apps/KDE4.x/admin/polkit-kde-agent-1-0.99.0.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 cmake-utils bc8bbf26de246f74e2901a3696ad96d6 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 kde4-base 2cedb58982ff5f6a497a00d05779530a kde4-functions 597dae8331dc9b795e3a5797bf7da048 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=9f83ba146bac6e9cfaf0c352d41d7ad6 diff --git a/metadata/md5-cache/sys-block/gparted-0.12.0 b/metadata/md5-cache/sys-block/gparted-0.12.0 deleted file mode 100644 index 119ff97a1c2c..000000000000 --- a/metadata/md5-cache/sys-block/gparted-0.12.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-cpp/gtkmm-2.16:2.4 >=dev-libs/glib-2 >=sys-block/parted-3 app-text/docbook-xml-dtd:4.1.2 app-text/gnome-doc-utils app-text/rarian dev-util/intltool virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 -DESCRIPTION=Gnome Partition Editor -EAPI=4 -HOMEPAGE=http://gparted.sourceforge.net/ -IUSE=btrfs dmraid fat gtk hfs jfs kde mdadm ntfs reiserfs reiser4 xfs -KEYWORDS=amd64 x86 -LICENSE=GPL-2 -RDEPEND=>=dev-cpp/gtkmm-2.16:2.4 >=dev-libs/glib-2 >=sys-block/parted-3 gtk? ( x11-libs/gksu ) kde? ( kde-base/kdesu ) >=sys-fs/e2fsprogs-1.41 btrfs? ( sys-fs/btrfs-progs ) dmraid? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) sys-fs/dmraid sys-fs/multipath-tools ) fat? ( sys-fs/dosfstools sys-fs/mtools ) hfs? ( sys-fs/diskdev_cmds virtual/udev sys-fs/hfsutils ) jfs? ( sys-fs/jfsutils ) mdadm? ( sys-fs/mdadm ) ntfs? ( >=sys-fs/ntfs3g-2011.4.12[ntfsprogs] ) reiserfs? ( sys-fs/reiserfsprogs ) reiser4? ( sys-fs/reiser4progs ) xfs? ( sys-fs/xfsprogs sys-fs/xfsdump ) -SLOT=0 -SRC_URI=mirror://sourceforge/gparted/gparted-0.12.0.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=8b4d730ef7fb6de7b4f9816f64fb0972 diff --git a/metadata/md5-cache/sys-block/gparted-0.14.0 b/metadata/md5-cache/sys-block/gparted-0.14.0 deleted file mode 100644 index 3a76eccbcbfe..000000000000 --- a/metadata/md5-cache/sys-block/gparted-0.14.0 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare unpack -DEPEND=>=dev-cpp/gtkmm-2.22:2.4 >=dev-libs/glib-2 >=sys-block/parted-3.1 app-text/docbook-xml-dtd:4.1.2 app-text/gnome-doc-utils app-text/rarian dev-util/intltool virtual/pkgconfig app-arch/xz-utils >=sys-apps/sed-4 -DESCRIPTION=Gnome Partition Editor -EAPI=4 -HOMEPAGE=http://gparted.sourceforge.net/ -IUSE=btrfs dmraid fat gtk hfs jfs kde mdadm ntfs policykit reiserfs reiser4 xfs -KEYWORDS=~amd64 ~x86 -LICENSE=GPL-2 -RDEPEND=>=dev-cpp/gtkmm-2.22:2.4 >=dev-libs/glib-2 >=sys-block/parted-3.1 !policykit? ( gtk? ( x11-libs/gksu ) kde? ( kde-base/kdesu ) ) policykit? ( sys-auth/polkit ) >=sys-apps/util-linux-2.20 >=sys-fs/e2fsprogs-1.41 btrfs? ( sys-fs/btrfs-progs ) dmraid? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) sys-fs/dmraid sys-fs/multipath-tools ) fat? ( sys-fs/dosfstools sys-fs/mtools ) hfs? ( sys-fs/diskdev_cmds virtual/udev sys-fs/hfsutils ) jfs? ( sys-fs/jfsutils ) mdadm? ( sys-fs/mdadm ) ntfs? ( >=sys-fs/ntfs3g-2011.4.12[ntfsprogs] ) reiserfs? ( sys-fs/reiserfsprogs ) reiser4? ( sys-fs/reiser4progs ) xfs? ( sys-fs/xfsprogs sys-fs/xfsdump ) -SLOT=0 -SRC_URI=mirror://sourceforge/gparted/gparted-0.14.0.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=c3c5f5169a5e343b68e6ef286718ba72 diff --git a/metadata/md5-cache/sys-block/gparted-0.14.1 b/metadata/md5-cache/sys-block/gparted-0.14.1 index f363f80af289..691697fdf92c 100644 --- a/metadata/md5-cache/sys-block/gparted-0.14.1 +++ b/metadata/md5-cache/sys-block/gparted-0.14.1 @@ -6,8 +6,8 @@ HOMEPAGE=http://gparted.sourceforge.net/ IUSE=btrfs dmraid fat gtk hfs jfs kde mdadm ntfs policykit reiserfs reiser4 xfs KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=>=dev-cpp/gtkmm-2.22:2.4 >=dev-libs/glib-2:2 >=sys-block/parted-3.1:= !policykit? ( gtk? ( x11-libs/gksu ) kde? ( kde-base/kdesu ) ) policykit? ( sys-auth/polkit ) >=sys-apps/util-linux-2.20 >=sys-fs/e2fsprogs-1.41 btrfs? ( sys-fs/btrfs-progs ) dmraid? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) sys-fs/dmraid sys-fs/multipath-tools ) fat? ( sys-fs/dosfstools sys-fs/mtools ) hfs? ( sys-fs/diskdev_cmds virtual/udev sys-fs/hfsutils ) jfs? ( sys-fs/jfsutils ) mdadm? ( sys-fs/mdadm ) ntfs? ( >=sys-fs/ntfs3g-2011.4.12[ntfsprogs] ) reiserfs? ( sys-fs/reiserfsprogs ) reiser4? ( sys-fs/reiser4progs ) xfs? ( sys-fs/xfsprogs sys-fs/xfsdump ) +RDEPEND=>=dev-cpp/gtkmm-2.22:2.4 >=dev-libs/glib-2:2 >=sys-block/parted-3.1:= !policykit? ( gtk? ( x11-libs/gksu ) kde? ( kde-base/kdesu ) ) policykit? ( sys-auth/polkit ) >=sys-apps/util-linux-2.20 >=sys-fs/e2fsprogs-1.41 btrfs? ( sys-fs/btrfs-progs ) dmraid? ( >=sys-fs/lvm2-2.02.45 sys-fs/dmraid sys-fs/multipath-tools ) fat? ( sys-fs/dosfstools sys-fs/mtools ) hfs? ( sys-fs/diskdev_cmds virtual/udev sys-fs/hfsutils ) jfs? ( sys-fs/jfsutils ) mdadm? ( sys-fs/mdadm ) ntfs? ( >=sys-fs/ntfs3g-2011.4.12[ntfsprogs] ) reiserfs? ( sys-fs/reiserfsprogs ) reiser4? ( sys-fs/reiser4progs ) xfs? ( sys-fs/xfsprogs sys-fs/xfsdump ) SLOT=0 SRC_URI=mirror://sourceforge/gparted/gparted-0.14.1.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=270bd45a0f28386c2565a716069aba20 +_md5_=b2a38b0ff2d8d9b71c4cd72ed99b2ac1 diff --git a/metadata/md5-cache/sys-block/hpacucli-9.30.15.0 b/metadata/md5-cache/sys-block/hpacucli-9.30.15.0 index c25f25543ca2..f819b3315beb 100644 --- a/metadata/md5-cache/sys-block/hpacucli-9.30.15.0 +++ b/metadata/md5-cache/sys-block/hpacucli-9.30.15.0 @@ -8,5 +8,5 @@ LICENSE=hp-proliant-essentials RDEPEND=sys-apps/coreutils sys-process/procps >=sys-apps/util-linux-2.20.1 SLOT=0 SRC_URI=amd64? ( ftp://ftp.hp.com/pub/softlib2/software1/pubsw-linux/p1257348637/v77370/hpacucli-9.30-15.0.x86_64.rpm ) x86? ( ftp://ftp.hp.com/pub/softlib2/software1/pubsw-linux/p414707558/v77371/hpacucli-9.30-15.0.i386.rpm ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 rpm b94b54b44f14d6bee3e966c8f5c86fba toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 rpm b94b54b44f14d6bee3e966c8f5c86fba toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=3091e8fd3ad14c67e3073f05e30cd642 diff --git a/metadata/md5-cache/sys-block/parted-2.3 b/metadata/md5-cache/sys-block/parted-2.3 index 0843df8bd7a4..692c41e2a7b0 100644 --- a/metadata/md5-cache/sys-block/parted-2.3 +++ b/metadata/md5-cache/sys-block/parted-2.3 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare test -DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) virtual/pkgconfig =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) virtual/pkgconfig =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Create, destroy, resize, check, copy partitions and file systems EAPI=2 HOMEPAGE=http://www.gnu.org/software/parted IUSE=nls readline +debug selinux device-mapper KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 LICENSE=GPL-3 -RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) +RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=mirror://gnu/parted/parted-2.3.tar.gz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=318cd459debf71261793d93af484f6eb +_md5_=a4c5c3fdbae5a3718c6b5f9a9a92887a diff --git a/metadata/md5-cache/sys-block/parted-2.3-r1 b/metadata/md5-cache/sys-block/parted-2.3-r1 index fd9393949667..6201855541e9 100644 --- a/metadata/md5-cache/sys-block/parted-2.3-r1 +++ b/metadata/md5-cache/sys-block/parted-2.3-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare test -DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) virtual/pkgconfig =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) virtual/pkgconfig =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Create, destroy, resize, check, copy partitions and file systems EAPI=3 HOMEPAGE=http://www.gnu.org/software/parted IUSE=nls readline +debug selinux device-mapper KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-3 -RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) +RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=mirror://gnu/parted/parted-2.3.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9428028bc2db526a50d82d253f576d42 +_md5_=836e266aced2d0ceb76af0dffd04b5c1 diff --git a/metadata/md5-cache/sys-block/parted-2.3-r2 b/metadata/md5-cache/sys-block/parted-2.3-r2 index 6049fe06430b..af9006ddfc94 100644 --- a/metadata/md5-cache/sys-block/parted-2.3-r2 +++ b/metadata/md5-cache/sys-block/parted-2.3-r2 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare test -DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) virtual/pkgconfig =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) virtual/pkgconfig =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Create, destroy, resize, check, copy partitions and file systems EAPI=3 HOMEPAGE=http://www.gnu.org/software/parted IUSE=+debug device-mapper nls readline selinux static-libs KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-3 -RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) +RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=mirror://gnu/parted/parted-2.3.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=af222d83249fb0c34600aad7c887160f +_md5_=5c2ab828662c5907a58d6a126ecc2c8d diff --git a/metadata/md5-cache/sys-block/parted-2.4 b/metadata/md5-cache/sys-block/parted-2.4 index 55ec1740a10a..cdab0a6b7553 100644 --- a/metadata/md5-cache/sys-block/parted-2.4 +++ b/metadata/md5-cache/sys-block/parted-2.4 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare test -DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) virtual/pkgconfig =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) virtual/pkgconfig =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Create, destroy, resize, check, copy partitions and file systems EAPI=3 HOMEPAGE=http://www.gnu.org/software/parted IUSE=+debug device-mapper nls readline selinux static-libs KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-3 -RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) +RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=mirror://gnu/parted/parted-2.4.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6a71f6860090dd9adfa187b9ef879bb4 +_md5_=ee73ca44bb5caf697ecb7279bd507ff7 diff --git a/metadata/md5-cache/sys-block/parted-3.0 b/metadata/md5-cache/sys-block/parted-3.0 index cb3ba7c89558..bcd4feaa1588 100644 --- a/metadata/md5-cache/sys-block/parted-3.0 +++ b/metadata/md5-cache/sys-block/parted-3.0 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare test -DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) virtual/pkgconfig test? ( >=dev-libs/check-0.9.3 ) =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) virtual/pkgconfig test? ( >=dev-libs/check-0.9.3 ) =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Create, destroy, resize, check, copy partitions and file systems EAPI=3 HOMEPAGE=http://www.gnu.org/software/parted IUSE=+debug device-mapper nls readline selinux static-libs test KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 LICENSE=GPL-3 -RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) +RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.2 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=mirror://gnu/parted/parted-3.0.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=8d65c4cd8e7d26b3ff9f4f1d0900f8cc +_md5_=49c7061c8d91b23f030b41a616826e1f diff --git a/metadata/md5-cache/sys-block/parted-3.1 b/metadata/md5-cache/sys-block/parted-3.1 index 55c0c91f1192..a6e5309d1ed2 100644 --- a/metadata/md5-cache/sys-block/parted-3.1 +++ b/metadata/md5-cache/sys-block/parted-3.1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare test -DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.7-r7 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) virtual/pkgconfig test? ( >=dev-libs/check-0.9.3 ) =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.7-r7 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) virtual/pkgconfig test? ( >=dev-libs/check-0.9.3 ) =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Create, destroy, resize, check, copy partitions and file systems EAPI=4 HOMEPAGE=http://www.gnu.org/software/parted IUSE=+debug device-mapper nls readline selinux static-libs test KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 LICENSE=GPL-3 -RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.7-r7 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) +RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.7-r7 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=mirror://gnu/parted/parted-3.1.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=bd3310d8c5287a00c006daa3edb87e77 +_md5_=7a5e1d550275dfa7f0b5708000f09f9b diff --git a/metadata/md5-cache/sys-block/parted-3.1-r1 b/metadata/md5-cache/sys-block/parted-3.1-r1 index eae89055d447..d73e23afe90e 100644 --- a/metadata/md5-cache/sys-block/parted-3.1-r1 +++ b/metadata/md5-cache/sys-block/parted-3.1-r1 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare test -DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.7-r7 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) virtual/pkgconfig test? ( >=dev-libs/check-0.9.3 dev-perl/Digest-CRC ) =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.7-r7 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) virtual/pkgconfig test? ( >=dev-libs/check-0.9.3 dev-perl/Digest-CRC ) =sys-devel/automake-1.11* >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Create, destroy, resize, check, copy partitions and file systems EAPI=4 HOMEPAGE=http://www.gnu.org/software/parted IUSE=+debug device-mapper nls readline selinux static-libs test KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=GPL-3 -RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.7-r7 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) +RDEPEND=>=sys-fs/e2fsprogs-1.27 >=sys-libs/ncurses-5.7-r7 nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=mirror://gnu/parted/parted-3.1.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=2f28c5f0eed14e9808d3f9561e8d69fa +_md5_=cd03b0b35a940f6c15d351316264c78f diff --git a/metadata/md5-cache/sys-boot/grub-0.97-r10 b/metadata/md5-cache/sys-boot/grub-0.97-r10 index 7f6aeeccf9d2..136cbe220d8e 100644 --- a/metadata/md5-cache/sys-boot/grub-0.97-r10 +++ b/metadata/md5-cache/sys-boot/grub-0.97-r10 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=ncurses? ( >=sys-libs/ncurses-5.2-r5 amd64? ( app-emulation/emul-linux-x86-baselibs ) ) SLOT=0 SRC_URI=mirror://gentoo/grub-0.97.tar.gz mirror://gnu-alpha/grub/grub-0.97.tar.gz mirror://gentoo/splash.xpm.gz mirror://gentoo/grub-0.97-patches-1.12.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8da2c3dbab83d5a5f6afee0a111c1685 diff --git a/metadata/md5-cache/sys-boot/grub-0.97-r11 b/metadata/md5-cache/sys-boot/grub-0.97-r11 index 4fe01711e97e..0f6ae1201a05 100644 --- a/metadata/md5-cache/sys-boot/grub-0.97-r11 +++ b/metadata/md5-cache/sys-boot/grub-0.97-r11 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=ncurses? ( >=sys-libs/ncurses-5.2-r5 amd64? ( app-emulation/emul-linux-x86-baselibs ) ) SLOT=0 SRC_URI=mirror://gentoo/grub-0.97.tar.gz mirror://gnu-alpha/grub/grub-0.97.tar.gz mirror://gentoo/splash.xpm.gz mirror://gentoo/grub-0.97-patches-1.13.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4ae0644d8eccf0754eed45857a3d39c9 diff --git a/metadata/md5-cache/sys-boot/grub-0.97-r12 b/metadata/md5-cache/sys-boot/grub-0.97-r12 index 6357bf52d45e..8ea76f1e835a 100644 --- a/metadata/md5-cache/sys-boot/grub-0.97-r12 +++ b/metadata/md5-cache/sys-boot/grub-0.97-r12 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=ncurses? ( >=sys-libs/ncurses-5.2-r5 amd64? ( app-emulation/emul-linux-x86-baselibs ) ) SLOT=0 SRC_URI=mirror://gentoo/grub-0.97.tar.gz mirror://gnu-alpha/grub/grub-0.97.tar.gz mirror://gentoo/splash.xpm.gz mirror://gentoo/grub-0.97-patches-1.14.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=299e9eb0b4af2768ecf8b15b7c7d45f8 diff --git a/metadata/md5-cache/sys-boot/grub-0.97-r13 b/metadata/md5-cache/sys-boot/grub-0.97-r13 index 4d6a4a783901..579061b7def2 100644 --- a/metadata/md5-cache/sys-boot/grub-0.97-r13 +++ b/metadata/md5-cache/sys-boot/grub-0.97-r13 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=!static? ( ncurses? ( >=sys-libs/ncurses-5.2-r5 amd64? ( app-emulation/emul-linux-x86-baselibs ) ) ) SLOT=0 SRC_URI=mirror://gentoo/grub-0.97.tar.gz mirror://gnu-alpha/grub/grub-0.97.tar.gz mirror://gentoo/splash.xpm.gz mirror://gentoo/grub-0.97-patches-1.14.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=43b757f366ba2573757dbc83a2ef2472 diff --git a/metadata/md5-cache/sys-boot/grub-1.99-r2 b/metadata/md5-cache/sys-boot/grub-1.99-r2 index 76474e85dff6..44f12fe7e537 100644 --- a/metadata/md5-cache/sys-boot/grub-1.99-r2 +++ b/metadata/md5-cache/sys-boot/grub-1.99-r2 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/libisoburn dev-libs/lzo sys-boot/os-prober >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/libsdl ) ) device-mapper? ( >=sys-fs/lvm2-2.02.45 ) truetype? ( media-libs/freetype >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) SLOT=2 SRC_URI=mirror://gnu/grub/grub-1.99.tar.xz mirror://gentoo/grub-1.99.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de mount-boot 02dd3bb4c5f025fef0fc3ade0f27c217 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3ef3ecfc376459a3d56031b7f44a1a57 diff --git a/metadata/md5-cache/sys-boot/grub-2.00-r1 b/metadata/md5-cache/sys-boot/grub-2.00-r1 index 044aa8af2993..d6cdfbf5f5c3 100644 --- a/metadata/md5-cache/sys-boot/grub-2.00-r1 +++ b/metadata/md5-cache/sys-boot/grub-2.00-r1 @@ -10,5 +10,5 @@ RDEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/l REQUIRED_USE=grub_platforms_qemu? ( truetype ) grub_platforms_yeeloong? ( truetype ) SLOT=2 SRC_URI=mirror://gnu/grub/grub-2.00.tar.xz mirror://gentoo/grub-2.00.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bc5df6468757330e775874e705132c63 diff --git a/metadata/md5-cache/sys-boot/grub-2.00-r2 b/metadata/md5-cache/sys-boot/grub-2.00-r2 index 7fb18e405be4..9797bfeac041 100644 --- a/metadata/md5-cache/sys-boot/grub-2.00-r2 +++ b/metadata/md5-cache/sys-boot/grub-2.00-r2 @@ -10,5 +10,5 @@ RDEPEND=app-arch/xz-utils >=sys-libs/ncurses-5.2-r5 debug? ( sdl? ( media-libs/l REQUIRED_USE=grub_platforms_qemu? ( truetype ) grub_platforms_yeeloong? ( truetype ) SLOT=2 SRC_URI=mirror://gnu/grub/grub-2.00.tar.xz mirror://gentoo/grub-2.00.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=87a60b18a558fcd03643a119ef6133ba diff --git a/metadata/md5-cache/sys-boot/grub-2.00_beta6 b/metadata/md5-cache/sys-boot/grub-2.00_beta6 index 161bd0d9ce66..9eba2b67bbac 100644 --- a/metadata/md5-cache/sys-boot/grub-2.00_beta6 +++ b/metadata/md5-cache/sys-boot/grub-2.00_beta6 @@ -8,5 +8,5 @@ LICENSE=GPL-3 RDEPEND=dev-libs/lzo >=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 >=media-fonts/unifont-5 ) ppc? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) ppc64? ( sys-apps/ibm-powerpc-utils sys-apps/powerpc-utils ) grub_platforms_efi-32? ( sys-boot/efibootmgr ) grub_platforms_efi-64? ( sys-boot/efibootmgr ) SLOT=2 SRC_URI=mirror://gnu-alpha/grub/grub-2.00~beta6.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c1f36a7fc2603190b012d6e1fd37c9af diff --git a/metadata/md5-cache/sys-boot/grub-9999 b/metadata/md5-cache/sys-boot/grub-9999 index 504111f95054..9c2e19aa83a2 100644 --- a/metadata/md5-cache/sys-boot/grub-9999 +++ b/metadata/md5-cache/sys-boot/grub-9999 @@ -8,5 +8,5 @@ LICENSE=GPL-3 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 media-fonts/dejavu >=media-fonts/unifont-5 ) 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 ) ) REQUIRED_USE=grub_platforms_qemu? ( truetype ) grub_platforms_yeeloong? ( truetype ) SLOT=2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 bzr 876798528c0cd872742b74bf784738cf eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 bzr 876798528c0cd872742b74bf784738cf eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ce3b829d5c55daa5be1fd0f369192b81 diff --git a/metadata/md5-cache/sys-boot/lilo-22.8-r2 b/metadata/md5-cache/sys-boot/lilo-22.8-r2 index b1d4a7f0decf..b10966ce0643 100644 --- a/metadata/md5-cache/sys-boot/lilo-22.8-r2 +++ b/metadata/md5-cache/sys-boot/lilo-22.8-r2 @@ -5,8 +5,8 @@ HOMEPAGE=http://lilo.go.dyndns.org/pub/linux/lilo/ IUSE=static minimal pxeserial device-mapper KEYWORDS=-* amd64 x86 LICENSE=BSD GPL-2 -RDEPEND=device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 >=sys-fs/device-mapper-1.02.12 ) ) +RDEPEND=device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=http://home.san.rr.com/johninsd/pub/linux/lilo/lilo-22.8.src.tar.gz ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/lilo-22.8.src.tar.gz ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/obsolete/lilo-22.8.src.tar.gz mirror://gentoo/dolilo-0.5.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=d2b8350fc74095c2fa5bae036d2ffa93 +_md5_=1034d37c1eb6c344135fd3d9b250ef6d diff --git a/metadata/md5-cache/sys-boot/lilo-23.2-r1 b/metadata/md5-cache/sys-boot/lilo-23.2-r1 index cd12d63d6110..09e39b913d8c 100644 --- a/metadata/md5-cache/sys-boot/lilo-23.2-r1 +++ b/metadata/md5-cache/sys-boot/lilo-23.2-r1 @@ -6,8 +6,8 @@ HOMEPAGE=https://alioth.debian.org/projects/lilo/ IUSE=static minimal pxeserial device-mapper KEYWORDS=-* ~amd64 ~x86 LICENSE=BSD GPL-2 -RDEPEND=device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 >=sys-fs/device-mapper-1.02.12 ) ) +RDEPEND=device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=http://lilo.alioth.debian.org/ftp/sources/lilo-23.2.tar.gz mirror://gentoo/dolilo-0.5.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=5d5cceba6aba6c54cef7961da12f2f18 +_md5_=0d1bf9dbc42c889f21519e8b6ca147b5 diff --git a/metadata/md5-cache/sys-boot/lilo-23.2-r2 b/metadata/md5-cache/sys-boot/lilo-23.2-r2 index 489968796698..c72ea8e136be 100644 --- a/metadata/md5-cache/sys-boot/lilo-23.2-r2 +++ b/metadata/md5-cache/sys-boot/lilo-23.2-r2 @@ -6,8 +6,8 @@ HOMEPAGE=https://alioth.debian.org/projects/lilo/ IUSE=static minimal pxeserial device-mapper KEYWORDS=-* amd64 x86 LICENSE=BSD GPL-2 -RDEPEND=device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 >=sys-fs/device-mapper-1.02.12 ) ) +RDEPEND=device-mapper? ( >=sys-fs/lvm2-2.02.45 ) SLOT=0 SRC_URI=http://lilo.alioth.debian.org/ftp/sources/lilo-23.2.tar.gz mirror://gentoo/dolilo-0.5.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=4dd59f32cc3049f59a737b527e5a46a7 +_md5_=21117a3cee5be22b24402e9cfb3697ac diff --git a/metadata/md5-cache/sys-cluster/cinder-2012.2.3 b/metadata/md5-cache/sys-cluster/cinder-2012.2.3 index b76c1ad366ca..5b8de6665bf1 100644 --- a/metadata/md5-cache/sys-cluster/cinder-2012.2.3 +++ b/metadata/md5-cache/sys-cluster/cinder-2012.2.3 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND==dev-python/amqplib-0.6.1 >=dev-python/anyjson-0.2.4 >=dev-python/eventlet-0.9.17 =dev-python/kombu-1.0.4 =dev-python/lockfile-0.8 >=dev-python/lxml-2.3 =dev-python/routes-1.12.3 >=dev-python/webob-1.0.8 >=dev-python/greenlet-0.3.1 =dev-python/pastedeploy-1.5.0 dev-python/paste >=dev-python/sqlalchemy-0.7.3 <=dev-python/sqlalchemy-0.7.9 >=dev-python/sqlalchemy-migrate-0.7.2 >=dev-python/stevedore-0.8 =dev-python/suds-0.4 dev-python/paramiko >=dev-python/Babel-0.9.6 >=dev-python/iso8601-0.1.4 >=dev-python/setuptools-git-0.4 >=dev-python/python-glanceclient-0.5.0 =dev-python/python-keystoneclient-0.2.0 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://launchpad.net/cinder/folsom/2012.2.3/+download/cinder-2012.2.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=3374f09988304adc6792736985f346b4 diff --git a/metadata/md5-cache/sys-cluster/cinder-2013.1 b/metadata/md5-cache/sys-cluster/cinder-2013.1 new file mode 100644 index 000000000000..2c72349e6945 --- /dev/null +++ b/metadata/md5-cache/sys-cluster/cinder-2013.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=Cinder is the OpenStack Block storage service. This is a spin out of nova-volumes. +EAPI=5 +HOMEPAGE=https://launchpad.net/cinder +IUSE=python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND==dev-python/amqplib-0.6.1 >=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 >=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 >=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(-)] >=dev-python/sqlalchemy-0.7.3 <=dev-python/sqlalchemy-0.7.9 >=dev-python/sqlalchemy-migrate-0.7.2 >=dev-python/stevedore-0.8 >=dev-python/suds-0.4 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 =dev-python/python-keystoneclient-0.2.0 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(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +SLOT=0 +SRC_URI=http://launchpad.net/cinder/grizzly/2013.1/+download/cinder-2013.1.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=3c7f13af2083c2e5fd4b7bc224af7a78 diff --git a/metadata/md5-cache/sys-cluster/nova-2012.2.3-r3 b/metadata/md5-cache/sys-cluster/nova-2012.2.3-r3 index d2ae9d236b9d..8aff99c4fe9e 100644 --- a/metadata/md5-cache/sys-cluster/nova-2012.2.3-r3 +++ b/metadata/md5-cache/sys-cluster/nova-2012.2.3-r3 @@ -9,5 +9,5 @@ LICENSE=Apache-2.0 RDEPEND==dev-python/amqplib-0.6.1 >=dev-python/anyjson-0.2.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/sqlalchemy-0.7.8 <=dev-python/sqlalchemy-0.7.9 =dev-python/boto-2.1.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/eventlet-0.9.17 =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.0.8-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-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 dev-python/netaddr =dev-python/suds-0.4 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/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-glanceclient-0.5.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/python-quantumclient-2.1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://launchpad.net/nova/folsom/2012.2.3/+download/nova-2012.2.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e73f0f5ffc2a91d9781fda66f7464413 diff --git a/metadata/md5-cache/sys-cluster/nova-2013.1 b/metadata/md5-cache/sys-cluster/nova-2013.1 new file mode 100644 index 000000000000..cdc51d28f16a --- /dev/null +++ b/metadata/md5-cache/sys-cluster/nova-2013.1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +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=python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +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 >=dev-python/sqlalchemy-0.7.8 <=dev-python/sqlalchemy-0.7.99 dev-python/boto[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 >=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 dev-python/netaddr >=dev-python/suds-0.4 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-quantumclient-2.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <=dev-python/python-quantumclient-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 >dev-python/websockify-0.4[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(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +SLOT=0 +SRC_URI=http://launchpad.net/nova/grizzly/2013.1/+download/nova-2013.1.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=45fb878a357a2af75f96eb18f49716d2 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 539fb022db4d..e53355654044 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 @@ -9,5 +9,5 @@ LICENSE=openpbs RDEPEND=sys-cluster/torque python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=ftp://ftp.sara.nl/pub/outgoing/pbs_python-4.3.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ae881c004c2f88b4b25bfeed0c99de0a diff --git a/metadata/md5-cache/sys-cluster/polysh-0.4-r1 b/metadata/md5-cache/sys-cluster/polysh-0.4-r1 index 65a776dab6f5..1e957f0986c5 100644 --- a/metadata/md5-cache/sys-cluster/polysh-0.4-r1 +++ b/metadata/md5-cache/sys-cluster/polysh-0.4-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://guichaz.free.fr/polysh/files/polysh-0.4.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=b580be9e620c0d329af3a229fc968252 diff --git a/metadata/md5-cache/sys-cluster/quantum-2012.2.3-r1 b/metadata/md5-cache/sys-cluster/quantum-2012.2.3-r1 index 5d14bfb65a05..c62b4cf4c5cd 100644 --- a/metadata/md5-cache/sys-cluster/quantum-2012.2.3-r1 +++ b/metadata/md5-cache/sys-cluster/quantum-2012.2.3-r1 @@ -10,5 +10,5 @@ RDEPEND==dev-python/pastedeploy-1.5.0-r1[python_targets_python2_7(-)?,-python_si RESTRICT=test SLOT=0 SRC_URI=http://launchpad.net/quantum/folsom/2012.2.3/+download/quantum-2012.2.3.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2574e54248b09602b27e67ac97b723ad diff --git a/metadata/md5-cache/sys-cluster/quantum-2013.1 b/metadata/md5-cache/sys-cluster/quantum-2013.1 new file mode 100644 index 000000000000..c800df3ebeaf --- /dev/null +++ b/metadata/md5-cache/sys-cluster/quantum-2013.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(-)] test? ( dev-python/cliff[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/configobj[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] ) dev-python/coverage[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-r1[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/nose[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/nosehtmloutput[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/nosexcover dev-python/openstack-nose-plugin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/pep8-1.3.3 >=dev-python/sphinx-1.1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/webtest-1.3.3 virtual/python-unittest2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +DESCRIPTION=Quantum is a virtual network service for Openstack. +EAPI=5 +HOMEPAGE=https://launchpad.net/quantum +IUSE=test python_targets_python2_7 +KEYWORDS=~amd64 ~x86 +LICENSE=Apache-2.0 +RDEPEND=>=dev-python/pastedeploy-1.5.0-r1[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/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(-)] =dev-python/amqplib-0.6.1 >=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/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-0.1.4[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/netaddr >=dev-python/python-keystoneclient-0.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/python-novaclient[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-quantumclient-2.2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] <=dev-python/python-quantumclient-3.0.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyudev >dev-python/sqlalchemy-0.7.8 <=dev-python/sqlalchemy-0.7.99 >=dev-python/webob-1.2[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(-)] virtual/python-argparse[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +RESTRICT=test +SLOT=0 +SRC_URI=http://launchpad.net/quantum/grizzly/2013.1/+download/quantum-2013.1.tar.gz +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=a30d1e3ff9db80b912c51421892a3863 diff --git a/metadata/md5-cache/sys-cluster/swift-1.7.4 b/metadata/md5-cache/sys-cluster/swift-1.7.4 deleted file mode 100644 index b156a4ba4d8a..000000000000 --- a/metadata/md5-cache/sys-cluster/swift-1.7.4 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test -DEPEND=dev-python/setuptools[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] test? ( dev-python/nose dev-python/coverage dev-python/nosexcover dev-python/pep8 dev-python/mock >=dev-python/sphinx-1.1.2 ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] -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_5 python_targets_python2_6 python_targets_python2_7 -KEYWORDS=~amd64 ~x86 -LICENSE=Apache-2.0 -RDEPEND=dev-python/eventlet dev-python/greenlet dev-python/netifaces dev-python/pastedeploy dev-python/simplejson[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] dev-python/pyxattr dev-python/configobj dev-python/webob >=dev-python/webob-1.0.8 =dev-python/python-swiftclient-1.2.0 memcache? ( net-misc/memcached ) net-misc/rsync python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] -REQUIRED_USE=|| ( proxy account container object ) -SLOT=0 -SRC_URI=http://launchpad.net/swift/folsom/1.7.4/+download/swift-1.7.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=59fd299aa65509469cecc04ffde52f41 diff --git a/metadata/md5-cache/sys-cluster/swift-1.7.6-r1 b/metadata/md5-cache/sys-cluster/swift-1.7.6-r1 index 09b3c55c2dbc..e578324e635d 100644 --- a/metadata/md5-cache/sys-cluster/swift-1.7.6-r1 +++ b/metadata/md5-cache/sys-cluster/swift-1.7.6-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-python/eventlet dev-python/greenlet dev-python/netifaces dev-python/ REQUIRED_USE=|| ( proxy account container object ) SLOT=0 SRC_URI=http://launchpad.net/swift/grizzly/1.7.6/+download/swift-1.7.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=802bb40a5b4d51c37b3e12505825e89b diff --git a/metadata/md5-cache/sys-cluster/swift-1.8.0 b/metadata/md5-cache/sys-cluster/swift-1.8.0 new file mode 100644 index 000000000000..c73e5984c99b --- /dev/null +++ b/metadata/md5-cache/sys-cluster/swift-1.8.0 @@ -0,0 +1,14 @@ +DEFINED_PHASES=compile configure install postinst prepare setup test +DEPEND=dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] test? ( dev-python/nose[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/coverage[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/nosexcover dev-python/openstack-nose-plugin[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/nosehtmloutput[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/pep8-1.3.3 >=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(-)] ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] +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 +KEYWORDS=~amd64 ~x86 +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 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(-)] =sys-devel/automake-wrapper-3-r2 >=sys-devel/autoconf-2.62 sys-devel/gnuconfig SLOT=1.11 SRC_URI=mirror://gnu/automake/automake-1.11.6.tar.xz ftp://alpha.gnu.org/pub/gnu/automake/automake-1.11.6.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a88a6e085c7c7966b1df054c3af31fd3 diff --git a/metadata/md5-cache/sys-devel/automake-1.12.6 b/metadata/md5-cache/sys-devel/automake-1.12.6 index 325615e2938d..6474179d867f 100644 --- a/metadata/md5-cache/sys-devel/automake-1.12.6 +++ b/metadata/md5-cache/sys-devel/automake-1.12.6 @@ -2,10 +2,10 @@ DEFINED_PHASES=compile install unpack DEPEND=dev-lang/perl >=sys-devel/automake-wrapper-7 >=sys-devel/autoconf-2.62 sys-devel/gnuconfig sys-apps/help2man DESCRIPTION=Used to generate Makefile.in from Makefile.am HOMEPAGE=http://www.gnu.org/software/automake/ -KEYWORDS=~alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd +KEYWORDS=~alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~sparc-fbsd ~x86-fbsd LICENSE=GPL-2 RDEPEND=dev-lang/perl >=sys-devel/automake-wrapper-7 >=sys-devel/autoconf-2.62 sys-devel/gnuconfig SLOT=1.12 SRC_URI=mirror://gnu/automake/automake-1.12.6.tar.xz ftp://alpha.gnu.org/pub/gnu/automake/automake-1.12.6.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=d548318223e842f6a5816d21c498cf17 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=5b8e76f7bf332c5bea2cb129ab1d792c diff --git a/metadata/md5-cache/sys-devel/automake-1.13.1 b/metadata/md5-cache/sys-devel/automake-1.13.1 index ca28ee6ecf57..a81da620d067 100644 --- a/metadata/md5-cache/sys-devel/automake-1.13.1 +++ b/metadata/md5-cache/sys-devel/automake-1.13.1 @@ -7,5 +7,5 @@ LICENSE=GPL-2 RDEPEND=dev-lang/perl >=sys-devel/automake-wrapper-8 >=sys-devel/autoconf-2.62 sys-devel/gnuconfig SLOT=1.13 SRC_URI=mirror://gnu/automake/automake-1.13.1.tar.xz ftp://alpha.gnu.org/pub/gnu/automake/automake-1.13.1.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4fe2f27359b21fe52f2723c86009c4de diff --git a/metadata/md5-cache/sys-devel/binutils-2.19.1-r1 b/metadata/md5-cache/sys-devel/binutils-2.19.1-r1 index 126fc43a02d7..0d2b28414c58 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.19.1-r1 +++ b/metadata/md5-cache/sys-devel/binutils-2.19.1-r1 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.19.1.tar.bz2 mirror://gentoo/binutils-2.19.1-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.19.1-patches-1.2.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=662332adf0a8bdf9638069c79ea54204 diff --git a/metadata/md5-cache/sys-devel/binutils-2.20.1-r1 b/metadata/md5-cache/sys-devel/binutils-2.20.1-r1 index c24eb76ce1ef..e27e1f1c1fcf 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.20.1-r1 +++ b/metadata/md5-cache/sys-devel/binutils-2.20.1-r1 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.20.1.tar.bz2 mirror://gentoo/binutils-2.20.1-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.20.1-patches-1.2.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=294b620a3e65985d937c921a0285db33 diff --git a/metadata/md5-cache/sys-devel/binutils-2.21.1-r1 b/metadata/md5-cache/sys-devel/binutils-2.21.1-r1 index 11f3d1595b34..2a7f52e6fc39 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.21.1-r1 +++ b/metadata/md5-cache/sys-devel/binutils-2.21.1-r1 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.21.1.tar.bz2 mirror://gentoo/binutils-2.21.1-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.21.1-patches-1.4.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1191966ed906c5106aafaf153659026e diff --git a/metadata/md5-cache/sys-devel/binutils-2.22-r1 b/metadata/md5-cache/sys-devel/binutils-2.22-r1 index bfcae86e47d2..52486970fdfa 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.22-r1 +++ b/metadata/md5-cache/sys-devel/binutils-2.22-r1 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.22.tar.bz2 mirror://gentoo/binutils-2.22-patches-1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.22-patches-1.5.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=abf71efa425f5fbef5e0cf5973554860 diff --git a/metadata/md5-cache/sys-devel/binutils-2.22.52.0.4 b/metadata/md5-cache/sys-devel/binutils-2.22.52.0.4 index 0d6ad2c6cb00..778d55f4ed72 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.22.52.0.4 +++ b/metadata/md5-cache/sys-devel/binutils-2.22.52.0.4 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.22.52.0.4.tar.xz mirror://gentoo/binutils-2.22.52.0.4-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.22.52.0.4-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=7b8b322a69c504a161d68285e69ba670 diff --git a/metadata/md5-cache/sys-devel/binutils-2.22.90 b/metadata/md5-cache/sys-devel/binutils-2.22.90 index f0e2423545ca..a598d6af1113 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.22.90 +++ b/metadata/md5-cache/sys-devel/binutils-2.22.90 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=ftp://gcc.gnu.org/pub/binutils/snapshots/binutils-2.22.90.tar.bz2 ftp://sourceware.org/pub/binutils/snapshots/binutils-2.22.90.tar.bz2 mirror://gentoo/binutils-2.22.90-patches-1.1.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.22.90-patches-1.1.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=2aac91ca9fc5f3ba6c87be1b9b069d87 diff --git a/metadata/md5-cache/sys-devel/binutils-2.23 b/metadata/md5-cache/sys-devel/binutils-2.23 index 997b9ca29b6b..cf6c56ee7cc6 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23 +++ b/metadata/md5-cache/sys-devel/binutils-2.23 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.23.tar.bz2 mirror://gentoo/binutils-2.23-patches-1.1.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23-patches-1.1.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f74c043f49fece9a6c9e08ac8c6c1ce4 diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.1 b/metadata/md5-cache/sys-devel/binutils-2.23.1 index 4dd302328807..c5386642188c 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.1 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.1 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.23.1.tar.bz2 mirror://gentoo/binutils-2.23.1-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.1-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=10f7d10f772408d07b5dd5fa4ae19adc diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.2 b/metadata/md5-cache/sys-devel/binutils-2.23.2 index 9e3751507a1a..ad9d48815167 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.2 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.2 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.23.2.tar.bz2 mirror://gentoo/binutils-2.23.2-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.2-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=08aefb095cb18bb3d8fa5b66bb3f043d diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.1 b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.1 index c5ce9882601f..22c61f581f91 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.1 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.1 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.51.0.1.tar.xz mirror://gentoo/binutils-2.23.51.0.1-patches-1.1.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.51.0.1-patches-1.1.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b96d402ba4b7d94c68d0710be660fb02 diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.2 b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.2 index 6861f2704e1a..bb9e5b24756a 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.2 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.2 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.51.0.2.tar.xz mirror://gentoo/binutils-2.23.51.0.2-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.51.0.2-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=cb6f2f75612ce9ac5e3b65fc70b43914 diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.3 b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.3 index b733bb732fb5..ab2c1e1d56ec 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.3 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.3 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.51.0.3.tar.xz mirror://gentoo/binutils-2.23.51.0.3-patches-1.1.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.51.0.3-patches-1.1.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0d1820e139f8c6e108eb4d36385e7fee diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.5 b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.5 index f6a631ca366c..56b2e184136b 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.5 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.5 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.51.0.5.tar.xz mirror://gentoo/binutils-2.23.51.0.5-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.51.0.5-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=2208f831d5c453a4a588d53a1a1f3366 diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.6 b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.6 index 3f2459500934..9a34d88ff466 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.6 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.6 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.51.0.6.tar.xz mirror://gentoo/binutils-2.23.51.0.6-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.51.0.6-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=09d8bc4cb7573358a6073e6721c89343 diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.7 b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.7 index dfd6030df3f4..9d79094dd4bf 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.7 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.7 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.51.0.7.tar.xz mirror://gentoo/binutils-2.23.51.0.7-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.51.0.7-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=199eb2732272f50e53b53484273aebfa diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.8 b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.8 index ed90db50658a..38b91a6d1693 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.8 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.8 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.51.0.8.tar.xz mirror://gentoo/binutils-2.23.51.0.8-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.51.0.8-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=911106caa903e2e757a12d5fb70e87c3 diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.9 b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.9 index 342773200508..bc6a1f214b73 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.51.0.9 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.51.0.9 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.51.0.9.tar.xz mirror://gentoo/binutils-2.23.51.0.9-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.51.0.9-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=82f571f7abaf2aafc59a181a1d14456d diff --git a/metadata/md5-cache/sys-devel/binutils-2.23.52.0.1 b/metadata/md5-cache/sys-devel/binutils-2.23.52.0.1 index e75e00e7b9c4..f1530cd0020d 100644 --- a/metadata/md5-cache/sys-devel/binutils-2.23.52.0.1 +++ b/metadata/md5-cache/sys-devel/binutils-2.23.52.0.1 @@ -7,5 +7,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://kernel/linux/devel/binutils/binutils-2.23.52.0.1.tar.xz mirror://gentoo/binutils-2.23.52.0.1-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.52.0.1-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=eed36138dc56f74a174e05907b15ce1e diff --git a/metadata/md5-cache/sys-devel/binutils-9999 b/metadata/md5-cache/sys-devel/binutils-9999 index 516dc2401bd0..38363d3e6bfa 100644 --- a/metadata/md5-cache/sys-devel/binutils-9999 +++ b/metadata/md5-cache/sys-devel/binutils-9999 @@ -6,5 +6,5 @@ IUSE=cxx nls multitarget multislot static-libs test vanilla zlib LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0bce97c0ef865e145c20ff034e7d3423 diff --git a/metadata/md5-cache/sys-devel/binutils-hppa64-2.19.1 b/metadata/md5-cache/sys-devel/binutils-hppa64-2.19.1 index dfaa5b753011..04b0e42e2bba 100644 --- a/metadata/md5-cache/sys-devel/binutils-hppa64-2.19.1 +++ b/metadata/md5-cache/sys-devel/binutils-hppa64-2.19.1 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.19.1.tar.bz2 mirror://gentoo/binutils-2.19.1-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.19.1-patches-1.2.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=32a179d9560640cf9ac9e46e1ba49e43 diff --git a/metadata/md5-cache/sys-devel/binutils-hppa64-2.20.1 b/metadata/md5-cache/sys-devel/binutils-hppa64-2.20.1 index b96b8746d0a4..f4c1af7df31c 100644 --- a/metadata/md5-cache/sys-devel/binutils-hppa64-2.20.1 +++ b/metadata/md5-cache/sys-devel/binutils-hppa64-2.20.1 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.20.1.tar.bz2 mirror://gentoo/binutils-2.20.1-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.20.1-patches-1.1.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a3bc6ae66ae302292cb2ed3a1eb9d129 diff --git a/metadata/md5-cache/sys-devel/binutils-hppa64-2.21.1-r1 b/metadata/md5-cache/sys-devel/binutils-hppa64-2.21.1-r1 index d12f65734815..41f0d45ee77b 100644 --- a/metadata/md5-cache/sys-devel/binutils-hppa64-2.21.1-r1 +++ b/metadata/md5-cache/sys-devel/binutils-hppa64-2.21.1-r1 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.21.1.tar.bz2 mirror://gentoo/binutils-2.21.1-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.21.1-patches-1.1.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5ed288fb163337bba176460b85975e2a diff --git a/metadata/md5-cache/sys-devel/binutils-hppa64-2.22 b/metadata/md5-cache/sys-devel/binutils-hppa64-2.22 index bf3f7693d26b..48bffa36ab62 100644 --- a/metadata/md5-cache/sys-devel/binutils-hppa64-2.22 +++ b/metadata/md5-cache/sys-devel/binutils-hppa64-2.22 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/patch-2.6.1 >=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.22.tar.bz2 mirror://gentoo/binutils-2.22-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/binutils-2.22-patches-1.2.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=af474f28ca26ca8847ae586db6e27230 diff --git a/metadata/md5-cache/sys-devel/binutils-hppa64-2.23.1 b/metadata/md5-cache/sys-devel/binutils-hppa64-2.23.1 index c26cb283a800..2591bf02d436 100644 --- a/metadata/md5-cache/sys-devel/binutils-hppa64-2.23.1 +++ b/metadata/md5-cache/sys-devel/binutils-hppa64-2.23.1 @@ -8,5 +8,5 @@ LICENSE=|| ( GPL-3 LGPL-3 ) RDEPEND=>=sys-devel/patch-2.6.1 >=sys-devel/binutils-config-1.9 zlib? ( sys-libs/zlib ) SLOT=0 SRC_URI=mirror://gnu/binutils/binutils-2.23.1.tar.bz2 mirror://gentoo/binutils-2.23.1-patches-1.0.tar.xz http://dev.gentoo.org/~vapier/dist/binutils-2.23.1-patches-1.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-binutils 03ae6687f791060a62a15efeff1a9bc6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b1c3acfcecd6f6c6bcb6fbdcf8851d0c diff --git a/metadata/md5-cache/sys-devel/gcc-2.95.3-r10 b/metadata/md5-cache/sys-devel/gcc-2.95.3-r10 index b428e69a7768..6f46d5f2e08e 100644 --- a/metadata/md5-cache/sys-devel/gcc-2.95.3-r10 +++ b/metadata/md5-cache/sys-devel/gcc-2.95.3-r10 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) RESTRICT=strip SLOT=2.95 SRC_URI=mirror://gnu/gcc/gcc-2.95.3/gcc-2.95.3.tar.bz2 mirror://gentoo/gcc-2.95.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-2.95.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-2.95.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-2.95.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-2.95.3-patches-1.4.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a874ecc1daea2f9b7f6867262af5fcd6 diff --git a/metadata/md5-cache/sys-devel/gcc-3.2.2 b/metadata/md5-cache/sys-devel/gcc-3.2.2 index edf1738489b4..256bc3f5e86e 100644 --- a/metadata/md5-cache/sys-devel/gcc-3.2.2 +++ b/metadata/md5-cache/sys-devel/gcc-3.2.2 @@ -9,5 +9,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv RESTRICT=strip SLOT=3.2 SRC_URI=mirror://gnu/gcc/gcc-3.2.2/gcc-3.2.2.tar.bz2 mirror://gentoo/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.2.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.2.2-patches-1.1.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0945e39c97ba6a2bd6e908ba0f76e019 diff --git a/metadata/md5-cache/sys-devel/gcc-3.3.6-r1 b/metadata/md5-cache/sys-devel/gcc-3.3.6-r1 index 449aaf087e98..10be2caac309 100644 --- a/metadata/md5-cache/sys-devel/gcc-3.3.6-r1 +++ b/metadata/md5-cache/sys-devel/gcc-3.3.6-r1 @@ -10,5 +10,5 @@ RDEPEND=>=sys-devel/binutils-2.14.90.0.6-r1 sys-libs/zlib nls? ( sys-devel/gette RESTRICT=strip SLOT=3.3 SRC_URI=mirror://gnu/gcc/gcc-3.3.6/gcc-3.3.6.tar.bz2 mirror://gentoo/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.3.6-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-3.3.6-patches-1.8.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.3.6-patches-1.8.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.3.6-patches-1.8.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.3.6-patches-1.8.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.3.6-patches-1.8.tar.bz2 boundschecking? ( mirror://sourceforge/boundschecking/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 mirror://gentoo/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~vapier/dist/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~dirtyepic/dist/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~halcy0n/patches/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 http://dev.gentoo.org/~zorry/patches/gcc/bounds-checking-gcc-3.3.6-1.00-r2.patch.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1b1a12147240ddd3486c24bca45737a8 diff --git a/metadata/md5-cache/sys-devel/gcc-3.4.6-r2 b/metadata/md5-cache/sys-devel/gcc-3.4.6-r2 index 80f4556ceb2c..77e37c8ac2bc 100644 --- a/metadata/md5-cache/sys-devel/gcc-3.4.6-r2 +++ b/metadata/md5-cache/sys-devel/gcc-3.4.6-r2 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv RESTRICT=strip SLOT=3.4 SRC_URI=mirror://gnu/gcc/gcc-3.4.6/gcc-3.4.6.tar.bz2 mirror://gentoo/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.4.5-uclibc-patches-1.1.tar.bz2 mirror://gentoo/gcc-3.4.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.4.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.4.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.4.6-patches-1.7.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.4.6-patches-1.7.tar.bz2 boundschecking? ( mirror://sourceforge/boundschecking/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 mirror://gentoo/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~vapier/dist/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~dirtyepic/dist/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~halcy0n/patches/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 http://dev.gentoo.org/~zorry/patches/gcc/bounds-checking-gcc-3.4.4-1.00.1.patch.bz2 ) d? ( mirror://sourceforge/dgcc/gdc-0.24-src.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1761285f521c16c97b6e6fa142bc025d diff --git a/metadata/md5-cache/sys-devel/gcc-4.0.4 b/metadata/md5-cache/sys-devel/gcc-4.0.4 index aa2196fe9ad1..4a91acd14879 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.0.4 +++ b/metadata/md5-cache/sys-devel/gcc-4.0.4 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv fortran? ( >=d RESTRICT=strip SLOT=4.0 SRC_URI=mirror://gnu/gcc/gcc-4.0.4/gcc-4.0.4.tar.bz2 mirror://gentoo/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.0.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.0.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.0.4-patches-1.1.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=aff61baa414fb0638545e68c286c64f8 diff --git a/metadata/md5-cache/sys-devel/gcc-4.1.2 b/metadata/md5-cache/sys-devel/gcc-4.1.2 index f00284a8b3fb..3832d978be08 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.1.2 +++ b/metadata/md5-cache/sys-devel/gcc-4.1.2 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv fortran? ( >=d RESTRICT=strip SLOT=4.1 SRC_URI=mirror://gnu/gcc/gcc-4.1.2/gcc-4.1.2.tar.bz2 mirror://gentoo/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.1.2-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.1.2-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.1.2-patches-1.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.1.2-patches-1.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.1.2-patches-1.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.1.2-patches-1.4.tar.bz2 d? ( mirror://sourceforge/dgcc/gdc-0.24-src.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=49e4ce79de28fce02e6973565e45cf21 diff --git a/metadata/md5-cache/sys-devel/gcc-4.2.4-r1 b/metadata/md5-cache/sys-devel/gcc-4.2.4-r1 index dc79bc686c1c..9d7d18df523d 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.2.4-r1 +++ b/metadata/md5-cache/sys-devel/gcc-4.2.4-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv fortran? ( >=d RESTRICT=strip SLOT=4.2 SRC_URI=mirror://gnu/gcc/gcc-4.2.4/gcc-4.2.4.tar.bz2 mirror://gentoo/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.2.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.2.4-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.2.4-patches-1.2.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.2.4-patches-1.2.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.2.4-patches-1.2.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.2.4-patches-1.2.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=46861fbc4234afd8f11841f7ba037bda diff --git a/metadata/md5-cache/sys-devel/gcc-4.3.3-r2 b/metadata/md5-cache/sys-devel/gcc-4.3.3-r2 index bb93e9ce869f..3b4773995bfa 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.3.3-r2 +++ b/metadata/md5-cache/sys-devel/gcc-4.3.3-r2 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.3 SRC_URI=mirror://gnu/gcc/gcc-4.3.3/gcc-4.3.3.tar.bz2 mirror://gentoo/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-uclibc-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-patches-1.2.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-patches-1.2.tar.bz2 mirror://gentoo/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=00ec4d7fdd343ba2af0830ea462bfa66 diff --git a/metadata/md5-cache/sys-devel/gcc-4.3.4 b/metadata/md5-cache/sys-devel/gcc-4.3.4 index 0dd2ef6594f2..91fae770c64c 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.3.4 +++ b/metadata/md5-cache/sys-devel/gcc-4.3.4 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.3 SRC_URI=mirror://gnu/gcc/gcc-4.3.4/gcc-4.3.4.tar.bz2 mirror://gentoo/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-patches-1.4.tar.bz2 mirror://gentoo/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.4-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.4-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0d8843228abccfe9a8dbf606526f3f57 diff --git a/metadata/md5-cache/sys-devel/gcc-4.3.5 b/metadata/md5-cache/sys-devel/gcc-4.3.5 index 45d617f1e473..b95c15c0af16 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.3.5 +++ b/metadata/md5-cache/sys-devel/gcc-4.3.5 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.3 SRC_URI=mirror://gnu/gcc/gcc-4.3.5/gcc-4.3.5.tar.bz2 mirror://gentoo/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=82f0230384d6c0f7fbc186093dd26f41 diff --git a/metadata/md5-cache/sys-devel/gcc-4.3.6-r1 b/metadata/md5-cache/sys-devel/gcc-4.3.6-r1 index d861141a73ee..ddb90672e9c5 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.3.6-r1 +++ b/metadata/md5-cache/sys-devel/gcc-4.3.6-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.3 SRC_URI=mirror://gnu/gcc/gcc-4.3.6/gcc-4.3.6.tar.bz2 mirror://gentoo/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.3.6-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-piepatches-v10.1.5.tar.bz2 mirror://gentoo/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.6-specs-0.9.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.6-specs-0.9.4.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=84aced73f9c4dfb22a3b9b2e01d93c88 diff --git a/metadata/md5-cache/sys-devel/gcc-4.4.2 b/metadata/md5-cache/sys-devel/gcc-4.4.2 index 38a88014bc2e..0115c7ab2857 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.4.2 +++ b/metadata/md5-cache/sys-devel/gcc-4.4.2 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.4 SRC_URI=mirror://gnu/gcc/gcc-4.4.2/gcc-4.4.2.tar.bz2 mirror://gentoo/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.2-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.2-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.2-patches-1.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6cb1862431a735d55ad12988a31873d2 diff --git a/metadata/md5-cache/sys-devel/gcc-4.4.3-r3 b/metadata/md5-cache/sys-devel/gcc-4.4.3-r3 index 3ea15b97167e..acc0b7e2d613 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.4.3-r3 +++ b/metadata/md5-cache/sys-devel/gcc-4.4.3-r3 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.4 SRC_URI=mirror://gnu/gcc/gcc-4.4.3/gcc-4.4.3.tar.bz2 mirror://gentoo/gcc-4.4.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.4.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-patches-1.4.tar.bz2 mirror://gentoo/gcc-4.4.3-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-piepatches-v0.4.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=6a3be0bf003f758ae914642b8de9f8c0 diff --git a/metadata/md5-cache/sys-devel/gcc-4.4.4-r2 b/metadata/md5-cache/sys-devel/gcc-4.4.4-r2 index 954e983242c0..9fac3af8b002 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.4.4-r2 +++ b/metadata/md5-cache/sys-devel/gcc-4.4.4-r2 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.4 SRC_URI=mirror://gnu/gcc/gcc-4.4.4/gcc-4.4.4.tar.bz2 mirror://gentoo/gcc-4.4.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.4.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.4-patches-1.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.4-patches-1.4.tar.bz2 mirror://gentoo/gcc-4.4.4-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.4-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.4-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.4-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.4-piepatches-v0.4.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=141b7c0a32a956fabc90713ff1d8ba12 diff --git a/metadata/md5-cache/sys-devel/gcc-4.4.5 b/metadata/md5-cache/sys-devel/gcc-4.4.5 index 9cc5c165b351..3dca86f254af 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.4.5 +++ b/metadata/md5-cache/sys-devel/gcc-4.4.5 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.4 SRC_URI=mirror://gnu/gcc/gcc-4.4.5/gcc-4.4.5.tar.bz2 mirror://gentoo/gcc-4.4.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.5-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.5-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.4.5-patches-1.3.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.5-patches-1.3.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.5-patches-1.3.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.5-patches-1.3.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.5-patches-1.3.tar.bz2 mirror://gentoo/gcc-4.4.5-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.5-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.5-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.5-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.5-piepatches-v0.4.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=401b97b31115917b96bab970b88048c9 diff --git a/metadata/md5-cache/sys-devel/gcc-4.4.6-r1 b/metadata/md5-cache/sys-devel/gcc-4.4.6-r1 index ba0ffd6ac79e..daafb437c621 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.4.6-r1 +++ b/metadata/md5-cache/sys-devel/gcc-4.4.6-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.4 SRC_URI=mirror://gnu/gcc/gcc-4.4.6/gcc-4.4.6.tar.bz2 mirror://gentoo/gcc-4.4.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.6-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.6-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.4.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.6-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.4.6-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.6-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.6-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.6-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.6-piepatches-v0.4.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0ac34944c4dde7afd8358bb829689349 diff --git a/metadata/md5-cache/sys-devel/gcc-4.4.7 b/metadata/md5-cache/sys-devel/gcc-4.4.7 index c25088244dae..4448c823dbea 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.4.7 +++ b/metadata/md5-cache/sys-devel/gcc-4.4.7 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.4 SRC_URI=mirror://gnu/gcc/gcc-4.4.7/gcc-4.4.7.tar.bz2 mirror://gentoo/gcc-4.4.7-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.7-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.7-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.7-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.7-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.4.7-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.7-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.7-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.7-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.7-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.4.7-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.7-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.7-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.7-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.7-piepatches-v0.4.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.3.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5e2f9229c57b6f0beb4e897372ef79b2 diff --git a/metadata/md5-cache/sys-devel/gcc-4.5.1-r1 b/metadata/md5-cache/sys-devel/gcc-4.5.1-r1 index 2e34ee7e3fd6..675977b1e970 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.5.1-r1 +++ b/metadata/md5-cache/sys-devel/gcc-4.5.1-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.5 SRC_URI=mirror://gnu/gcc/gcc-4.5.1/gcc-4.5.1.tar.bz2 mirror://gentoo/gcc-4.5.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.1-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.5.1-patches-1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.1-patches-1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.1-patches-1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.1-patches-1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.1-patches-1.5.tar.bz2 mirror://gentoo/gcc-4.5.1-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.1-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.1-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.1-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.1-piepatches-v0.4.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b2474689170d245d2474e77d3605b319 diff --git a/metadata/md5-cache/sys-devel/gcc-4.5.2 b/metadata/md5-cache/sys-devel/gcc-4.5.2 index fe7abcd8aeba..c53491624980 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.5.2 +++ b/metadata/md5-cache/sys-devel/gcc-4.5.2 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.5 SRC_URI=mirror://gnu/gcc/gcc-4.5.2/gcc-4.5.2.tar.bz2 mirror://gentoo/gcc-4.5.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.2-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.5.2-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.2-patches-1.2.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.2-patches-1.2.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.2-patches-1.2.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.2-patches-1.2.tar.bz2 mirror://gentoo/gcc-4.5.2-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.2-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.2-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.2-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.2-piepatches-v0.4.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5fc8a9f2cb06184f69411e31fa109342 diff --git a/metadata/md5-cache/sys-devel/gcc-4.5.3-r2 b/metadata/md5-cache/sys-devel/gcc-4.5.3-r2 index d98b5be8baa2..5f8b3bff1354 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.5.3-r2 +++ b/metadata/md5-cache/sys-devel/gcc-4.5.3-r2 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.5 SRC_URI=mirror://gnu/gcc/gcc-4.5.3/gcc-4.5.3.tar.bz2 mirror://gentoo/gcc-4.5.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.3-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.5.3-patches-1.6.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.3-patches-1.6.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.3-patches-1.6.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.3-patches-1.6.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.3-patches-1.6.tar.bz2 mirror://gentoo/gcc-4.5.3-piepatches-v0.4.7.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.3-piepatches-v0.4.7.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.3-piepatches-v0.4.7.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.3-piepatches-v0.4.7.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.3-piepatches-v0.4.7.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=0efd5adea975977ac1b7d07e36a63093 diff --git a/metadata/md5-cache/sys-devel/gcc-4.5.4 b/metadata/md5-cache/sys-devel/gcc-4.5.4 index 1619ccdb52a9..2f73db1d576c 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.5.4 +++ b/metadata/md5-cache/sys-devel/gcc-4.5.4 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.5 SRC_URI=mirror://gnu/gcc/gcc-4.5.4/gcc-4.5.4.tar.bz2 mirror://gentoo/gcc-4.5.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.4-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.4-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.5.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.4-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.4-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.5.4-piepatches-v0.4.7.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.4-piepatches-v0.4.7.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.4-piepatches-v0.4.7.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.4-piepatches-v0.4.7.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.4-piepatches-v0.4.7.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=2ea5e45448e864f490650c321275ea4d diff --git a/metadata/md5-cache/sys-devel/gcc-4.6.0 b/metadata/md5-cache/sys-devel/gcc-4.6.0 index f69dbcf6e630..41bfb3ecbe0e 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.6.0 +++ b/metadata/md5-cache/sys-devel/gcc-4.6.0 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.6 SRC_URI=mirror://gnu/gcc/gcc-4.6.0/gcc-4.6.0.tar.bz2 mirror://gentoo/gcc-4.6.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.0-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.6.0-patches-1.3.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.0-patches-1.3.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.0-patches-1.3.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.0-patches-1.3.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.0-patches-1.3.tar.bz2 mirror://gentoo/gcc-4.6.0-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.0-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.0-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.0-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.0-piepatches-v0.4.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=033b33a5b63df19f537c1d8097f32d0e diff --git a/metadata/md5-cache/sys-devel/gcc-4.6.1-r1 b/metadata/md5-cache/sys-devel/gcc-4.6.1-r1 index 430fe90b1e22..ade4999446d3 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.6.1-r1 +++ b/metadata/md5-cache/sys-devel/gcc-4.6.1-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.6 SRC_URI=mirror://gnu/gcc/gcc-4.6.1/gcc-4.6.1.tar.bz2 mirror://gentoo/gcc-4.6.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.1-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.6.1-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.1-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.1-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.1-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.1-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.6.1-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.1-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.1-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.1-piepatches-v0.4.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.1-piepatches-v0.4.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b21828bdc89488bab383415ce78dbab2 diff --git a/metadata/md5-cache/sys-devel/gcc-4.6.2 b/metadata/md5-cache/sys-devel/gcc-4.6.2 index 24aaa5461a76..bb5b33cd459f 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.6.2 +++ b/metadata/md5-cache/sys-devel/gcc-4.6.2 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.6 SRC_URI=mirror://gnu/gcc/gcc-4.6.2/gcc-4.6.2.tar.bz2 mirror://gentoo/gcc-4.6.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.2-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.6.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.2-patches-1.5.tar.bz2 mirror://gentoo/gcc-4.6.2-piepatches-v0.5.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.2-piepatches-v0.5.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.2-piepatches-v0.5.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.2-piepatches-v0.5.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.2-piepatches-v0.5.0.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f7fe6dceb37990037d849a9f214c7c71 diff --git a/metadata/md5-cache/sys-devel/gcc-4.6.3 b/metadata/md5-cache/sys-devel/gcc-4.6.3 index fa4f146e45fa..ec70f422207d 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.6.3 +++ b/metadata/md5-cache/sys-devel/gcc-4.6.3 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.6 SRC_URI=mirror://gnu/gcc/gcc-4.6.3/gcc-4.6.3.tar.bz2 mirror://gentoo/gcc-4.6.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.3-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.3-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.6.3-patches-1.11.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.3-patches-1.11.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.3-patches-1.11.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.3-patches-1.11.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.3-patches-1.11.tar.bz2 mirror://gentoo/gcc-4.6.3-piepatches-v0.5.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.3-piepatches-v0.5.2.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.3-piepatches-v0.5.2.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.3-piepatches-v0.5.2.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.3-piepatches-v0.5.2.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d6736ef88cce42eb501414a6c7e94520 diff --git a/metadata/md5-cache/sys-devel/gcc-4.7.0 b/metadata/md5-cache/sys-devel/gcc-4.7.0 index bdc9bbab1bf3..24bbd4c9c129 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.7.0 +++ b/metadata/md5-cache/sys-devel/gcc-4.7.0 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.7 SRC_URI=mirror://gnu/gcc/gcc-4.7.0/gcc-4.7.0.tar.bz2 mirror://gentoo/gcc-4.7.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.0-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.7.0-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.0-patches-1.2.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.0-patches-1.2.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.0-patches-1.2.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.0-patches-1.2.tar.bz2 mirror://gentoo/gcc-4.7.0-piepatches-v0.5.3.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.0-piepatches-v0.5.3.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.0-piepatches-v0.5.3.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.0-piepatches-v0.5.3.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.0-piepatches-v0.5.3.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1d3a145c1b2964b88ecc9c92fb2a7bef diff --git a/metadata/md5-cache/sys-devel/gcc-4.7.1 b/metadata/md5-cache/sys-devel/gcc-4.7.1 index 7a65a9b3196c..4bbdaae24402 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.7.1 +++ b/metadata/md5-cache/sys-devel/gcc-4.7.1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.7 SRC_URI=mirror://gnu/gcc/gcc-4.7.1/gcc-4.7.1.tar.bz2 mirror://gentoo/gcc-4.7.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.1-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.1-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.7.1-patches-1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.1-patches-1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.1-patches-1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.1-patches-1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.1-patches-1.5.tar.bz2 mirror://gentoo/gcc-4.7.1-piepatches-v0.5.3.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.1-piepatches-v0.5.3.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.1-piepatches-v0.5.3.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.1-piepatches-v0.5.3.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.1-piepatches-v0.5.3.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=32889dbd3859e4a0955be9e2a4f8f1cc diff --git a/metadata/md5-cache/sys-devel/gcc-4.7.2-r1 b/metadata/md5-cache/sys-devel/gcc-4.7.2-r1 index a69eec9dfc87..9f7408ffe3f3 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.7.2-r1 +++ b/metadata/md5-cache/sys-devel/gcc-4.7.2-r1 @@ -10,5 +10,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.7 SRC_URI=mirror://gnu/gcc/gcc-4.7.2/gcc-4.7.2.tar.bz2 mirror://gentoo/gcc-4.7.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.2-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.2-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.7.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.2-patches-1.5.tar.bz2 mirror://gentoo/gcc-4.7.2-piepatches-v0.5.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.2-piepatches-v0.5.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.2-piepatches-v0.5.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.2-piepatches-v0.5.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.2-piepatches-v0.5.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=b167205bd6b6b382396ba176db350bef diff --git a/metadata/md5-cache/sys-devel/gcc-4.8.0 b/metadata/md5-cache/sys-devel/gcc-4.8.0 index 171e2c4686f3..e98d640ddc47 100644 --- a/metadata/md5-cache/sys-devel/gcc-4.8.0 +++ b/metadata/md5-cache/sys-devel/gcc-4.8.0 @@ -9,5 +9,5 @@ RDEPEND=sys-libs/zlib nls? ( sys-devel/gettext ) virtual/libiconv >=dev-libs/gmp RESTRICT=strip SLOT=4.8 SRC_URI=mirror://gnu/gcc/gcc-4.8.0/gcc-4.8.0.tar.bz2 mirror://gentoo/gcc-4.8.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.8.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.8.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.8.0-uclibc-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.8.0-uclibc-patches-1.0.tar.bz2 mirror://gentoo/gcc-4.8.0-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.8.0-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.8.0-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.8.0-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.8.0-patches-1.1.tar.bz2 mirror://gentoo/gcc-4.8.0-piepatches-v0.5.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.8.0-piepatches-v0.5.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.8.0-piepatches-v0.5.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.8.0-piepatches-v0.5.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.8.0-piepatches-v0.5.5.tar.bz2 mirror://gentoo/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.3-specs-0.2.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.3-specs-0.2.0.tar.bz2 gcj? ( ftp://sourceware.org/pub/java/ecj-4.5.jar ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=8522d811718e76527996c6a9417e0184 diff --git a/metadata/md5-cache/sys-devel/gcc-apple-4.0.1_p5493 b/metadata/md5-cache/sys-devel/gcc-apple-4.0.1_p5493 index 0a521ed3c57a..7cc5ac666a39 100644 --- a/metadata/md5-cache/sys-devel/gcc-apple-4.0.1_p5493 +++ b/metadata/md5-cache/sys-devel/gcc-apple-4.0.1_p5493 @@ -11,5 +11,5 @@ RDEPEND=>=sys-libs/zlib-1.1.4 >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext RESTRICT=strip SLOT=40 SRC_URI=http://www.opensource.apple.com/darwinsource/tarballs/other/gcc-5493.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=695373bab736b1a123a59a4884511fad diff --git a/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5664 b/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5664 index 5d871b2f60b0..ed6e6bd91e19 100644 --- a/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5664 +++ b/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5664 @@ -11,5 +11,5 @@ RDEPEND=>=sys-libs/zlib-1.1.4 >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext RESTRICT=strip SLOT=42 SRC_URI=http://www.opensource.apple.com/darwinsource/tarballs/other/gcc-5664.tar.gz http://www.opensource.apple.com/darwinsource/tarballs/other/libstdcxx-16.tar.gz http://www.opensource.apple.com/darwinsource/tarballs/other/libstdcxx-39.tar.gz fortran? ( mirror://gnu/gcc/gcc-4.2.4/gcc-fortran-4.2.4.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d5e5182e1ebf95a532a8ea011fcf95fc diff --git a/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r1 b/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r1 index 538f514a973c..f0ecab44a43d 100644 --- a/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r1 +++ b/metadata/md5-cache/sys-devel/gcc-apple-4.2.1_p5666-r1 @@ -11,5 +11,5 @@ RDEPEND=>=sys-libs/zlib-1.1.4 >=sys-libs/ncurses-5.2-r2 nls? ( sys-devel/gettext RESTRICT=strip SLOT=42 SRC_URI=http://www.opensource.apple.com/darwinsource/tarballs/other/gcc-5666.3.tar.gz http://www.opensource.apple.com/darwinsource/tarballs/other/libstdcxx-16.tar.gz http://www.opensource.apple.com/darwinsource/tarballs/other/libstdcxx-39.tar.gz fortran? ( mirror://gnu/gcc/gcc-4.2.4/gcc-fortran-4.2.4.tar.bz2 ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 prefix 21058c21ca48453d771df15500873ede toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 prefix 21058c21ca48453d771df15500873ede toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=3bf52ae2cbf24b2891f95c393aac5e41 diff --git a/metadata/md5-cache/sys-devel/gcc-config-1.6 b/metadata/md5-cache/sys-devel/gcc-config-1.6 index d9d0cf5e23db..69f6fd0bd8c2 100644 --- a/metadata/md5-cache/sys-devel/gcc-config-1.6 +++ b/metadata/md5-cache/sys-devel/gcc-config-1.6 @@ -5,5 +5,5 @@ KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/gcc-config-1.6.tar.xz http://dev.gentoo.org/~vapier/dist/gcc-config-1.6.tar.xz -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=3699c05b9f7187fc3a3c169dc7e3e05f diff --git a/metadata/md5-cache/sys-devel/gcc-config-1.7 b/metadata/md5-cache/sys-devel/gcc-config-1.7 index 7491f5af292d..c7abaf1f2ad8 100644 --- a/metadata/md5-cache/sys-devel/gcc-config-1.7 +++ b/metadata/md5-cache/sys-devel/gcc-config-1.7 @@ -5,5 +5,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/gcc-config-1.7.tar.xz http://dev.gentoo.org/~vapier/dist/gcc-config-1.7.tar.xz -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=07f41d4df96ee0aee3b752a1389b03e1 diff --git a/metadata/md5-cache/sys-devel/gcc-config-1.7.1 b/metadata/md5-cache/sys-devel/gcc-config-1.7.1 index 4b25d18da1b2..17d9f8826f29 100644 --- a/metadata/md5-cache/sys-devel/gcc-config-1.7.1 +++ b/metadata/md5-cache/sys-devel/gcc-config-1.7.1 @@ -5,5 +5,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/gcc-config-1.7.1.tar.xz http://dev.gentoo.org/~vapier/dist/gcc-config-1.7.1.tar.xz -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=7f7216bebf1504a599e6494bbcb6a21f diff --git a/metadata/md5-cache/sys-devel/gcc-config-1.7.2 b/metadata/md5-cache/sys-devel/gcc-config-1.7.2 index b18f56c5b7b6..f7a04640d092 100644 --- a/metadata/md5-cache/sys-devel/gcc-config-1.7.2 +++ b/metadata/md5-cache/sys-devel/gcc-config-1.7.2 @@ -5,5 +5,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/gcc-config-1.7.2.tar.xz http://dev.gentoo.org/~vapier/dist/gcc-config-1.7.2.tar.xz -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=43bf2b38db57e9cae041dcacf579fc39 diff --git a/metadata/md5-cache/sys-devel/gcc-config-1.7.3 b/metadata/md5-cache/sys-devel/gcc-config-1.7.3 index 4048df68e011..9434dcd94fc1 100644 --- a/metadata/md5-cache/sys-devel/gcc-config-1.7.3 +++ b/metadata/md5-cache/sys-devel/gcc-config-1.7.3 @@ -5,5 +5,5 @@ KEYWORDS=alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64 LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/gcc-config-1.7.3.tar.xz http://dev.gentoo.org/~vapier/dist/gcc-config-1.7.3.tar.xz -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=e041ae1a17463ace001e4adfcc71a481 diff --git a/metadata/md5-cache/sys-devel/gcc-config-1.8 b/metadata/md5-cache/sys-devel/gcc-config-1.8 index 0ad411b6f9d0..17ad454329ac 100644 --- a/metadata/md5-cache/sys-devel/gcc-config-1.8 +++ b/metadata/md5-cache/sys-devel/gcc-config-1.8 @@ -5,5 +5,5 @@ KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc LICENSE=GPL-2 SLOT=0 SRC_URI=mirror://gentoo/gcc-config-1.8.tar.xz http://dev.gentoo.org/~vapier/dist/gcc-config-1.8.tar.xz -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=589d2d2ec35e64a64e4cd06ce23f9544 diff --git a/metadata/md5-cache/sys-devel/kgcc64-3.4.6 b/metadata/md5-cache/sys-devel/kgcc64-3.4.6 index 45b705b8217f..41229dcd3ee2 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-3.4.6 +++ b/metadata/md5-cache/sys-devel/kgcc64-3.4.6 @@ -10,5 +10,5 @@ RDEPEND=hppa? ( sys-devel/binutils-hppa64 ) !sys-devel/gcc-hppa64 !sys-devel/gcc RESTRICT=strip SLOT=3.4 SRC_URI=mirror://gnu/gcc/gcc-3.4.6/gcc-3.4.6.tar.bz2 mirror://gentoo/gcc-3.4.6-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-3.4.6-patches-1.2.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-3.4.6-patches-1.2.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-3.4.6-patches-1.2.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-3.4.6-patches-1.2.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=7ba8b008080ade055be3ab2b62c3031f diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.1.2 b/metadata/md5-cache/sys-devel/kgcc64-4.1.2 index 3ff3abaaac5d..8e7c29b93e08 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.1.2 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.1.2 @@ -10,5 +10,5 @@ RDEPEND=hppa? ( sys-devel/binutils-hppa64 ) !sys-devel/gcc-hppa64 !sys-devel/gcc RESTRICT=strip SLOT=4.1 SRC_URI=mirror://gnu/gcc/gcc-4.1.2/gcc-4.1.2.tar.bz2 mirror://gentoo/gcc-4.1.2-patches-1.0.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.1.2-patches-1.0.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.1.2-patches-1.0.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.1.2-patches-1.0.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.1.2-patches-1.0.1.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c0249b3b056954c2b256a9cf62cbff17 diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.2.4 b/metadata/md5-cache/sys-devel/kgcc64-4.2.4 index a421dbb7a345..29b6ce5d50a4 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.2.4 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.2.4 @@ -10,5 +10,5 @@ RDEPEND=hppa? ( sys-devel/binutils-hppa64 ) !sys-devel/gcc-hppa64 !sys-devel/gcc RESTRICT=strip SLOT=4.2 SRC_URI=mirror://gnu/gcc/gcc-4.2.4/gcc-4.2.4.tar.bz2 mirror://gentoo/gcc-4.2.4-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.2.4-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.2.4-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.2.4-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.2.4-patches-1.0.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=4e8acb877830174bfe478e20fe5dd82b diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.3.3 b/metadata/md5-cache/sys-devel/kgcc64-4.3.3 index 5ef4878d830d..ff02f597e692 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.3.3 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.3.3 @@ -10,5 +10,5 @@ RDEPEND=hppa? ( sys-devel/binutils-hppa64 ) !sys-devel/gcc-hppa64 !sys-devel/gcc RESTRICT=strip SLOT=4.3 SRC_URI=mirror://gnu/gcc/gcc-4.3.3/gcc-4.3.3.tar.bz2 mirror://gentoo/gcc-4.3.3-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.3-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.3-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.3-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.3-patches-1.0.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d2de426fa59648fd54334a636b3cfcc5 diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.3.5 b/metadata/md5-cache/sys-devel/kgcc64-4.3.5 index effdee4e2541..d7f3ea85d707 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.3.5 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.3.5 @@ -10,5 +10,5 @@ RDEPEND=hppa? ( sys-devel/binutils-hppa64 ) !sys-devel/gcc-hppa64 !sys-devel/gcc RESTRICT=strip SLOT=4.3 SRC_URI=mirror://gnu/gcc/gcc-4.3.5/gcc-4.3.5.tar.bz2 mirror://gentoo/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.3.5-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.3.5-patches-1.1.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=3bedba76cd6aa7bf4da8d96d31f2fc79 diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.4.4 b/metadata/md5-cache/sys-devel/kgcc64-4.4.4 index 2cff0ffc5243..89da469c7847 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.4.4 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.4.4 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/gmp-4.2.1 >=dev-libs/mpfr-2.3.2 >=sys-devel/gcc-config-1.4 sy RESTRICT=strip SLOT=4.4 SRC_URI=mirror://gnu/gcc/gcc-4.4.4/gcc-4.4.4.tar.bz2 mirror://gentoo/gcc-4.4.4-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.4-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.4-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.4-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.4-patches-1.0.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=e3f83bf8c79814f4aedf08148803fd93 diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.4.5 b/metadata/md5-cache/sys-devel/kgcc64-4.4.5 index 9da7bebdd3d1..d0385c103b47 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.4.5 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.4.5 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/gmp-4.2.1 >=dev-libs/mpfr-2.3.2 >=sys-devel/gcc-config-1.4 sy RESTRICT=strip SLOT=4.4 SRC_URI=mirror://gnu/gcc/gcc-4.4.5/gcc-4.4.5.tar.bz2 mirror://gentoo/gcc-4.4.5-patches-1.2.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.5-patches-1.2.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.5-patches-1.2.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.5-patches-1.2.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.5-patches-1.2.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a5d3c437cc15acf27ec2f09bafbf4644 diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.4.6 b/metadata/md5-cache/sys-devel/kgcc64-4.4.6 index ddcacd6334d1..d9c2067a66c8 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.4.6 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.4.6 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/gmp-4.2.1 >=dev-libs/mpfr-2.3.2 >=sys-devel/gcc-config-1.4 sy RESTRICT=strip SLOT=4.4 SRC_URI=mirror://gnu/gcc/gcc-4.4.6/gcc-4.4.6.tar.bz2 mirror://gentoo/gcc-4.4.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.4.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.4.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.4.6-patches-1.0.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.4.6-patches-1.0.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d2342a48f750adc57110f6e655159b21 diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.5.2 b/metadata/md5-cache/sys-devel/kgcc64-4.5.2 index 33e67564eaf4..6ac06d4fc60e 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.5.2 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.5.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 >=dev-libs/mpc-0.8.1 >=sys-de RESTRICT=strip SLOT=4.5 SRC_URI=mirror://gnu/gcc/gcc-4.5.2/gcc-4.5.2.tar.bz2 mirror://gentoo/gcc-4.5.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.2-patches-1.1.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.2-patches-1.1.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5b349d6b224eb5757004e94bed6e61f0 diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.5.3 b/metadata/md5-cache/sys-devel/kgcc64-4.5.3 index d6c83d4746cd..44b8af3eb581 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.5.3 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.5.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 >=dev-libs/mpc-0.8.1 >=sys-de RESTRICT=strip SLOT=4.5 SRC_URI=mirror://gnu/gcc/gcc-4.5.3/gcc-4.5.3.tar.bz2 mirror://gentoo/gcc-4.5.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.5.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.5.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.5.3-patches-1.4.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.5.3-patches-1.4.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=50081d6db4e2f5cd2d55859c7da432fa diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.6.3 b/metadata/md5-cache/sys-devel/kgcc64-4.6.3 index dcf392c09745..4af320dbf0f1 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.6.3 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.6.3 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 >=dev-libs/mpc-0.8.1 >=sys-de RESTRICT=strip SLOT=4.6 SRC_URI=mirror://gnu/gcc/gcc-4.6.3/gcc-4.6.3.tar.bz2 mirror://gentoo/gcc-4.6.3-patches-1.9.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.6.3-patches-1.9.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.6.3-patches-1.9.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.6.3-patches-1.9.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.6.3-patches-1.9.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c00599337cd6b0f7d36e6a8b67d4db37 diff --git a/metadata/md5-cache/sys-devel/kgcc64-4.7.2 b/metadata/md5-cache/sys-devel/kgcc64-4.7.2 index b706a6211938..009d4ced7a04 100644 --- a/metadata/md5-cache/sys-devel/kgcc64-4.7.2 +++ b/metadata/md5-cache/sys-devel/kgcc64-4.7.2 @@ -10,5 +10,5 @@ RDEPEND=>=dev-libs/gmp-4.3.2 >=dev-libs/mpfr-2.4.2 >=dev-libs/mpc-0.8.1 >=sys-de RESTRICT=strip SLOT=4.7 SRC_URI=mirror://gnu/gcc/gcc-4.7.2/gcc-4.7.2.tar.bz2 mirror://gentoo/gcc-4.7.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~vapier/dist/gcc-4.7.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~dirtyepic/dist/gcc-4.7.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~halcy0n/patches/gcc-4.7.2-patches-1.5.tar.bz2 http://dev.gentoo.org/~zorry/patches/gcc/gcc-4.7.2-patches-1.5.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fixheadtails f96922acc9287f1e889a1e50a6c8986e flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain 7fea80c265ccefdec546f3fcbc01a212 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=f56cf670adfeb0d61b9af45d17d05572 diff --git a/metadata/md5-cache/sys-devel/libtool-2.4.2 b/metadata/md5-cache/sys-devel/libtool-2.4.2 index eb809791fb26..0ba00628d314 100644 --- a/metadata/md5-cache/sys-devel/libtool-2.4.2 +++ b/metadata/md5-cache/sys-devel/libtool-2.4.2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=sys-devel/gnuconfig !=sys-devel/autoconf-2.65 >=sys-devel/automake-1.11.1 SLOT=2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=86ad7f39dadb63660eee922299ae0a5a diff --git a/metadata/md5-cache/sys-devel/llvm-2.9-r2 b/metadata/md5-cache/sys-devel/llvm-2.9-r2 index 7dc69010222f..9bbf669aae0c 100644 --- a/metadata/md5-cache/sys-devel/llvm-2.9-r2 +++ b/metadata/md5-cache/sys-devel/llvm-2.9-r2 @@ -9,5 +9,5 @@ LICENSE=UoI-NCSA RDEPEND=dev-lang/perl libffi? ( virtual/libffi ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) SLOT=0 SRC_URI=http://llvm.org/releases/2.9/llvm-2.9.tgz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=8da1c91c46a185ac27225c0126fe8275 diff --git a/metadata/md5-cache/sys-devel/llvm-3.0-r2 b/metadata/md5-cache/sys-devel/llvm-3.0-r2 index fbc4a12029f5..babfdec13625 100644 --- a/metadata/md5-cache/sys-devel/llvm-3.0-r2 +++ b/metadata/md5-cache/sys-devel/llvm-3.0-r2 @@ -9,5 +9,5 @@ LICENSE=UoI-NCSA RDEPEND=dev-lang/perl libffi? ( virtual/libffi ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) =dev-lang/python-2* SLOT=0 SRC_URI=http://llvm.org/releases/3.0/llvm-3.0.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=44edc0d3edb1b51b4fb44b17fe11c153 diff --git a/metadata/md5-cache/sys-devel/llvm-3.1-r2 b/metadata/md5-cache/sys-devel/llvm-3.1-r2 index 64d7a69bf25c..c4313889a630 100644 --- a/metadata/md5-cache/sys-devel/llvm-3.1-r2 +++ b/metadata/md5-cache/sys-devel/llvm-3.1-r2 @@ -9,5 +9,5 @@ LICENSE=UoI-NCSA RDEPEND=dev-lang/perl libffi? ( virtual/libffi ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) =dev-lang/python-2* SLOT=0 SRC_URI=http://llvm.org/releases/3.1/llvm-3.1.src.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f724055f5594984c6a07b0e7487b286e diff --git a/metadata/md5-cache/sys-devel/llvm-3.2 b/metadata/md5-cache/sys-devel/llvm-3.2 index 6f01ecc88a08..bf085edffb3a 100644 --- a/metadata/md5-cache/sys-devel/llvm-3.2 +++ b/metadata/md5-cache/sys-devel/llvm-3.2 @@ -9,5 +9,5 @@ LICENSE=UoI-NCSA RDEPEND=dev-lang/perl libffi? ( virtual/libffi ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) SLOT=0 SRC_URI=http://llvm.org/releases/3.2/llvm-3.2.src.tar.gz !doc? ( http://dev.gentoo.org/~voyageur/distfiles/llvm-3.2-manpages.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7a4b4880969d5ae8865011b231f1b494 diff --git a/metadata/md5-cache/sys-devel/llvm-9999 b/metadata/md5-cache/sys-devel/llvm-9999 index 21c993a16bf2..91ed6377a998 100644 --- a/metadata/md5-cache/sys-devel/llvm-9999 +++ b/metadata/md5-cache/sys-devel/llvm-9999 @@ -7,5 +7,5 @@ IUSE=debug doc gold +libffi multitarget ocaml test udis86 vim-syntax video_cards LICENSE=UoI-NCSA RDEPEND=dev-lang/perl libffi? ( virtual/libffi ) vim-syntax? ( || ( app-editors/vim app-editors/gvim ) ) SLOT=0 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=ed2c5df3c5f00a292fb55605d5ad53b8 diff --git a/metadata/md5-cache/sys-devel/patch-2.7.1 b/metadata/md5-cache/sys-devel/patch-2.7.1 index d272a2352eef..d17edf3d71c0 100644 --- a/metadata/md5-cache/sys-devel/patch-2.7.1 +++ b/metadata/md5-cache/sys-devel/patch-2.7.1 @@ -8,5 +8,5 @@ LICENSE=GPL-2 RDEPEND=xattr? ( sys-apps/attr ) SLOT=0 SRC_URI=mirror://gnu/patch/patch-2.7.1.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c183c1fd79763c66403eb7319dc83cd0 diff --git a/metadata/md5-cache/sys-devel/patch-2.7.1-r1 b/metadata/md5-cache/sys-devel/patch-2.7.1-r1 index 20e91f4b898b..17188a2af0b6 100644 --- a/metadata/md5-cache/sys-devel/patch-2.7.1-r1 +++ b/metadata/md5-cache/sys-devel/patch-2.7.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=xattr? ( sys-apps/attr ) SLOT=0 SRC_URI=mirror://gnu/patch/patch-2.7.1.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=48f2f6f0526a786af4b0278c795a7353 diff --git a/metadata/md5-cache/sys-fs/cryptsetup-1.0.6-r2 b/metadata/md5-cache/sys-fs/cryptsetup-1.0.6-r2 index ef7b9f83579e..52bd18361ca8 100644 --- a/metadata/md5-cache/sys-fs/cryptsetup-1.0.6-r2 +++ b/metadata/md5-cache/sys-fs/cryptsetup-1.0.6-r2 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile install postinst setup unpack -DEPEND=|| ( >=sys-fs/lvm2-2.02.45 >=sys-fs/device-mapper-1.00.07-r1 ) >=dev-libs/libgcrypt-1.1.42 >=dev-libs/libgpg-error-1.0-r1 >=dev-libs/popt-1.7 virtual/udev || ( >=sys-libs/e2fsprogs-libs-1.41 =sys-fs/lvm2-2.02.45 >=dev-libs/libgcrypt-1.1.42 >=dev-libs/libgpg-error-1.0-r1 >=dev-libs/popt-1.7 virtual/udev || ( >=sys-libs/e2fsprogs-libs-1.41 =sys-fs/lvm2-2.02.45 >=sys-fs/device-mapper-1.00.07-r1 ) >=dev-libs/libgcrypt-1.1.42 >=dev-libs/libgpg-error-1.0-r1 >=dev-libs/popt-1.7 virtual/udev || ( >=sys-libs/e2fsprogs-libs-1.41 =sys-fs/lvm2-2.02.45 >=dev-libs/libgcrypt-1.1.42 >=dev-libs/libgpg-error-1.0-r1 >=dev-libs/popt-1.7 virtual/udev || ( >=sys-libs/e2fsprogs-libs-1.41 =sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) +DEPEND=>=sys-fs/lvm2-2.02.45 selinux? ( sys-libs/libselinux sys-libs/libsepol ) DESCRIPTION=Device-mapper RAID tool and library HOMEPAGE=http://people.redhat.com/~heinzm/sw/dmraid/ IUSE=static selinux KEYWORDS=amd64 x86 LICENSE=GPL-2 -RDEPEND=|| ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) +RDEPEND=>=sys-fs/lvm2-2.02.45 selinux? ( sys-libs/libselinux sys-libs/libsepol ) SLOT=0 SRC_URI=http://people.redhat.com/~heinzm/sw/dmraid/src/old/dmraid-1.0.0.rc14.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=66f9521faaab87d12245ed7c028d3f71 +_md5_=5d1c87fe8572eb41a94bd68da5d63cc4 diff --git a/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc15 b/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc15 index e2a77a93d5b5..9936e07625e1 100644 --- a/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc15 +++ b/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc15 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile install postinst setup unpack -DEPEND=|| ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) +DEPEND=>=sys-fs/lvm2-2.02.45 selinux? ( sys-libs/libselinux sys-libs/libsepol ) DESCRIPTION=Device-mapper RAID tool and library HOMEPAGE=http://people.redhat.com/~heinzm/sw/dmraid/ IUSE=static selinux KEYWORDS=~amd64 ppc ~x86 LICENSE=GPL-2 -RDEPEND=|| ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) +RDEPEND=>=sys-fs/lvm2-2.02.45 selinux? ( sys-libs/libselinux sys-libs/libsepol ) SLOT=0 SRC_URI=http://people.redhat.com/~heinzm/sw/dmraid/src/dmraid-1.0.0.rc15.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=097d641922e3a6b736714c3055495b79 +_md5_=aa751c331ac1f6115f1ff22e691c8b5c diff --git a/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc16-r3 b/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc16-r3 index 423554662501..f8205b6b0ab1 100644 --- a/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc16-r3 +++ b/metadata/md5-cache/sys-fs/dmraid-1.0.0_rc16-r3 @@ -1,14 +1,14 @@ DEFINED_PHASES=configure install postinst prepare setup -DEPEND=|| ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) klibc? ( dev-libs/klibc ) dietlibc? ( dev-libs/dietlibc ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=>=sys-fs/lvm2-2.02.45 klibc? ( dev-libs/klibc ) dietlibc? ( dev-libs/dietlibc ) virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Device-mapper RAID tool and library EAPI=5 HOMEPAGE=http://people.redhat.com/~heinzm/sw/dmraid/ IUSE=dietlibc intel_led klibc led mini static KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=|| ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) klibc? ( dev-libs/klibc ) dietlibc? ( dev-libs/dietlibc ) +RDEPEND=>=sys-fs/lvm2-2.02.45 klibc? ( dev-libs/klibc ) dietlibc? ( dev-libs/dietlibc ) REQUIRED_USE=klibc? ( !dietlibc ) SLOT=0 SRC_URI=http://people.redhat.com/~heinzm/sw/dmraid/src/dmraid-1.0.0.rc16-3.tar.bz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=c71c74b71ff798a106025d76686bb8af +_md5_=caae20f515914f4f940ae4e16f58addf diff --git a/metadata/md5-cache/sys-fs/eudev-9999 b/metadata/md5-cache/sys-fs/eudev-9999 index 0ed4db39bdb1..356acdfeb793 100644 --- a/metadata/md5-cache/sys-fs/eudev-9999 +++ b/metadata/md5-cache/sys-fs/eudev-9999 @@ -3,11 +3,11 @@ DEPEND=gudev? ( dev-libs/glib:2 ) kmod? ( sys-apps/kmod ) introspection? ( >=dev DESCRIPTION=Linux dynamic and persistent device naming support (aka userspace devfs) EAPI=5 HOMEPAGE=https://github.com/gentoo/eudev -IUSE=doc gudev hwdb kmod introspection legacy-libudev keymap +modutils +openrc rule-generator selinux static-libs +IUSE=doc gudev hwdb kmod introspection legacy-libudev keymap +modutils +openrc +rule-generator selinux static-libs LICENSE=LGPL-2.1 MIT GPL-2 PDEPEND=>=virtual/udev-180 openrc? ( >=sys-fs/udev-init-scripts-18 ) RDEPEND=gudev? ( dev-libs/glib:2 ) kmod? ( sys-apps/kmod ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) selinux? ( sys-libs/libselinux ) >=sys-apps/util-linux-2.20 !=sys-apps/hwids-20121202.2[udev] ) !sys-fs/udev !sys-apps/coldplug !sys-apps/systemd !=sys-fs/lvm2-2.02.45 ) ncurses? ( >=dev-libs/glib-2.12.4-r1 sys-libs/ncurses ) ncurses? ( virtual/pkgconfig ) +DEPEND=sys-apps/util-linux sys-libs/readline >=sys-fs/lvm2-2.02.45 ncurses? ( >=dev-libs/glib-2.12.4-r1 sys-libs/ncurses ) ncurses? ( virtual/pkgconfig ) DESCRIPTION=Utilities for the IBM Enterprise Volume Management System EAPI=4 HOMEPAGE=http://www.sourceforge.net/projects/evms IUSE=ncurses nls KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=GPL-2 -RDEPEND=sys-apps/util-linux sys-libs/readline || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.45 ) ncurses? ( >=dev-libs/glib-2.12.4-r1 sys-libs/ncurses ) +RDEPEND=sys-apps/util-linux sys-libs/readline >=sys-fs/lvm2-2.02.45 ncurses? ( >=dev-libs/glib-2.12.4-r1 sys-libs/ncurses ) RESTRICT=test SLOT=0 SRC_URI=mirror://sourceforge/evms/evms-2.5.5.tar.gz mirror://gentoo/evms-patches-2.5.5-4.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 autotools-utils 7c1dc0608214b369c4dc38ab6427e729 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=179a47d1bda96fcf4d1ab7302ea55cc3 +_md5_=66835eccecc6dc5017a9d7a11e1045fc diff --git a/metadata/md5-cache/sys-fs/lvm2-2.01.13 b/metadata/md5-cache/sys-fs/lvm2-2.01.13 deleted file mode 100644 index d34c612d09e6..000000000000 --- a/metadata/md5-cache/sys-fs/lvm2-2.01.13 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=compile install -DEPEND=>=sys-fs/device-mapper-1.01 -DESCRIPTION=User-land utilities for LVM2 (device-mapper) software. -HOMEPAGE=http://sources.redhat.com/lvm2/ -IUSE=readline nolvmstatic -KEYWORDS=~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 -LICENSE=GPL-2 -RDEPEND=>=sys-fs/device-mapper-1.01 !sys-fs/lvm-user -SLOT=0 -SRC_URI=ftp://sources.redhat.com/pub/lvm2/LVM2.2.01.13.tgz ftp://sources.redhat.com/pub/lvm2/old/LVM2.2.01.13.tgz -_md5_=5720e23b27f4e60faf312401bca87e26 diff --git a/metadata/md5-cache/sys-fs/lvm2-2.02.67-r2 b/metadata/md5-cache/sys-fs/lvm2-2.02.67-r2 deleted file mode 100644 index 4cede5cbfb57..000000000000 --- a/metadata/md5-cache/sys-fs/lvm2-2.02.67-r2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=!!sys-fs/device-mapper clvm? ( =sys-cluster/dlm-2* cman? ( =sys-cluster/cman-2* ) ) =sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -DESCRIPTION=User-land utilities for LVM2 (device-mapper) software. -EAPI=2 -HOMEPAGE=http://sources.redhat.com/lvm2/ -IUSE=readline +static clvm cman +lvm1 selinux -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 -LICENSE=GPL-2 -RDEPEND=!!sys-fs/device-mapper clvm? ( =sys-cluster/dlm-2* cman? ( =sys-cluster/cman-2* ) ) =sys-apps/util-linux-2.16 -SLOT=0 -SRC_URI=ftp://sources.redhat.com/pub/lvm2/LVM2.2.02.67.tgz ftp://sources.redhat.com/pub/lvm2/old/LVM2.2.02.67.tgz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=7a1a2c1a065642fa0926a402a58a4ef6 diff --git a/metadata/md5-cache/sys-fs/lvm2-2.02.73 b/metadata/md5-cache/sys-fs/lvm2-2.02.73 deleted file mode 100644 index 549816b91805..000000000000 --- a/metadata/md5-cache/sys-fs/lvm2-2.02.73 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst prepare setup test unpack -DEPEND=!!sys-fs/device-mapper clvm? ( =sys-cluster/dlm-2* cman? ( =sys-cluster/cman-2* ) ) =sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -DESCRIPTION=User-land utilities for LVM2 (device-mapper) software. -EAPI=2 -HOMEPAGE=http://sources.redhat.com/lvm2/ -IUSE=readline +static clvm cman +lvm1 selinux -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86 -LICENSE=GPL-2 -RDEPEND=!!sys-fs/device-mapper clvm? ( =sys-cluster/dlm-2* cman? ( =sys-cluster/cman-2* ) ) =sys-apps/util-linux-2.16 !=sys-devel/binutils-2.20.1-r1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -DESCRIPTION=User-land utilities for LVM2 (device-mapper) software. -EAPI=2 -HOMEPAGE=http://sources.redhat.com/lvm2/ -IUSE=readline +static clvm cman +lvm1 selinux -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 -LICENSE=GPL-2 -RDEPEND=!!sys-fs/device-mapper readline? ( sys-libs/readline ) clvm? ( =sys-cluster/dlm-2* cman? ( =sys-cluster/cman-2* ) ) =sys-apps/util-linux-2.16 !=sys-devel/binutils-2.20.1-r1 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool -DESCRIPTION=User-land utilities for LVM2 (device-mapper) software. -EAPI=3 -HOMEPAGE=http://sources.redhat.com/lvm2/ -IUSE=readline +static +static-libs clvm cman +lvm1 selinux -KEYWORDS=alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-linux -LICENSE=GPL-2 -RDEPEND=!!sys-fs/device-mapper readline? ( sys-libs/readline ) clvm? ( =sys-cluster/dlm-2* cman? ( =sys-cluster/cman-2* ) ) =sys-apps/util-linux-2.16 !=sys-fs/lvm2-2.02.45 >=sys-fs/device-mapper-1.00.19-r1 ) virtual/udev dev-libs/libaio +DEPEND=>=sys-fs/lvm2-2.02.45 >=virtual/udev-171 dev-libs/libaio DESCRIPTION=Device mapper target autoconfig EAPI=2 HOMEPAGE=http://christophe.varoqui.free.fr/ KEYWORDS=amd64 ~arm ppc ppc64 x86 LICENSE=GPL-2 -RDEPEND=|| ( >=sys-fs/lvm2-2.02.45 >=sys-fs/device-mapper-1.00.19-r1 ) virtual/udev dev-libs/libaio +RDEPEND=>=sys-fs/lvm2-2.02.45 >=virtual/udev-171 dev-libs/libaio SLOT=0 SRC_URI=http://christophe.varoqui.free.fr/multipath-tools/multipath-tools-0.4.8.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=34eaf2779228392b97e895420876211a +_md5_=803e51a2fc76817cd8d9aec2e34b8dba diff --git a/metadata/md5-cache/sys-fs/multipath-tools-0.4.9-r5 b/metadata/md5-cache/sys-fs/multipath-tools-0.4.9-r5 index af5f798d50a8..d9834b7ff52c 100644 --- a/metadata/md5-cache/sys-fs/multipath-tools-0.4.9-r5 +++ b/metadata/md5-cache/sys-fs/multipath-tools-0.4.9-r5 @@ -1,12 +1,12 @@ DEFINED_PHASES=compile configure install postinst preinst prepare unpack -DEPEND=|| ( >=sys-fs/lvm2-2.02.45 >=sys-fs/device-mapper-1.00.19-r1 ) virtual/udev dev-libs/libaio sys-libs/readline !=sys-fs/lvm2-2.02.45 >=virtual/udev-171 dev-libs/libaio sys-libs/readline !=sys-fs/lvm2-2.02.45 >=sys-fs/device-mapper-1.00.19-r1 ) virtual/udev dev-libs/libaio sys-libs/readline !=sys-fs/lvm2-2.02.45 >=virtual/udev-171 dev-libs/libaio sys-libs/readline !=dev-libs/libxml2-2.6:2 dev-libs/openssl >=net-misc/curl-7.0 >=sys-fs/fu DESCRIPTION=Amazon mounting S3 via fuse EAPI=5 HOMEPAGE=http://s3fs.googlecode.com/ -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 RDEPEND=>=dev-libs/libxml2-2.6:2 dev-libs/openssl >=net-misc/curl-7.0 >=sys-fs/fuse-2.8.4 app-misc/mime-types RESTRICT=test SLOT=0 SRC_URI=http://s3fs.googlecode.com/files/s3fs-1.63.tar.gz _eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=5eded3e110735963d45b0eace4125c83 +_md5_=feec6c4c77dbf26451f12804ed1cbd26 diff --git a/metadata/md5-cache/sys-fs/s3ql-1.12-r1 b/metadata/md5-cache/sys-fs/s3ql-1.12-r1 index 2c0b2be35d51..4c1493871330 100644 --- a/metadata/md5-cache/sys-fs/s3ql-1.12-r1 +++ b/metadata/md5-cache/sys-fs/s3ql-1.12-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/apsw-3.7.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/llfuse-0.37[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/pyliblzma[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-fs/fuse 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 ) python_targets_python2_7? ( dev-lang/python: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=http://s3ql.googlecode.com/files/s3ql-1.12.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1d73506a69959078a60cd442043865f5 diff --git a/metadata/md5-cache/sys-fs/s3ql-1.13.1 b/metadata/md5-cache/sys-fs/s3ql-1.13.1 index f43d536035bf..d0f3fcd69eb9 100644 --- a/metadata/md5-cache/sys-fs/s3ql-1.13.1 +++ b/metadata/md5-cache/sys-fs/s3ql-1.13.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/apsw-3.7.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/llfuse-0.37[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/pyliblzma[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-fs/fuse 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 ) python_targets_python2_7? ( dev-lang/python: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=http://s3ql.googlecode.com/files/s3ql-1.13.1.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7f47c51c63058044aa5c4cf46e775558 diff --git a/metadata/md5-cache/sys-fs/s3ql-1.13.2 b/metadata/md5-cache/sys-fs/s3ql-1.13.2 index 085d0b7ed503..40d1079073ac 100644 --- a/metadata/md5-cache/sys-fs/s3ql-1.13.2 +++ b/metadata/md5-cache/sys-fs/s3ql-1.13.2 @@ -9,5 +9,5 @@ LICENSE=GPL-3 RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/apsw-3.7.0[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/llfuse-0.37[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/pyliblzma[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] sys-fs/fuse 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 ) python_targets_python2_7? ( dev-lang/python: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=http://s3ql.googlecode.com/files/s3ql-1.13.2.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=6dacb61ed0052a77924e302d64cba1c4 diff --git a/metadata/md5-cache/sys-fs/udev-201 b/metadata/md5-cache/sys-fs/udev-201 new file mode 100644 index 000000000000..530b3cc76705 --- /dev/null +++ b/metadata/md5-cache/sys-fs/udev-201 @@ -0,0 +1,15 @@ +DEFINED_PHASES=compile configure install postinst preinst prepare setup +DEPEND=>=sys-apps/util-linux-2.20 acl? ( sys-apps/acl ) gudev? ( >=dev-libs/glib-2 ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) kmod? ( >=sys-apps/kmod-13 ) selinux? ( >=sys-libs/libselinux-2.1.9 ) !=sys-devel/make-3.82-r4 virtual/os-headers virtual/pkgconfig !=dev-util/gtk-doc-1.18 ) keymap? ( dev-util/gperf ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=Linux dynamic and persistent device naming support (aka userspace devfs) +EAPI=5 +HOMEPAGE=http://www.freedesktop.org/wiki/Software/systemd +IUSE=acl doc +firmware-loader gudev hwdb introspection keymap +kmod +openrc selinux static-libs +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 +LICENSE=LGPL-2.1 MIT GPL-2 +PDEPEND=>=virtual/udev-197-r1 hwdb? ( >=sys-apps/hwids-20130326.1[udev] ) openrc? ( >=sys-fs/udev-init-scripts-25 ) +RDEPEND=>=sys-apps/util-linux-2.20 acl? ( sys-apps/acl ) gudev? ( >=dev-libs/glib-2 ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) kmod? ( >=sys-apps/kmod-13 ) selinux? ( >=sys-libs/libselinux-2.1.9 ) !=sys-apps/util-linux-2.20 acl? ( sys-apps/acl ) gudev? ( >=dev-libs/glib-2 ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) kmod? ( >=sys-apps/kmod-12 ) selinux? ( >=sys-libs/libselinux-2.1.9 ) !=dev-util/gtk-doc-1.18 ) keymap? ( dev-util/gperf ) dev-util/gperf >=dev-util/intltool-0.50 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/git +DEPEND=>=sys-apps/util-linux-2.20 acl? ( sys-apps/acl ) gudev? ( >=dev-libs/glib-2 ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) kmod? ( >=sys-apps/kmod-13 ) selinux? ( >=sys-libs/libselinux-2.1.9 ) !=sys-devel/make-3.82-r4 virtual/os-headers virtual/pkgconfig !=dev-util/gtk-doc-1.18 ) keymap? ( dev-util/gperf ) dev-util/gperf >=dev-util/intltool-0.50 || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/git DESCRIPTION=Linux dynamic and persistent device naming support (aka userspace devfs) EAPI=5 HOMEPAGE=http://www.freedesktop.org/wiki/Software/systemd IUSE=acl doc +firmware-loader gudev hwdb introspection keymap +kmod +openrc selinux static-libs LICENSE=LGPL-2.1 MIT GPL-2 PDEPEND=>=virtual/udev-197-r1 hwdb? ( >=sys-apps/hwids-20130326.1[udev] ) openrc? ( >=sys-fs/udev-init-scripts-25 ) -RDEPEND=>=sys-apps/util-linux-2.20 acl? ( sys-apps/acl ) gudev? ( >=dev-libs/glib-2 ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) kmod? ( >=sys-apps/kmod-12 ) selinux? ( >=sys-libs/libselinux-2.1.9 ) !=sys-apps/util-linux-2.20 acl? ( sys-apps/acl ) gudev? ( >=dev-libs/glib-2 ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) kmod? ( >=sys-apps/kmod-13 ) selinux? ( >=sys-libs/libselinux-2.1.9 ) !=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.20 >=sys-fs/udev-164 !>=sys-fs/udev-186 debug? ( dev-util/strace ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_crypt? ( sys-fs/cryptsetup || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) dracut_modules_dmsquash-live? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.20 >=sys-fs/udev-164 !>=sys-fs/udev-186 debug? ( dev-util/strace ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_crypt? ( sys-fs/cryptsetup >=sys-fs/lvm2-2.02.33 ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools >=sys-fs/lvm2-2.02.33 ) dracut_modules_dmsquash-live? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt-gpg? ( dracut_modules_crypt ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-014.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=eadae017fd7b407625d207edd8df443f +_md5_=fc7f20807e3e2fbff27f04f2d2327ef0 diff --git a/metadata/md5-cache/sys-kernel/dracut-018-r3 b/metadata/md5-cache/sys-kernel/dracut-018-r3 index 5d7b4f06196d..cdd36cb4a3ef 100644 --- a/metadata/md5-cache/sys-kernel/dracut-018-r3 +++ b/metadata/md5-cache/sys-kernel/dracut-018-r3 @@ -5,10 +5,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 >=sys-fs/udev-166 !>=sys-fs/udev-186 debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 >=sys-fs/udev-166 !>=sys-fs/udev-186 debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-018.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f180a1c24ae0f50ef2144101916ea9a4 +_md5_=e3f6949892d5fd345be3abf6af10d1c2 diff --git a/metadata/md5-cache/sys-kernel/dracut-019-r6 b/metadata/md5-cache/sys-kernel/dracut-019-r6 index 4c56674cc3c8..c7875bdc7363 100644 --- a/metadata/md5-cache/sys-kernel/dracut-019-r6 +++ b/metadata/md5-cache/sys-kernel/dracut-019-r6 @@ -5,10 +5,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.20 virtual/pkgconfig virtual/udev debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.20 virtual/pkgconfig virtual/udev debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-019.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=9b9a912e2f15b5bdef34c5782725a133 +_md5_=98d65c66f894ea58613383abb5b49dfc diff --git a/metadata/md5-cache/sys-kernel/dracut-022-r6 b/metadata/md5-cache/sys-kernel/dracut-022-r6 index 917abb3e341e..680d9beaaf2b 100644 --- a/metadata/md5-cache/sys-kernel/dracut-022-r6 +++ b/metadata/md5-cache/sys-kernel/dracut-022-r6 @@ -6,10 +6,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper optimization net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=virtual/udev app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.20 debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=virtual/udev app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.20 debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-022.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=a008eee06fed60e4d4c59df1a7cb995f +_md5_=bab1dc079c0c98f5d4ce3b7296b57603 diff --git a/metadata/md5-cache/sys-kernel/dracut-023-r4 b/metadata/md5-cache/sys-kernel/dracut-023-r4 index d4f53315841b..e316defb1dcc 100644 --- a/metadata/md5-cache/sys-kernel/dracut-023-r4 +++ b/metadata/md5-cache/sys-kernel/dracut-023-r4 @@ -6,10 +6,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper optimization net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_crypt-loop dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_systemd dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_cifs dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~amd64 ~x86 LICENSE=GPL-2 -RDEPEND=virtual/udev dracut_modules_systemd? ( sys-apps/systemd ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=virtual/udev dracut_modules_systemd? ( sys-apps/systemd ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_crypt-loop? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_cifs? ( net ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-023.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=890495d959a1869d5bfaec9da78e01ec +_md5_=e039d9048061d70c1d3123a4482f2488 diff --git a/metadata/md5-cache/sys-kernel/dracut-024-r4 b/metadata/md5-cache/sys-kernel/dracut-024-r4 index fcf54414517a..05b35d32c6f3 100644 --- a/metadata/md5-cache/sys-kernel/dracut-024-r4 +++ b/metadata/md5-cache/sys-kernel/dracut-024-r4 @@ -6,10 +6,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper optimization net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_crypt-loop dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_systemd dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_cifs dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=virtual/udev dracut_modules_systemd? ( sys-apps/systemd ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=virtual/udev dracut_modules_systemd? ( sys-apps/systemd ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_crypt-loop? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_cifs? ( net ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-024.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=80e90eed7c14cef9ca9232dfc8942f76 +_md5_=8e766c447bf45a033fb48df26eea4298 diff --git a/metadata/md5-cache/sys-kernel/dracut-025 b/metadata/md5-cache/sys-kernel/dracut-025 index 786e2ed40643..2f824a72a85e 100644 --- a/metadata/md5-cache/sys-kernel/dracut-025 +++ b/metadata/md5-cache/sys-kernel/dracut-025 @@ -6,10 +6,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper optimization net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_crypt-loop dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_systemd dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_cifs dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=virtual/udev dracut_modules_systemd? ( sys-apps/systemd ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=virtual/udev dracut_modules_systemd? ( sys-apps/systemd ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_crypt-loop? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_cifs? ( net ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-025.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=ecd9710465136039e29b9b70a617b808 +_md5_=648bf5c8e8aabb69297cdb085a69b7bf diff --git a/metadata/md5-cache/sys-kernel/dracut-026 b/metadata/md5-cache/sys-kernel/dracut-026 index 4ebdca98247a..04bb711dbfe6 100644 --- a/metadata/md5-cache/sys-kernel/dracut-026 +++ b/metadata/md5-cache/sys-kernel/dracut-026 @@ -6,10 +6,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper optimization net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_crypt-loop dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_systemd dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_cifs dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=virtual/udev dracut_modules_systemd? ( sys-apps/systemd ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=virtual/udev dracut_modules_systemd? ( sys-apps/systemd ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_crypt-loop? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_cifs? ( net ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-026.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=f8dce81b9759b9d08ab0f0e078a6bec9 +_md5_=4d0abb4f884216b16bb2cc12d32dbc12 diff --git a/metadata/md5-cache/sys-kernel/dracut-026-r1 b/metadata/md5-cache/sys-kernel/dracut-026-r1 index c77b612466e0..f83282e997f1 100644 --- a/metadata/md5-cache/sys-kernel/dracut-026-r1 +++ b/metadata/md5-cache/sys-kernel/dracut-026-r1 @@ -6,10 +6,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper optimization net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_crypt-loop dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_systemd dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_cifs dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=virtual/udev dracut_modules_systemd? ( >=sys-apps/systemd-198-r5 ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=virtual/udev dracut_modules_systemd? ( >=sys-apps/systemd-198-r5 ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_crypt-loop? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_cifs? ( net ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-026.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=a90f15818bcdf959ad7b69d4b759172f +_md5_=2b5b1679df59f7972cc0074975203e53 diff --git a/metadata/md5-cache/sys-kernel/dracut-026-r2 b/metadata/md5-cache/sys-kernel/dracut-026-r2 index 13cfafd634c9..cf80b542801a 100644 --- a/metadata/md5-cache/sys-kernel/dracut-026-r2 +++ b/metadata/md5-cache/sys-kernel/dracut-026-r2 @@ -6,10 +6,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper optimization net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_crypt-loop dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_systemd dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_cifs dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=virtual/udev dracut_modules_systemd? ( >=sys-apps/systemd-198-r5 ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=virtual/udev dracut_modules_systemd? ( >=sys-apps/systemd-198-r5 ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_bootchart? ( !dracut_modules_systemd ) dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_crypt-loop? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_cifs? ( net ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-026.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=eb6bf1c9f5a733972c1de29532a58e46 +_md5_=f4568f2007575007fb4625f1972c95ea diff --git a/metadata/md5-cache/sys-kernel/dracut-027 b/metadata/md5-cache/sys-kernel/dracut-027 index 0cbd3b654a8f..a3767671d6af 100644 --- a/metadata/md5-cache/sys-kernel/dracut-027 +++ b/metadata/md5-cache/sys-kernel/dracut-027 @@ -6,10 +6,10 @@ HOMEPAGE=http://dracut.wiki.kernel.org IUSE=debug device-mapper optimization net selinux dracut_modules_biosdevname dracut_modules_bootchart dracut_modules_btrfs dracut_modules_caps dracut_modules_crypt-gpg dracut_modules_crypt-loop dracut_modules_gensplash dracut_modules_mdraid dracut_modules_multipath dracut_modules_plymouth dracut_modules_syslog dracut_modules_systemd dracut_modules_crypt dracut_modules_dmraid dracut_modules_dmsquash-live dracut_modules_livenet dracut_modules_lvm dracut_modules_cifs dracut_modules_iscsi dracut_modules_livenet dracut_modules_nbd dracut_modules_nfs dracut_modules_ssh-client KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 LICENSE=GPL-2 -RDEPEND=virtual/udev dracut_modules_systemd? ( >=sys-apps/systemd-199 ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) +RDEPEND=virtual/udev dracut_modules_systemd? ( >=sys-apps/systemd-199 ) app-arch/cpio >=app-shells/bash-4.0 >=app-shells/dash-0.5.4.11 >=sys-apps/baselayout-1.12.14-r1 || ( >=sys-apps/module-init-tools-3.8 >sys-apps/kmod-5[tools] ) >=sys-apps/sysvinit-2.87-r3 >=sys-apps/util-linux-2.21 virtual/pkgconfig debug? ( dev-util/strace ) device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) dracut_modules_bootchart? ( app-benchmarks/bootchart2 sys-apps/usleep sys-process/acct ) dracut_modules_btrfs? ( sys-fs/btrfs-progs ) dracut_modules_caps? ( sys-libs/libcap ) dracut_modules_cifs? ( net-fs/cifs-utils ) dracut_modules_crypt? ( sys-fs/cryptsetup ) dracut_modules_crypt-gpg? ( app-crypt/gnupg ) dracut_modules_dmraid? ( sys-fs/dmraid sys-fs/multipath-tools ) dracut_modules_gensplash? ( media-gfx/splashutils ) dracut_modules_iscsi? ( >=sys-block/open-iscsi-2.0.871.3 ) dracut_modules_lvm? ( >=sys-fs/lvm2-2.02.33 ) dracut_modules_mdraid? ( sys-fs/mdadm ) dracut_modules_multipath? ( sys-fs/multipath-tools ) dracut_modules_nbd? ( sys-block/nbd ) dracut_modules_nfs? ( net-fs/nfs-utils net-nds/rpcbind ) dracut_modules_plymouth? ( >=sys-boot/plymouth-0.8.3-r1 ) dracut_modules_ssh-client? ( dev-libs/openssl ) dracut_modules_syslog? ( || ( app-admin/syslog-ng app-admin/rsyslog ) ) REQUIRED_USE=dracut_modules_bootchart? ( !dracut_modules_systemd ) dracut_modules_crypt-gpg? ( dracut_modules_crypt ) dracut_modules_crypt-loop? ( dracut_modules_crypt ) dracut_modules_livenet? ( dracut_modules_dmsquash-live ) dracut_modules_crypt? ( device-mapper ) dracut_modules_dmraid? ( device-mapper ) dracut_modules_dmsquash-live? ( device-mapper ) dracut_modules_livenet? ( device-mapper ) dracut_modules_lvm? ( device-mapper ) dracut_modules_cifs? ( net ) dracut_modules_iscsi? ( net ) dracut_modules_livenet? ( net ) dracut_modules_nbd? ( net ) dracut_modules_nfs? ( net ) dracut_modules_ssh-client? ( net ) RESTRICT=test SLOT=0 SRC_URI=mirror://kernel/linux/utils/boot/dracut/dracut-027.tar.bz2 _eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=727581b8e3ae00e4ff6284a86fa32b9e +_md5_=d7ea584150d30dbc917df9272b0afb6d diff --git a/metadata/md5-cache/sys-kernel/vanilla-sources-3.2.42 b/metadata/md5-cache/sys-kernel/vanilla-sources-3.2.43 similarity index 90% rename from metadata/md5-cache/sys-kernel/vanilla-sources-3.2.42 rename to metadata/md5-cache/sys-kernel/vanilla-sources-3.2.43 index e0901f175171..c9252ddf5ef8 100644 --- a/metadata/md5-cache/sys-kernel/vanilla-sources-3.2.42 +++ b/metadata/md5-cache/sys-kernel/vanilla-sources-3.2.43 @@ -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.2.42 -SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.2.42.xz mirror://kernel/linux/kernel/v3.x/linux-3.2.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.2.N/deblob-3.2 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.2.N/deblob-check -> deblob-check-3.2 ) +SLOT=3.2.43 +SRC_URI=mirror://kernel/linux/kernel/v3.x/patch-3.2.43.xz mirror://kernel/linux/kernel/v3.x/linux-3.2.tar.xz deblob? ( http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.2.N/deblob-3.2 http://www.fsfla.org/svnwiki/selibre/linux-libre//download/releases/LATEST-3.2.N/deblob-check -> deblob-check-3.2 ) _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 kernel-2 fa014ac485d8a2277bbd6aa17bc89521 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b22744500f5872b23d97a8fbc69a9e8d +_md5_=e1f2586b8cfa0b7b8698e13d222b9634 diff --git a/metadata/md5-cache/sys-libs/glibc-2.15-r1 b/metadata/md5-cache/sys-libs/glibc-2.15-r1 index ae919260d592..933798972713 100644 --- a/metadata/md5-cache/sys-libs/glibc-2.15-r1 +++ b/metadata/md5-cache/sys-libs/glibc-2.15-r1 @@ -9,5 +9,5 @@ RDEPEND=!sys-kernel/ps3-sources selinux? ( sys-libs/libselinux ) !sys-libs/nss-d RESTRICT=strip SLOT=2.2 SRC_URI=mirror://gnu/glibc/glibc-2.15.tar.xz ftp://sourceware.org/pub/glibc/releases/glibc-2.15.tar.xz ftp://sourceware.org/pub/glibc/snapshots/glibc-2.15.tar.xz mirror://gentoo/glibc-2.15.tar.xz mirror://gnu/glibc/glibc-ports-2.15.tar.xz ftp://sourceware.org/pub/glibc/releases/glibc-ports-2.15.tar.xz ftp://sourceware.org/pub/glibc/snapshots/glibc-ports-2.15.tar.xz mirror://gentoo/glibc-ports-2.15.tar.xz mirror://gentoo/glibc-2.15-patches-13.tar.bz2 http://dev.gentoo.org/~vapier/dist/glibc-2.15-patches-13.tar.bz2 http://dev.gentoo.org/~azarah/glibc/glibc-2.15-patches-13.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5baa82c45ffc1856d81bde1aaed5af91 diff --git a/metadata/md5-cache/sys-libs/glibc-2.15-r2 b/metadata/md5-cache/sys-libs/glibc-2.15-r2 index b758e053f5d8..1098331745bf 100644 --- a/metadata/md5-cache/sys-libs/glibc-2.15-r2 +++ b/metadata/md5-cache/sys-libs/glibc-2.15-r2 @@ -9,5 +9,5 @@ RDEPEND=!sys-kernel/ps3-sources selinux? ( sys-libs/libselinux ) !sys-libs/nss-d RESTRICT=strip SLOT=2.2 SRC_URI=mirror://gnu/glibc/glibc-2.15.tar.xz ftp://sourceware.org/pub/glibc/releases/glibc-2.15.tar.xz ftp://sourceware.org/pub/glibc/snapshots/glibc-2.15.tar.xz mirror://gentoo/glibc-2.15.tar.xz mirror://gnu/glibc/glibc-ports-2.15.tar.xz ftp://sourceware.org/pub/glibc/releases/glibc-ports-2.15.tar.xz ftp://sourceware.org/pub/glibc/snapshots/glibc-ports-2.15.tar.xz mirror://gentoo/glibc-ports-2.15.tar.xz mirror://gentoo/glibc-2.15-patches-21.tar.bz2 http://dev.gentoo.org/~vapier/dist/glibc-2.15-patches-21.tar.bz2 http://dev.gentoo.org/~azarah/glibc/glibc-2.15-patches-21.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=3b5e4e8fafea2fbcf0a6a6eedf32901c diff --git a/metadata/md5-cache/sys-libs/glibc-2.15-r3 b/metadata/md5-cache/sys-libs/glibc-2.15-r3 index 25c0510c1aad..7a63a53a495f 100644 --- a/metadata/md5-cache/sys-libs/glibc-2.15-r3 +++ b/metadata/md5-cache/sys-libs/glibc-2.15-r3 @@ -9,5 +9,5 @@ RDEPEND=!sys-kernel/ps3-sources selinux? ( sys-libs/libselinux ) !sys-libs/nss-d RESTRICT=strip SLOT=2.2 SRC_URI=mirror://gnu/glibc/glibc-2.15.tar.xz ftp://sourceware.org/pub/glibc/releases/glibc-2.15.tar.xz ftp://sourceware.org/pub/glibc/snapshots/glibc-2.15.tar.xz mirror://gentoo/glibc-2.15.tar.xz mirror://gnu/glibc/glibc-ports-2.15.tar.xz ftp://sourceware.org/pub/glibc/releases/glibc-ports-2.15.tar.xz ftp://sourceware.org/pub/glibc/snapshots/glibc-ports-2.15.tar.xz mirror://gentoo/glibc-ports-2.15.tar.xz mirror://gentoo/glibc-2.15-patches-23.tar.bz2 http://dev.gentoo.org/~vapier/dist/glibc-2.15-patches-23.tar.bz2 http://dev.gentoo.org/~azarah/glibc/glibc-2.15-patches-23.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d2ec83ed41d4a2dc21000362efe685de diff --git a/metadata/md5-cache/sys-libs/glibc-2.16.0 b/metadata/md5-cache/sys-libs/glibc-2.16.0 index ddbe89f5534e..a8c6fbdbf325 100644 --- a/metadata/md5-cache/sys-libs/glibc-2.16.0 +++ b/metadata/md5-cache/sys-libs/glibc-2.16.0 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile install test unpack DEPEND=>=app-misc/pax-utils-0.1.10 !=sys-devel/binutils-2.20 >=sys-devel/gcc-4.3 virtual/os-headers !vanilla? ( >=sys-libs/timezone-data-2012c ) sys-devel/gnuconfig DESCRIPTION=GNU libc6 (also called glibc2) C library HOMEPAGE=http://www.gnu.org/software/libc/libc.html -IUSE=debug gd hardened multilib selinux systemtap profile vanilla crosscompile_opts_headers-only +IUSE=debug gd hardened multilib selinux suid systemtap profile vanilla crosscompile_opts_headers-only KEYWORDS=-alpha ~amd64 ~arm -hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=LGPL-2.1+ BSD HPND inner-net RDEPEND=!sys-kernel/ps3-sources selinux? ( sys-libs/libselinux ) !sys-libs/nss-db vanilla? ( !sys-libs/timezone-data ) !vanilla? ( sys-libs/timezone-data ) RESTRICT=strip SLOT=2.2 SRC_URI=mirror://gnu/glibc/glibc-2.16.0.tar.xz ftp://sourceware.org/pub/glibc/releases/glibc-2.16.0.tar.xz ftp://sourceware.org/pub/glibc/snapshots/glibc-2.16.0.tar.xz mirror://gentoo/glibc-2.16.0.tar.xz mirror://gnu/glibc/glibc-ports-2.16.0.tar.xz ftp://sourceware.org/pub/glibc/releases/glibc-ports-2.16.0.tar.xz ftp://sourceware.org/pub/glibc/snapshots/glibc-ports-2.16.0.tar.xz mirror://gentoo/glibc-ports-2.16.0.tar.xz mirror://gentoo/glibc-2.16.0-patches-10.tar.bz2 http://dev.gentoo.org/~vapier/dist/glibc-2.16.0-patches-10.tar.bz2 http://dev.gentoo.org/~azarah/glibc/glibc-2.16.0-patches-10.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=58c17b2ab970ceab470117abd104553f +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=f8b1ef5ba941289913686cf250aa5bdd diff --git a/metadata/md5-cache/sys-libs/glibc-2.17 b/metadata/md5-cache/sys-libs/glibc-2.17 index 0ceb94ed33af..ad0fefb5cec5 100644 --- a/metadata/md5-cache/sys-libs/glibc-2.17 +++ b/metadata/md5-cache/sys-libs/glibc-2.17 @@ -2,12 +2,12 @@ DEFINED_PHASES=compile install test unpack DEPEND=>=app-misc/pax-utils-0.1.10 !=sys-devel/binutils-2.20 >=sys-devel/gcc-4.3 virtual/os-headers !vanilla? ( >=sys-libs/timezone-data-2012c ) sys-devel/gnuconfig DESCRIPTION=GNU libc6 (also called glibc2) C library HOMEPAGE=http://www.gnu.org/software/libc/libc.html -IUSE=debug gd hardened multilib nscd selinux systemtap profile vanilla crosscompile_opts_headers-only +IUSE=debug gd hardened multilib nscd selinux systemtap profile suid vanilla crosscompile_opts_headers-only KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 LICENSE=LGPL-2.1+ BSD HPND ISC inner-net rc PCRE RDEPEND=!sys-kernel/ps3-sources selinux? ( sys-libs/libselinux ) !sys-libs/nss-db vanilla? ( !sys-libs/timezone-data ) !vanilla? ( sys-libs/timezone-data ) RESTRICT=strip SLOT=2.2 SRC_URI=mirror://gnu/glibc/glibc-2.17.tar.xz ftp://sourceware.org/pub/glibc/releases/glibc-2.17.tar.xz ftp://sourceware.org/pub/glibc/snapshots/glibc-2.17.tar.xz mirror://gentoo/glibc-2.17.tar.xz mirror://gentoo/glibc-2.17-patches-4.tar.bz2 http://dev.gentoo.org/~vapier/dist/glibc-2.17-patches-4.tar.bz2 http://dev.gentoo.org/~azarah/glibc/glibc-2.17-patches-4.tar.bz2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=31ca4f47d615390ebfb3541fc7f42595 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=339ac6d951a423641cf7bae3ddecbfd2 diff --git a/metadata/md5-cache/sys-libs/glibc-9999 b/metadata/md5-cache/sys-libs/glibc-9999 index cd1949146381..5b761aa6a512 100644 --- a/metadata/md5-cache/sys-libs/glibc-9999 +++ b/metadata/md5-cache/sys-libs/glibc-9999 @@ -2,10 +2,10 @@ DEFINED_PHASES=compile install test unpack DEPEND=>=app-misc/pax-utils-0.1.10 !=sys-devel/binutils-2.20 >=sys-devel/gcc-4.3 virtual/os-headers !vanilla? ( >=sys-libs/timezone-data-2012c ) sys-devel/gnuconfig dev-vcs/git DESCRIPTION=GNU libc6 (also called glibc2) C library HOMEPAGE=http://www.gnu.org/software/libc/libc.html -IUSE=debug gd hardened multilib nscd selinux systemtap profile vanilla crosscompile_opts_headers-only +IUSE=debug gd hardened multilib nscd selinux systemtap profile suid vanilla crosscompile_opts_headers-only LICENSE=LGPL-2.1+ BSD HPND ISC inner-net rc PCRE RDEPEND=!sys-kernel/ps3-sources selinux? ( sys-libs/libselinux ) !sys-libs/nss-db vanilla? ( !sys-libs/timezone-data ) !vanilla? ( sys-libs/timezone-data ) RESTRICT=strip SLOT=2.2 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=73608104c0733f5987df48688456d158 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 gnuconfig c0f61749b1cea36288502e3497dcd6ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=16abfc0d6a783c098dbe0d7c09758a6b diff --git a/metadata/md5-cache/sys-libs/libixp-0.5_p20110208-r3 b/metadata/md5-cache/sys-libs/libixp-0.5_p20110208-r3 index 30c569d41eba..083c4861131e 100644 --- a/metadata/md5-cache/sys-libs/libixp-0.5_p20110208-r3 +++ b/metadata/md5-cache/sys-libs/libixp-0.5_p20110208-r3 @@ -3,9 +3,9 @@ DEPEND=app-arch/xz-utils DESCRIPTION=A stand-alone client/server 9P library including ixpc client EAPI=4 HOMEPAGE=http://libs.suckless.org/libixp -KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd LICENSE=MIT SLOT=0 SRC_URI=mirror://gentoo/libixp-0.5_p20110208.tar.xz _eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=b3227224d3ce2a8e49070daff2c84cc7 +_md5_=f3b6640d2ad0665c315055078cde005e diff --git a/metadata/md5-cache/sys-libs/libstdc++-v3-3.3.6 b/metadata/md5-cache/sys-libs/libstdc++-v3-3.3.6 index a7f547e1b09c..6d21b757a3e6 100644 --- a/metadata/md5-cache/sys-libs/libstdc++-v3-3.3.6 +++ b/metadata/md5-cache/sys-libs/libstdc++-v3-3.3.6 @@ -7,4 +7,4 @@ LICENSE=GPL-2 LGPL-2.1 SLOT=5 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-3.3.6/gcc-3.3.6.tar.bz2 mirror://gentoo/gcc-3.3.6-patches-1.6.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=0a7cd8d511111323373aaa8231267786 +_md5_=ca118ff2f554e5615ff077476005e330 diff --git a/metadata/md5-cache/sys-libs/libstdc++-v3-3.3.6-r1 b/metadata/md5-cache/sys-libs/libstdc++-v3-3.3.6-r1 index b970b69dbb30..68c2d2587062 100644 --- a/metadata/md5-cache/sys-libs/libstdc++-v3-3.3.6-r1 +++ b/metadata/md5-cache/sys-libs/libstdc++-v3-3.3.6-r1 @@ -7,4 +7,4 @@ LICENSE=GPL-2 LGPL-2.1 SLOT=5 SRC_URI=ftp://gcc.gnu.org/pub/gcc/releases/gcc-3.3.6/gcc-3.3.6.tar.bz2 mirror://gentoo/gcc-3.3.6-patches-1.8.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=89ee19fd225ccf9aa62da60e48aee839 +_md5_=b698df36abb7aea42a9c2fa974e53990 diff --git a/metadata/md5-cache/sys-process/glances-1.6 b/metadata/md5-cache/sys-process/glances-1.6 index 3ee1e549a94d..e0c904119b1b 100644 --- a/metadata/md5-cache/sys-process/glances-1.6 +++ b/metadata/md5-cache/sys-process/glances-1.6 @@ -9,5 +9,5 @@ LICENSE=LGPL-3 RDEPEND=dev-python/setuptools[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/psutil-0.4.1 python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=https://github.com/nicolargo/glances/archive/v1.6.tar.gz -> glances-1.6.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0580b4e5e5809b9ce1b109ae818fd1aa diff --git a/metadata/md5-cache/sys-process/iotop-0.5 b/metadata/md5-cache/sys-process/iotop-0.5 index 32fcc86f7fa6..5c777f8efb9f 100644 --- a/metadata/md5-cache/sys-process/iotop-0.5 +++ b/metadata/md5-cache/sys-process/iotop-0.5 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6[ncurses] ) python_targets_python2_7? ( dev-lang/python:2.7[ncurses] ) python_targets_python3_1? ( dev-lang/python:3.1[ncurses] ) python_targets_python3_2? ( dev-lang/python:3.2[ncurses] ) python_targets_python3_3? ( dev-lang/python:3.3[ncurses] ) python_targets_pypy1_9? ( dev-python/pypy:1.9[ncurses] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://guichaz.free.fr/iotop//files/iotop-0.5.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=1428a1679364d2a21aa2a83a111be783 diff --git a/metadata/md5-cache/sys-process/iotop-0.5-r1 b/metadata/md5-cache/sys-process/iotop-0.5-r1 index 6b624245f4bc..2bac5cd7d1db 100644 --- a/metadata/md5-cache/sys-process/iotop-0.5-r1 +++ b/metadata/md5-cache/sys-process/iotop-0.5-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_6? ( dev-lang/python:2.6[ncurses] ) python_targets_python2_7? ( dev-lang/python:2.7[ncurses] ) python_targets_python3_1? ( dev-lang/python:3.1[ncurses] ) python_targets_python3_2? ( dev-lang/python:3.2[ncurses] ) python_targets_python3_3? ( dev-lang/python:3.3[ncurses] ) python_targets_pypy1_9? ( dev-python/pypy:1.9[ncurses] ) python_targets_pypy2_0? ( dev-python/pypy:2.0[ncurses] ) dev-python/python-exec[python_targets_python2_6(-)?,python_targets_python2_7(-)?,python_targets_python3_1(-)?,python_targets_python3_2(-)?,python_targets_python3_3(-)?,python_targets_pypy1_9(-)?,python_targets_pypy2_0(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-),-python_single_target_python3_1(-),-python_single_target_python3_2(-),-python_single_target_python3_3(-),-python_single_target_pypy1_9(-),-python_single_target_pypy2_0(-)] SLOT=0 SRC_URI=http://guichaz.free.fr/iotop//files/iotop-0.5.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=fc52b3a7b00513b7905d315b2e40bccf diff --git a/metadata/md5-cache/www-apache/mod_loopback-2.01-r1 b/metadata/md5-cache/www-apache/mod_loopback-2.01-r1 index 5d7750e9837e..31f7aa46918f 100644 --- a/metadata/md5-cache/www-apache/mod_loopback-2.01-r1 +++ b/metadata/md5-cache/www-apache/mod_loopback-2.01-r1 @@ -5,7 +5,8 @@ HOMEPAGE=http://www.snert.com/Software/mod_loopback/index.shtml KEYWORDS=ppc ppc64 x86 LICENSE=as-is RDEPEND==www-servers/apache-2* +RESTRICT=mirror bindist SLOT=2 SRC_URI=http://www.snert.com/Software/download/mod_loopback201.tgz _eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e -_md5_=7da5d771d12eb9ffbfc2c0e708cf4b7e +_md5_=c2915f881d66e59633d491850d29ad70 diff --git a/metadata/md5-cache/www-apps/moinmoin-1.9.7 b/metadata/md5-cache/www-apps/moinmoin-1.9.7 index ec59c75c780d..6c54d9197d88 100644 --- a/metadata/md5-cache/www-apps/moinmoin-1.9.7 +++ b/metadata/md5-cache/www-apps/moinmoin-1.9.7 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/docutils-0.4[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/flup-1.0.2[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/pygments-1.1.1[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=dev-python/werkzeug-0.7.0 python_targets_python2_5? ( dev-lang/python:2.5[xml] ) python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python:2.7[xml] ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] >=app-admin/webapp-config-1.50.15 SLOT=0 SRC_URI=http://static.moinmo.in/files/moin-1.9.7.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 webapp 25b9b1696f5e698711f47d45c3d45e3e +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 webapp 25b9b1696f5e698711f47d45c3d45e3e _md5_=dda9abce1c775d4b2b3446c5f853188c diff --git a/metadata/md5-cache/www-apps/nikola-5.1 b/metadata/md5-cache/www-apps/nikola-5.1 index 2b690cb0bd77..3777f0fe2da3 100644 --- a/metadata/md5-cache/www-apps/nikola-5.1 +++ b/metadata/md5-cache/www-apps/nikola-5.1 @@ -9,5 +9,5 @@ LICENSE=MIT-with-advertising RDEPEND=dev-python/docutils =dev-python/configparser-3.2.0* >=dev-python/doit-0.20.0 dev-python/imaging dev-python/lxml >=dev-python/mako-0.6 >=dev-python/mock-1.0.0 dev-python/pygments dev-python/PyRSS2Gen dev-python/requests dev-python/unidecode dev-python/yapsy jinja? ( dev-python/jinja ) markdown? ( dev-python/markdown ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://nikola-generator.googlecode.com/files/nikola-5.1.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=646859d8a1c009f7e13c08ead5683b27 diff --git a/metadata/md5-cache/www-apps/nikola-5.2 b/metadata/md5-cache/www-apps/nikola-5.2 index e3bd8f4ed0eb..c4ab3cc5ce9a 100644 --- a/metadata/md5-cache/www-apps/nikola-5.2 +++ b/metadata/md5-cache/www-apps/nikola-5.2 @@ -9,5 +9,5 @@ LICENSE=MIT-with-advertising RDEPEND=dev-python/docutils =dev-python/configparser-3.2.0* >=dev-python/doit-0.20.0 dev-python/imaging dev-python/lxml >=dev-python/mako-0.6 >=dev-python/mock-1.0.0 dev-python/pygments dev-python/PyRSS2Gen dev-python/requests dev-python/unidecode dev-python/yapsy jinja? ( dev-python/jinja ) markdown? ( dev-python/markdown ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://nikola-generator.googlecode.com/files/nikola-5.2.zip -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=38bcedef0ff81bff2d0b00ba2af8ab20 diff --git a/metadata/md5-cache/www-apps/otrs-3.2.1 b/metadata/md5-cache/www-apps/otrs-3.2.1 deleted file mode 100644 index dea2949a51d7..000000000000 --- a/metadata/md5-cache/www-apps/otrs-3.2.1 +++ /dev/null @@ -1,12 +0,0 @@ -DEFINED_PHASES=config install postinst prepare setup -DESCRIPTION=OTRS is an Open source Ticket Request System -EAPI=2 -HOMEPAGE=http://otrs.org/ -IUSE=apache2 fastcgi +gd ldap mod_perl +mysql pdf postgres soap -KEYWORDS=~amd64 ~x86 -LICENSE=AGPL-3 -RDEPEND=dev-perl/Authen-SASL dev-perl/Crypt-PasswdMD5 dev-perl/CSS-Minifier dev-perl/Date-Pcalc mysql? ( dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg ) dev-perl/DBI gd? ( dev-perl/GD dev-perl/GDTextUtil dev-perl/GDGraph ) dev-perl/IO-Socket-SSL >=dev-perl/JavaScript-Minifier-1.05 >=dev-perl/JSON-2.21 dev-perl/JSON-XS dev-perl/LWP-UserAgent-Determined dev-perl/Mail-POP3Client dev-perl/MailTools >=dev-perl/MIME-tools-5.427 dev-perl/NetxAP dev-perl/Net-IMAP-Simple-SSL >dev-perl/Net-DNS-0.60 dev-perl/Net-SMTP-SSL dev-perl/Net-SMTP-TLS dev-perl/IO-stringy pdf? ( >=dev-perl/PDF-API2-0.73 virtual/perl-Compress-Raw-Zlib ) ldap? ( dev-perl/perl-ldap ) soap? ( dev-perl/SOAP-Lite !=dev-perl/SOAP-Lite-0.711 !=dev-perl/SOAP-Lite-0.712 ) dev-perl/Text-CSV dev-perl/Text-CSV_XS dev-perl/TimeDate dev-perl/XML-Parser virtual/perl-MIME-Base64 >=virtual/perl-CGI-3.33 virtual/perl-libnet virtual/perl-Digest-MD5 >=virtual/perl-Digest-SHA-5.48 virtual/mta apache2? ( mod_perl? ( www-servers/apache:2 =www-apache/libapreq2-2* www-apache/mod_perl ) fastcgi? ( || ( www-apache/mod_fcgid www-apache/mod_fastcgi ) www-servers/apache:2[suexec] ) !fastcgi? ( !mod_perl? ( www-servers/apache:2[suexec] ) ) ) fastcgi? ( dev-perl/FCGI virtual/httpd-fastcgi ) !fastcgi? ( !apache2? ( virtual/httpd-cgi ) ) -SLOT=0 -SRC_URI=http://ftp.otrs.org/pub/otrs/otrs-3.2.1.tar.bz2 -_eclasses_=confutils 2ab69b52fa6ea0c0669a47fb94b354b4 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=6cfd289fdbd2fdfa6a3ac2c59fed6521 diff --git a/metadata/md5-cache/www-apps/otrs-3.2.2 b/metadata/md5-cache/www-apps/otrs-3.2.4 similarity index 94% rename from metadata/md5-cache/www-apps/otrs-3.2.2 rename to metadata/md5-cache/www-apps/otrs-3.2.4 index 8e8ef39a7ed6..1e64ca0cb69e 100644 --- a/metadata/md5-cache/www-apps/otrs-3.2.2 +++ b/metadata/md5-cache/www-apps/otrs-3.2.4 @@ -7,6 +7,6 @@ KEYWORDS=~amd64 ~x86 LICENSE=AGPL-3 RDEPEND=dev-perl/Authen-SASL dev-perl/Crypt-PasswdMD5 dev-perl/CSS-Minifier dev-perl/Date-Pcalc mysql? ( dev-perl/DBD-mysql ) postgres? ( dev-perl/DBD-Pg ) dev-perl/DBI gd? ( dev-perl/GD dev-perl/GDTextUtil dev-perl/GDGraph ) dev-perl/IO-Socket-SSL >=dev-perl/JavaScript-Minifier-1.05 >=dev-perl/JSON-2.21 dev-perl/JSON-XS dev-perl/LWP-UserAgent-Determined dev-perl/Mail-POP3Client dev-perl/MailTools >=dev-perl/MIME-tools-5.427 dev-perl/NetxAP dev-perl/Net-IMAP-Simple-SSL >dev-perl/Net-DNS-0.60 dev-perl/Net-SMTP-SSL dev-perl/Net-SMTP-TLS dev-perl/IO-stringy pdf? ( >=dev-perl/PDF-API2-0.73 virtual/perl-Compress-Raw-Zlib ) ldap? ( dev-perl/perl-ldap ) soap? ( dev-perl/SOAP-Lite !=dev-perl/SOAP-Lite-0.711 !=dev-perl/SOAP-Lite-0.712 ) dev-perl/Text-CSV dev-perl/Text-CSV_XS dev-perl/TimeDate dev-perl/XML-Parser virtual/perl-MIME-Base64 >=virtual/perl-CGI-3.33 virtual/perl-libnet virtual/perl-Digest-MD5 >=virtual/perl-Digest-SHA-5.48 virtual/mta apache2? ( mod_perl? ( www-servers/apache:2 =www-apache/libapreq2-2* www-apache/mod_perl ) fastcgi? ( || ( www-apache/mod_fcgid www-apache/mod_fastcgi ) www-servers/apache:2[suexec] ) !fastcgi? ( !mod_perl? ( www-servers/apache:2[suexec] ) ) ) fastcgi? ( dev-perl/FCGI virtual/httpd-fastcgi ) !fastcgi? ( !apache2? ( virtual/httpd-cgi ) ) SLOT=0 -SRC_URI=http://ftp.otrs.org/pub/otrs/otrs-3.2.2.tar.bz2 +SRC_URI=http://ftp.otrs.org/pub/otrs/otrs-3.2.4.tar.bz2 _eclasses_=confutils 2ab69b52fa6ea0c0669a47fb94b354b4 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=2d689452186d8bf4c89b3132de38a29b +_md5_=a836fb5225af343fce87c1664362abc2 diff --git a/metadata/md5-cache/www-apps/rocketwiki-lqfb-0.4 b/metadata/md5-cache/www-apps/rocketwiki-lqfb-0.4 new file mode 100644 index 000000000000..f302eef6caba --- /dev/null +++ b/metadata/md5-cache/www-apps/rocketwiki-lqfb-0.4 @@ -0,0 +1,11 @@ +DEFINED_PHASES=install +DEPEND=dev-libs/gmp dev-haskell/parsec dev-lang/ghc +DESCRIPTION=Small parser which translates a wiki dialect to HTML +EAPI=4 +HOMEPAGE=http://www.public-software-group.org/rocketwiki +KEYWORDS=~amd64 +LICENSE=HPND +RDEPEND=dev-libs/gmp +SLOT=0 +SRC_URI=http://www.public-software-group.org/pub/projects/rocketwiki/liquid_feedback_edition/v0.4/rocketwiki-lqfb-v0.4.tar.gz +_md5_=82175ad305b8adb02c5540e4e2792dfc diff --git a/metadata/md5-cache/www-apps/roundup-1.4.21 b/metadata/md5-cache/www-apps/roundup-1.4.21 index 2b1daf1d13ee..c45245b86596 100644 --- a/metadata/md5-cache/www-apps/roundup-1.4.21 +++ b/metadata/md5-cache/www-apps/roundup-1.4.21 @@ -9,5 +9,5 @@ LICENSE=MIT ZPL RDEPEND=>=sys-libs/db-3.2.9 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=mirror://pypi/r/roundup/roundup-1.4.21.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9974ade26fc29a1ab68518966729dfa8 diff --git a/metadata/md5-cache/www-client/chromium-26.0.1410.43 b/metadata/md5-cache/www-client/chromium-26.0.1410.43 index b402c2b63842..c24104ce4799 100644 --- a/metadata/md5-cache/www-client/chromium-26.0.1410.43 +++ b/metadata/md5-cache/www-client/chromium-26.0.1410.43 @@ -1,13 +1,13 @@ DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test -DEPEND=app-accessibility/speech-dispatcher app-arch/bzip2 cups? ( dev-libs/libgcrypt >=net-print/cups-1.3.11 ) >=dev-lang/v8-3.16.11.1:= >=dev-libs/elfutils-0.149 dev-libs/expat >=dev-libs/icu-49.1.1-r1:= dev-libs/jsoncpp >=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 ) gps? ( >=sci-geosciences/gpsd-3.7[shm] ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng:0= media-libs/libvpx >=media-libs/libwebp-0.2.0_rc1 media-libs/opus media-libs/speex pulseaudio? ( media-sound/pulseaudio ) system-ffmpeg? ( >=media-video/ffmpeg-1.0[opus] ) sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/udev virtual/libusb:1 x11-libs/gtk+:2 x11-libs/libXinerama x11-libs/libXScrnSaver x11-libs/libXtst kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium sys-libs/libselinux ) || ( dev-lang/python:2.7 dev-lang/python:2.6 ) !arm? ( >=dev-lang/nacl-toolchain-newlib-0_p9093 dev-lang/yasm ) dev-lang/perl dev-python/ply dev-python/simplejson >=dev-util/gperf-3.0.3 sys-apps/hwids >=sys-devel/bison-2.4.3 sys-devel/flex >=sys-devel/make-3.81-r2 virtual/pkgconfig test? ( dev-python/pyftpdlib ) >=sys-apps/sed-4 test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) +DEPEND==net-print/cups-1.3.11 ) >=dev-lang/v8-3.16.11.1:= >=dev-libs/elfutils-0.149 dev-libs/expat >=dev-libs/icu-49.1.1-r1:= dev-libs/jsoncpp >=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 ) gps? ( >=sci-geosciences/gpsd-3.7[shm] ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng:0= media-libs/libvpx >=media-libs/libwebp-0.2.0_rc1 media-libs/opus media-libs/speex pulseaudio? ( media-sound/pulseaudio ) system-ffmpeg? ( >=media-video/ffmpeg-1.0[opus] ) sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/udev virtual/libusb:1 x11-libs/gtk+:2 x11-libs/libXinerama x11-libs/libXScrnSaver x11-libs/libXtst kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium sys-libs/libselinux ) || ( dev-lang/python:2.7 dev-lang/python:2.6 ) !arm? ( >=dev-lang/nacl-toolchain-newlib-0_p9093 dev-lang/yasm ) dev-lang/perl dev-python/ply dev-python/simplejson >=dev-util/gperf-3.0.3 sys-apps/hwids >=sys-devel/bison-2.4.3 sys-devel/flex >=sys-devel/make-3.81-r2 virtual/pkgconfig test? ( 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 gps kerberos pulseaudio selinux system-ffmpeg 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 x86 LICENSE=BSD -RDEPEND=app-accessibility/speech-dispatcher app-arch/bzip2 cups? ( dev-libs/libgcrypt >=net-print/cups-1.3.11 ) >=dev-lang/v8-3.16.11.1:= >=dev-libs/elfutils-0.149 dev-libs/expat >=dev-libs/icu-49.1.1-r1:= dev-libs/jsoncpp >=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 ) gps? ( >=sci-geosciences/gpsd-3.7[shm] ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng:0= media-libs/libvpx >=media-libs/libwebp-0.2.0_rc1 media-libs/opus media-libs/speex pulseaudio? ( media-sound/pulseaudio ) system-ffmpeg? ( >=media-video/ffmpeg-1.0[opus] ) sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/udev virtual/libusb:1 x11-libs/gtk+:2 x11-libs/libXinerama x11-libs/libXScrnSaver x11-libs/libXtst kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium sys-libs/libselinux ) !=www-client/chromium-9999 x11-misc/xdg-utils virtual/ttf-fonts +RDEPEND==net-print/cups-1.3.11 ) >=dev-lang/v8-3.16.11.1:= >=dev-libs/elfutils-0.149 dev-libs/expat >=dev-libs/icu-49.1.1-r1:= dev-libs/jsoncpp >=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 ) gps? ( >=sci-geosciences/gpsd-3.7[shm] ) >=media-libs/alsa-lib-1.0.19 media-libs/flac media-libs/harfbuzz >=media-libs/libjpeg-turbo-1.2.0-r1 media-libs/libpng:0= media-libs/libvpx >=media-libs/libwebp-0.2.0_rc1 media-libs/opus media-libs/speex pulseaudio? ( media-sound/pulseaudio ) system-ffmpeg? ( >=media-video/ffmpeg-1.0[opus] ) sys-apps/dbus sys-apps/pciutils sys-libs/zlib[minizip] virtual/udev virtual/libusb:1 x11-libs/gtk+:2 x11-libs/libXinerama x11-libs/libXScrnSaver x11-libs/libXtst kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium sys-libs/libselinux ) !=www-client/chromium-9999 x11-misc/xdg-utils virtual/ttf-fonts SLOT=0 SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-26.0.1410.43.tar.xz -_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=4d19620d89e3a71b6af7486bc897bb4f +_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=102273de70a1244bced3c81174d88e7a diff --git a/metadata/md5-cache/www-client/chromium-27.0.1453.12 b/metadata/md5-cache/www-client/chromium-27.0.1453.12 index 71461ea9c675..e97808457bcf 100644 --- a/metadata/md5-cache/www-client/chromium-27.0.1453.12 +++ b/metadata/md5-cache/www-client/chromium-27.0.1453.12 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=>=app-accessibility/speech-dispatcher-0.8:= app-arch/bzip2:= system-sqlite? ( dev-db/sqlite:3 ) cups? ( dev-libs/libgcrypt:= >=net-print/cups-1.3.11:= ) >=dev-lang/v8-3.17.6:= >=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:= ) gps? ( >=sci-geosciences/gpsd-3.7:=[shm] ) >=media-libs/alsa-lib-1.0.19:= media-libs/flac:= media-libs/harfbuzz:= >=media-libs/libjpeg-turbo-1.2.0-r1:= media-libs/libpng:0= media-libs/libvpx:= >=media-libs/libwebp-0.2.0_rc1:= !arm? ( !x86? ( >=media-libs/mesa-9.1:=[gles2] ) ) media-libs/opus:= media-libs/speex:= pulseaudio? ( media-sound/pulseaudio:= ) >=media-video/ffmpeg-1.0:=[opus] sys-apps/dbus:= sys-apps/pciutils:= sys-libs/zlib:=[minizip] virtual/udev virtual/libusb:1= x11-libs/gtk+:2= x11-libs/libXinerama:= x11-libs/libXScrnSaver:= x11-libs/libXtst:= kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium sys-libs/libselinux:= ) !=www-client/chromium-9999 x11-misc/xdg-utils virtual/ttf-fonts SLOT=0 SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-27.0.1453.12-lite.tar.xz test? ( https://commondatastorage.googleapis.com/chromium-browser-official/chromium-27.0.1453.12-testdata.tar.xz ) -_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=466e1538004fd7cd9d2482e8561dc932 diff --git a/metadata/md5-cache/www-client/chromium-27.0.1453.3 b/metadata/md5-cache/www-client/chromium-27.0.1453.3 index 265f09e1d2d0..5cf4e59524cd 100644 --- a/metadata/md5-cache/www-client/chromium-27.0.1453.3 +++ b/metadata/md5-cache/www-client/chromium-27.0.1453.3 @@ -9,5 +9,5 @@ LICENSE=BSD RDEPEND=app-accessibility/speech-dispatcher:= app-arch/bzip2:= system-sqlite? ( dev-db/sqlite:3 ) cups? ( dev-libs/libgcrypt:= >=net-print/cups-1.3.11:= ) >=dev-lang/v8-3.17.6:= >=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:= ) gps? ( >=sci-geosciences/gpsd-3.7:=[shm] ) >=media-libs/alsa-lib-1.0.19:= media-libs/flac:= media-libs/harfbuzz:= >=media-libs/libjpeg-turbo-1.2.0-r1:= media-libs/libpng:0= media-libs/libvpx:= >=media-libs/libwebp-0.2.0_rc1:= !arm? ( !x86? ( >=media-libs/mesa-9.1:=[gles2] ) ) media-libs/opus:= media-libs/speex:= pulseaudio? ( media-sound/pulseaudio:= ) >=media-video/ffmpeg-1.0:=[opus] sys-apps/dbus:= sys-apps/pciutils:= sys-libs/zlib:=[minizip] virtual/udev virtual/libusb:1= x11-libs/gtk+:2= x11-libs/libXinerama:= x11-libs/libXScrnSaver:= x11-libs/libXtst:= kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium sys-libs/libselinux:= ) !=www-client/chromium-9999 x11-misc/xdg-utils virtual/ttf-fonts SLOT=0 SRC_URI=https://commondatastorage.googleapis.com/chromium-browser-official/chromium-27.0.1453.3-lite.tar.xz test? ( https://commondatastorage.googleapis.com/chromium-browser-official/chromium-27.0.1453.3-testdata.tar.xz ) -_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=7b5f0dd99e2d226d56fccfe9518bc2ae diff --git a/metadata/md5-cache/www-client/chromium-9999-r1 b/metadata/md5-cache/www-client/chromium-9999-r1 index 9355d37c0ce7..1d9d472aa3f3 100644 --- a/metadata/md5-cache/www-client/chromium-9999-r1 +++ b/metadata/md5-cache/www-client/chromium-9999-r1 @@ -7,5 +7,5 @@ IUSE=cups gnome gnome-keyring gps kerberos pulseaudio selinux system-sqlite tcma LICENSE=BSD RDEPEND=>=app-accessibility/speech-dispatcher-0.8:= app-arch/bzip2:= system-sqlite? ( dev-db/sqlite:3 ) cups? ( dev-libs/libgcrypt:= >=net-print/cups-1.3.11:= ) >=dev-lang/v8-3.17.6:= >=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:= ) gps? ( >=sci-geosciences/gpsd-3.7:=[shm] ) >=media-libs/alsa-lib-1.0.19 media-libs/flac:= media-libs/harfbuzz:= >=media-libs/libjpeg-turbo-1.2.0-r1:= media-libs/libpng:0= media-libs/libvpx:= >=media-libs/libwebp-0.2.0_rc1:= !arm? ( !x86? ( >=media-libs/mesa-9.1:=[gles2] ) ) media-libs/opus:= media-libs/speex:= pulseaudio? ( media-sound/pulseaudio:= ) >=media-video/ffmpeg-1.0:=[opus] sys-apps/dbus:= sys-apps/pciutils:= sys-libs/zlib:=[minizip] virtual/udev virtual/libusb:1= x11-libs/gtk+:2= x11-libs/libXinerama:= x11-libs/libXScrnSaver:= x11-libs/libXtst:= kerberos? ( virtual/krb5 ) selinux? ( sec-policy/selinux-chromium sys-libs/libselinux:= ) !=www-client/chromium-9999 x11-misc/xdg-utils virtual/ttf-fonts SLOT=live -_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 portability 536c5e70c5fb252ed3b769e04aa3f05b python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d subversion 877d251a42b69543c01f6a36b4707b3b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=27ae229a319a9216ed9301d0202e1e81 diff --git a/metadata/md5-cache/www-client/dwb-2013.03.30 b/metadata/md5-cache/www-client/dwb-2013.03.30 new file mode 100644 index 000000000000..cacc4395cb05 --- /dev/null +++ b/metadata/md5-cache/www-client/dwb-2013.03.30 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile install prepare +DEPEND=>=net-libs/libsoup-2.32:2.4 dev-libs/json-c !gtk3? ( >=net-libs/webkit-gtk-1.8.0:2 x11-libs/gtk+:2 ) gtk3? ( >=net-libs/webkit-gtk-1.8.0:3 x11-libs/gtk+:3 ) virtual/pkgconfig +DESCRIPTION=Dynamic web browser based on WebKit and GTK+ +EAPI=5 +HOMEPAGE=http://portix.bitbucket.org/dwb/ +IUSE=examples gtk3 +KEYWORDS=~amd64 ~ppc ~x86 +LICENSE=GPL-3 +RDEPEND=>=net-libs/libsoup-2.32:2.4 dev-libs/json-c !gtk3? ( >=net-libs/webkit-gtk-1.8.0:2 x11-libs/gtk+:2 ) gtk3? ( >=net-libs/webkit-gtk-1.8.0:3 x11-libs/gtk+:3 ) +SLOT=0 +SRC_URI=mirror://bitbucket/portix/dwb/downloads/dwb-2013.03.30.tar.gz +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=7c42b9613ae77bbbf648c58b6bddf81e diff --git a/metadata/md5-cache/www-client/dwb-9999 b/metadata/md5-cache/www-client/dwb-9999 index 150931951866..8aff947644f0 100644 --- a/metadata/md5-cache/www-client/dwb-9999 +++ b/metadata/md5-cache/www-client/dwb-9999 @@ -1,5 +1,5 @@ DEFINED_PHASES=compile install prepare unpack -DEPEND=>=net-libs/libsoup-2.32:2.4 dev-libs/json-c !gtk3? ( >=net-libs/webkit-gtk-1.8.0:2 x11-libs/gtk+:2 ) gtk3? ( >=net-libs/webkit-gtk-1.8.0:3 x11-libs/gtk+:3 ) virtual/pkgconfig dev-vcs/mercurial +DEPEND=>=net-libs/libsoup-2.32:2.4 dev-libs/json-c !gtk3? ( >=net-libs/webkit-gtk-1.8.0:2 x11-libs/gtk+:2 ) gtk3? ( >=net-libs/webkit-gtk-1.8.0:3 x11-libs/gtk+:3 ) virtual/pkgconfig dev-vcs/git DESCRIPTION=Dynamic web browser based on WebKit and GTK+ EAPI=5 HOMEPAGE=http://portix.bitbucket.org/dwb/ @@ -7,5 +7,5 @@ IUSE=examples gtk3 LICENSE=GPL-3 RDEPEND=>=net-libs/libsoup-2.32:2.4 dev-libs/json-c !gtk3? ( >=net-libs/webkit-gtk-1.8.0:2 x11-libs/gtk+:2 ) gtk3? ( >=net-libs/webkit-gtk-1.8.0:3 x11-libs/gtk+:3 ) SLOT=0 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 mercurial 7e8c2c49cfd90701e20a78850f066802 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=23502797233dac23efcb5267d43e7968 +_eclasses_=git-2 e92e09651292b1bef5656592364550f7 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e +_md5_=3f42b8cf4a985cc3f4177c56d647b2c4 diff --git a/metadata/md5-cache/www-client/epiphany-3.6.1 b/metadata/md5-cache/www-client/epiphany-3.6.1 index 9dc2fae6131e..1038c54d12ee 100644 --- a/metadata/md5-cache/www-client/epiphany-3.6.1 +++ b/metadata/md5-cache/www-client/epiphany-3.6.1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=app-crypt/gcr-3.5.5 >=app-text/iso-codes-0.35 >=dev-libs/glib-2.31.2:2 >=dev-libs/libxml2-2.6.12:2 >=dev-libs/libxslt-1.1.7 >=gnome-base/gnome-keyring-2.26.0 >=gnome-base/gsettings-desktop-schemas-0.0.1 >=net-dns/avahi-0.6.22[dbus] >=net-libs/webkit-gtk-1.9.6:3[jit?,introspection?] >=net-libs/libsoup-gnome-2.39.6:2.4 >=x11-libs/gtk+-3.5.2:3[introspection?] >=x11-libs/libnotify-0.5.1:= gnome-base/gnome-desktop:3= dev-db/sqlite:3 x11-libs/libX11 x11-themes/gnome-icon-theme x11-themes/gnome-icon-theme-symbolic introspection? ( >=dev-libs/gobject-introspection-0.9.5 ) nss? ( dev-libs/nss ) SLOT=0 SRC_URI=mirror://gnome/sources/epiphany/3.6/epiphany-3.6.1.tar.xz -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=1979c8c4ef18b7830503554c95f4d580 diff --git a/metadata/md5-cache/www-client/epiphany-3.8.0 b/metadata/md5-cache/www-client/epiphany-3.8.0 index d44cd590e98f..bf393d0fe12a 100644 --- a/metadata/md5-cache/www-client/epiphany-3.8.0 +++ b/metadata/md5-cache/www-client/epiphany-3.8.0 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=>=app-crypt/gcr-3.5.5 >=app-crypt/libsecret-0.14 >=app-text/iso-codes-0.35 >=dev-libs/glib-2.35.6:2 >=dev-libs/libxml2-2.6.12:2 >=dev-libs/libxslt-1.1.7 >=gnome-base/gnome-keyring-2.26.0 >=gnome-base/gsettings-desktop-schemas-0.0.1 >=net-dns/avahi-0.6.22[dbus] >=net-libs/webkit-gtk-1.11.92:3[jit?] >=net-libs/libsoup-2.41.3:2.4 >=x11-libs/gtk+-3.7.10:3 >=x11-libs/libnotify-0.5.1:= gnome-base/gnome-desktop:3= dev-db/sqlite:3 x11-libs/libX11 x11-themes/gnome-icon-theme x11-themes/gnome-icon-theme-symbolic nss? ( dev-libs/nss ) SLOT=0 SRC_URI=mirror://gnome/sources/epiphany/3.8/epiphany-3.8.0.tar.xz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=d88e60f6561a6e4d877b4cc92aedd1d2 diff --git a/metadata/md5-cache/www-client/firefox-10.0.11 b/metadata/md5-cache/www-client/firefox-10.0.11 index 473b3e766e19..56b1009a04ea 100644 --- a/metadata/md5-cache/www-client/firefox-10.0.11 +++ b/metadata/md5-cache/www-client/firefox-10.0.11 @@ -9,5 +9,5 @@ LICENSE=MPL-1.1 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/binutils-2.16.1 >=dev-libs/nss-3.13.6 >=dev-libs/nspr-4.9.2 >=dev-libs/glib-2.26:2 >=media-libs/mesa-7.10 >=media-libs/libpng-1.5.9[apng] virtual/libffi system-sqlite? ( || ( >=dev-db/sqlite-3.7.16:3[secure-delete,debug=] =media-libs/libvpx-1.0.0 media-libs/alsa-lib ) selinux? ( sec-policy/selinux-mozilla ) x11-libs/libXrender x11-libs/libXt >=sys-libs/zlib-1.1.4 app-arch/zip app-arch/unzip >=app-text/hunspell-1.2 dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.8[X] >=x11-libs/gtk+-2.8.6:2 >=x11-libs/pango-1.10.1[X] virtual/jpeg alsa? ( media-libs/alsa-lib ) virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 ) libnotify? ( >=x11-libs/libnotify-0.4 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) wifi? ( net-wireless/wireless-tools ) SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/af.xpi -> firefox-10.0.11esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ak.xpi -> firefox-10.0.11esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ar.xpi -> firefox-10.0.11esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/as.xpi -> firefox-10.0.11esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ast.xpi -> firefox-10.0.11esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/be.xpi -> firefox-10.0.11esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/bg.xpi -> firefox-10.0.11esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/bn-BD.xpi -> firefox-10.0.11esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/bn-IN.xpi -> firefox-10.0.11esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/br.xpi -> firefox-10.0.11esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/bs.xpi -> firefox-10.0.11esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ca.xpi -> firefox-10.0.11esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/cs.xpi -> firefox-10.0.11esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/csb.xpi -> firefox-10.0.11esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/cy.xpi -> firefox-10.0.11esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/da.xpi -> firefox-10.0.11esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/de.xpi -> firefox-10.0.11esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/el.xpi -> firefox-10.0.11esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/en-GB.xpi -> firefox-10.0.11esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/en-ZA.xpi -> firefox-10.0.11esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/eo.xpi -> firefox-10.0.11esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/es-AR.xpi -> firefox-10.0.11esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/es-CL.xpi -> firefox-10.0.11esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/es-ES.xpi -> firefox-10.0.11esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/es-MX.xpi -> firefox-10.0.11esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/et.xpi -> firefox-10.0.11esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/eu.xpi -> firefox-10.0.11esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/fa.xpi -> firefox-10.0.11esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/fi.xpi -> firefox-10.0.11esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/fr.xpi -> firefox-10.0.11esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/fy-NL.xpi -> firefox-10.0.11esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ga-IE.xpi -> firefox-10.0.11esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/gd.xpi -> firefox-10.0.11esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/gl.xpi -> firefox-10.0.11esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/gu-IN.xpi -> firefox-10.0.11esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/he.xpi -> firefox-10.0.11esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/hi-IN.xpi -> firefox-10.0.11esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/hr.xpi -> firefox-10.0.11esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/hu.xpi -> firefox-10.0.11esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/hy-AM.xpi -> firefox-10.0.11esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/id.xpi -> firefox-10.0.11esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/is.xpi -> firefox-10.0.11esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/it.xpi -> firefox-10.0.11esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ja.xpi -> firefox-10.0.11esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/kk.xpi -> firefox-10.0.11esr-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/kn.xpi -> firefox-10.0.11esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ko.xpi -> firefox-10.0.11esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ku.xpi -> firefox-10.0.11esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/lg.xpi -> firefox-10.0.11esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/lt.xpi -> firefox-10.0.11esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/lv.xpi -> firefox-10.0.11esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/mai.xpi -> firefox-10.0.11esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/mk.xpi -> firefox-10.0.11esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ml.xpi -> firefox-10.0.11esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/mr.xpi -> firefox-10.0.11esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/nb-NO.xpi -> firefox-10.0.11esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/nl.xpi -> firefox-10.0.11esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/nn-NO.xpi -> firefox-10.0.11esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/nso.xpi -> firefox-10.0.11esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/or.xpi -> firefox-10.0.11esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/pa-IN.xpi -> firefox-10.0.11esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/pl.xpi -> firefox-10.0.11esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/pt-BR.xpi -> firefox-10.0.11esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/pt-PT.xpi -> firefox-10.0.11esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/rm.xpi -> firefox-10.0.11esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ro.xpi -> firefox-10.0.11esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ru.xpi -> firefox-10.0.11esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/si.xpi -> firefox-10.0.11esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/sk.xpi -> firefox-10.0.11esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/sl.xpi -> firefox-10.0.11esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/son.xpi -> firefox-10.0.11esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/sq.xpi -> firefox-10.0.11esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/sr.xpi -> firefox-10.0.11esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/sv-SE.xpi -> firefox-10.0.11esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ta.xpi -> firefox-10.0.11esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/ta-LK.xpi -> firefox-10.0.11esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/te.xpi -> firefox-10.0.11esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/th.xpi -> firefox-10.0.11esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/tr.xpi -> firefox-10.0.11esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/uk.xpi -> firefox-10.0.11esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/vi.xpi -> firefox-10.0.11esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/zh-CN.xpi -> firefox-10.0.11esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/zh-TW.xpi -> firefox-10.0.11esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/linux-i686/xpi/zu.xpi -> firefox-10.0.11esr-zu.xpi ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-10.0-patches-0.9.tar.xz ftp://ftp.mozilla.org/pub/firefox/releases//10.0.11esr/source/firefox-10.0.11esr.source.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 20f7be97073003610d184672d49cae8d mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 e4ad1852082c7cd6fef51893c4d16af2 mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=d044d0d0b4f48afaec1164bca1d556ca diff --git a/metadata/md5-cache/www-client/firefox-17.0.4 b/metadata/md5-cache/www-client/firefox-17.0.4 index 2ad520e6271d..b9ccaf32a9b8 100644 --- a/metadata/md5-cache/www-client/firefox-17.0.4 +++ b/metadata/md5-cache/www-client/firefox-17.0.4 @@ -9,5 +9,5 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/binutils-2.16.1 >=dev-libs/nss-3.14.1 >=dev-libs/nspr-4.9.4 >=dev-libs/glib-2.26:2 >=media-libs/mesa-7.10 >=media-libs/libpng-1.5.11[apng] virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:0.10[ffmpeg] ) system-sqlite? ( || ( >=dev-db/sqlite-3.7.16:3[secure-delete,debug=] =media-libs/libvpx-1.0.0 kernel_linux? ( media-libs/alsa-lib ) selinux? ( sec-policy/selinux-mozilla ) x11-libs/libXrender x11-libs/libXt >=sys-libs/zlib-1.1.4 app-arch/zip app-arch/unzip >=app-text/hunspell-1.2 dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.8[X] >=x11-libs/gtk+-2.8.6:2 >=x11-libs/pango-1.10.1[X] virtual/jpeg alsa? ( media-libs/alsa-lib ) virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 ) libnotify? ( >=x11-libs/libnotify-0.4 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) wifi? ( net-wireless/wireless-tools ) SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/af.xpi -> firefox-17.0.4esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ak.xpi -> firefox-17.0.4esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ar.xpi -> firefox-17.0.4esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/as.xpi -> firefox-17.0.4esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ast.xpi -> firefox-17.0.4esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/be.xpi -> firefox-17.0.4esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/bg.xpi -> firefox-17.0.4esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/bn-BD.xpi -> firefox-17.0.4esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/bn-IN.xpi -> firefox-17.0.4esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/br.xpi -> firefox-17.0.4esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/bs.xpi -> firefox-17.0.4esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ca.xpi -> firefox-17.0.4esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/cs.xpi -> firefox-17.0.4esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/csb.xpi -> firefox-17.0.4esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/cy.xpi -> firefox-17.0.4esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/da.xpi -> firefox-17.0.4esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/de.xpi -> firefox-17.0.4esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/el.xpi -> firefox-17.0.4esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/en-GB.xpi -> firefox-17.0.4esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/en-ZA.xpi -> firefox-17.0.4esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/eo.xpi -> firefox-17.0.4esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/es-AR.xpi -> firefox-17.0.4esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/es-CL.xpi -> firefox-17.0.4esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/es-ES.xpi -> firefox-17.0.4esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/es-MX.xpi -> firefox-17.0.4esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/et.xpi -> firefox-17.0.4esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/eu.xpi -> firefox-17.0.4esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/fa.xpi -> firefox-17.0.4esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/fi.xpi -> firefox-17.0.4esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/fr.xpi -> firefox-17.0.4esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/fy-NL.xpi -> firefox-17.0.4esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ga-IE.xpi -> firefox-17.0.4esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/gd.xpi -> firefox-17.0.4esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/gl.xpi -> firefox-17.0.4esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/gu-IN.xpi -> firefox-17.0.4esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/he.xpi -> firefox-17.0.4esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/hi-IN.xpi -> firefox-17.0.4esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/hr.xpi -> firefox-17.0.4esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/hu.xpi -> firefox-17.0.4esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/hy-AM.xpi -> firefox-17.0.4esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/id.xpi -> firefox-17.0.4esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/is.xpi -> firefox-17.0.4esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/it.xpi -> firefox-17.0.4esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ja.xpi -> firefox-17.0.4esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/kk.xpi -> firefox-17.0.4esr-kk.xpi ) linguas_km? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/km.xpi -> firefox-17.0.4esr-km.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/kn.xpi -> firefox-17.0.4esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ko.xpi -> firefox-17.0.4esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ku.xpi -> firefox-17.0.4esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/lg.xpi -> firefox-17.0.4esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/lt.xpi -> firefox-17.0.4esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/lv.xpi -> firefox-17.0.4esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/mai.xpi -> firefox-17.0.4esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/mk.xpi -> firefox-17.0.4esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ml.xpi -> firefox-17.0.4esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/mr.xpi -> firefox-17.0.4esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/nb-NO.xpi -> firefox-17.0.4esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/nl.xpi -> firefox-17.0.4esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/nn-NO.xpi -> firefox-17.0.4esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/nso.xpi -> firefox-17.0.4esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/or.xpi -> firefox-17.0.4esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/pa-IN.xpi -> firefox-17.0.4esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/pl.xpi -> firefox-17.0.4esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/pt-BR.xpi -> firefox-17.0.4esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/pt-PT.xpi -> firefox-17.0.4esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/rm.xpi -> firefox-17.0.4esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ro.xpi -> firefox-17.0.4esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ru.xpi -> firefox-17.0.4esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/si.xpi -> firefox-17.0.4esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/sk.xpi -> firefox-17.0.4esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/sl.xpi -> firefox-17.0.4esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/son.xpi -> firefox-17.0.4esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/sq.xpi -> firefox-17.0.4esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/sr.xpi -> firefox-17.0.4esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/sv-SE.xpi -> firefox-17.0.4esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ta.xpi -> firefox-17.0.4esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/ta-LK.xpi -> firefox-17.0.4esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/te.xpi -> firefox-17.0.4esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/th.xpi -> firefox-17.0.4esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/tr.xpi -> firefox-17.0.4esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/uk.xpi -> firefox-17.0.4esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/vi.xpi -> firefox-17.0.4esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/zh-CN.xpi -> firefox-17.0.4esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/zh-TW.xpi -> firefox-17.0.4esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/linux-i686/xpi/zu.xpi -> firefox-17.0.4esr-zu.xpi ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-17.0-patches-0.5.tar.xz http://dev.gentoo.org/~nirbheek/mozilla/patchsets/firefox-17.0-patches-0.5.tar.xz ftp://ftp.mozilla.org/pub/firefox/releases//17.0.4esr/source/firefox-17.0.4esr.source.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 20f7be97073003610d184672d49cae8d mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 e4ad1852082c7cd6fef51893c4d16af2 mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=4b669f596e792b6b9cc046df6a8c7def diff --git a/metadata/md5-cache/www-client/firefox-17.0.5 b/metadata/md5-cache/www-client/firefox-17.0.5 index bf21daa7624d..d35b99fe5a89 100644 --- a/metadata/md5-cache/www-client/firefox-17.0.5 +++ b/metadata/md5-cache/www-client/firefox-17.0.5 @@ -4,10 +4,10 @@ DESCRIPTION=Firefox Web Browser EAPI=3 HOMEPAGE=http://www.mozilla.com/firefox IUSE=bindist gstreamer +jit +minimal pgo selinux system-sqlite custom-cflags custom-optimization +alsa +dbus debug libnotify startup-notification system-sqlite wifi pgo linguas_af linguas_ak linguas_ar linguas_as linguas_ast linguas_be linguas_bg linguas_bn_BD linguas_bn_IN linguas_br linguas_bs linguas_ca linguas_cs linguas_csb linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_en_ZA linguas_eo linguas_es_AR linguas_es_CL linguas_es_ES linguas_es_MX linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_kk linguas_km linguas_kn linguas_ko linguas_ku linguas_lg linguas_lt linguas_lv linguas_mai linguas_mk linguas_ml linguas_mr linguas_nb_NO linguas_nl linguas_nn_NO linguas_nso linguas_or linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_son linguas_sq linguas_sr linguas_sv_SE linguas_ta linguas_ta_LK linguas_te linguas_th linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW linguas_zu -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux +KEYWORDS=~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/binutils-2.16.1 >=dev-libs/nss-3.14.1 >=dev-libs/nspr-4.9.4 >=dev-libs/glib-2.26:2 >=media-libs/mesa-7.10 >=media-libs/libpng-1.5.11[apng] virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:0.10[ffmpeg] ) system-sqlite? ( || ( >=dev-db/sqlite-3.7.16:3[secure-delete,debug=] =media-libs/libvpx-1.0.0 kernel_linux? ( media-libs/alsa-lib ) selinux? ( sec-policy/selinux-mozilla ) x11-libs/libXrender x11-libs/libXt >=sys-libs/zlib-1.1.4 app-arch/zip app-arch/unzip >=app-text/hunspell-1.2 dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.8[X] >=x11-libs/gtk+-2.8.6:2 >=x11-libs/pango-1.10.1[X] virtual/jpeg alsa? ( media-libs/alsa-lib ) virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 ) libnotify? ( >=x11-libs/libnotify-0.4 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) wifi? ( net-wireless/wireless-tools ) SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/af.xpi -> firefox-17.0.5esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ak.xpi -> firefox-17.0.5esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ar.xpi -> firefox-17.0.5esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/as.xpi -> firefox-17.0.5esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ast.xpi -> firefox-17.0.5esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/be.xpi -> firefox-17.0.5esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/bg.xpi -> firefox-17.0.5esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/bn-BD.xpi -> firefox-17.0.5esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/bn-IN.xpi -> firefox-17.0.5esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/br.xpi -> firefox-17.0.5esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/bs.xpi -> firefox-17.0.5esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ca.xpi -> firefox-17.0.5esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/cs.xpi -> firefox-17.0.5esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/csb.xpi -> firefox-17.0.5esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/cy.xpi -> firefox-17.0.5esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/da.xpi -> firefox-17.0.5esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/de.xpi -> firefox-17.0.5esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/el.xpi -> firefox-17.0.5esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/en-GB.xpi -> firefox-17.0.5esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/en-ZA.xpi -> firefox-17.0.5esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/eo.xpi -> firefox-17.0.5esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/es-AR.xpi -> firefox-17.0.5esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/es-CL.xpi -> firefox-17.0.5esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/es-ES.xpi -> firefox-17.0.5esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/es-MX.xpi -> firefox-17.0.5esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/et.xpi -> firefox-17.0.5esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/eu.xpi -> firefox-17.0.5esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/fa.xpi -> firefox-17.0.5esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/fi.xpi -> firefox-17.0.5esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/fr.xpi -> firefox-17.0.5esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/fy-NL.xpi -> firefox-17.0.5esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ga-IE.xpi -> firefox-17.0.5esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/gd.xpi -> firefox-17.0.5esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/gl.xpi -> firefox-17.0.5esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/gu-IN.xpi -> firefox-17.0.5esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/he.xpi -> firefox-17.0.5esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/hi-IN.xpi -> firefox-17.0.5esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/hr.xpi -> firefox-17.0.5esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/hu.xpi -> firefox-17.0.5esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/hy-AM.xpi -> firefox-17.0.5esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/id.xpi -> firefox-17.0.5esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/is.xpi -> firefox-17.0.5esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/it.xpi -> firefox-17.0.5esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ja.xpi -> firefox-17.0.5esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/kk.xpi -> firefox-17.0.5esr-kk.xpi ) linguas_km? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/km.xpi -> firefox-17.0.5esr-km.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/kn.xpi -> firefox-17.0.5esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ko.xpi -> firefox-17.0.5esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ku.xpi -> firefox-17.0.5esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/lg.xpi -> firefox-17.0.5esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/lt.xpi -> firefox-17.0.5esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/lv.xpi -> firefox-17.0.5esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/mai.xpi -> firefox-17.0.5esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/mk.xpi -> firefox-17.0.5esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ml.xpi -> firefox-17.0.5esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/mr.xpi -> firefox-17.0.5esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/nb-NO.xpi -> firefox-17.0.5esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/nl.xpi -> firefox-17.0.5esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/nn-NO.xpi -> firefox-17.0.5esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/nso.xpi -> firefox-17.0.5esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/or.xpi -> firefox-17.0.5esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/pa-IN.xpi -> firefox-17.0.5esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/pl.xpi -> firefox-17.0.5esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/pt-BR.xpi -> firefox-17.0.5esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/pt-PT.xpi -> firefox-17.0.5esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/rm.xpi -> firefox-17.0.5esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ro.xpi -> firefox-17.0.5esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ru.xpi -> firefox-17.0.5esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/si.xpi -> firefox-17.0.5esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/sk.xpi -> firefox-17.0.5esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/sl.xpi -> firefox-17.0.5esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/son.xpi -> firefox-17.0.5esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/sq.xpi -> firefox-17.0.5esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/sr.xpi -> firefox-17.0.5esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/sv-SE.xpi -> firefox-17.0.5esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ta.xpi -> firefox-17.0.5esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/ta-LK.xpi -> firefox-17.0.5esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/te.xpi -> firefox-17.0.5esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/th.xpi -> firefox-17.0.5esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/tr.xpi -> firefox-17.0.5esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/uk.xpi -> firefox-17.0.5esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/vi.xpi -> firefox-17.0.5esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/zh-CN.xpi -> firefox-17.0.5esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/zh-TW.xpi -> firefox-17.0.5esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/linux-i686/xpi/zu.xpi -> firefox-17.0.5esr-zu.xpi ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-17.0-patches-0.5.tar.xz http://dev.gentoo.org/~nirbheek/mozilla/patchsets/firefox-17.0-patches-0.5.tar.xz ftp://ftp.mozilla.org/pub/firefox/releases//17.0.5esr/source/firefox-17.0.5esr.source.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 20f7be97073003610d184672d49cae8d mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=9517d518886984d46a9035074d37ce76 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 e4ad1852082c7cd6fef51893c4d16af2 mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_md5_=6c5dc92b6102fdedb83151d22741832f diff --git a/metadata/md5-cache/www-client/firefox-20.0 b/metadata/md5-cache/www-client/firefox-20.0 index 3465db73dfe7..c0f35c8df6f9 100644 --- a/metadata/md5-cache/www-client/firefox-20.0 +++ b/metadata/md5-cache/www-client/firefox-20.0 @@ -9,5 +9,5 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/binutils-2.16.1 >=dev-libs/nss-3.14.1 >=dev-libs/nspr-4.9.4 >=dev-libs/glib-2.26:2 >=media-libs/mesa-7.10 >=media-libs/libpng-1.5.11[apng] virtual/libffi gstreamer? ( media-plugins/gst-plugins-meta:0.10[ffmpeg] ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( || ( >=dev-db/sqlite-3.7.16:3[secure-delete,debug=] =media-libs/libvpx-1.0.0 kernel_linux? ( media-libs/alsa-lib ) selinux? ( sec-policy/selinux-mozilla ) x11-libs/libXrender x11-libs/libXt >=sys-libs/zlib-1.1.4 app-arch/zip app-arch/unzip >=app-text/hunspell-1.2 dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.8[X] >=x11-libs/gtk+-2.8.6:2 >=x11-libs/pango-1.10.1[X] virtual/jpeg alsa? ( media-libs/alsa-lib ) virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 ) libnotify? ( >=x11-libs/libnotify-0.4 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) wifi? ( net-wireless/wireless-tools ) SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/af.xpi -> firefox-20.0-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ak.xpi -> firefox-20.0-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ar.xpi -> firefox-20.0-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/as.xpi -> firefox-20.0-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ast.xpi -> firefox-20.0-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/be.xpi -> firefox-20.0-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/bg.xpi -> firefox-20.0-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/bn-BD.xpi -> firefox-20.0-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/bn-IN.xpi -> firefox-20.0-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/br.xpi -> firefox-20.0-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/bs.xpi -> firefox-20.0-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ca.xpi -> firefox-20.0-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/cs.xpi -> firefox-20.0-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/csb.xpi -> firefox-20.0-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/cy.xpi -> firefox-20.0-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/da.xpi -> firefox-20.0-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/de.xpi -> firefox-20.0-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/el.xpi -> firefox-20.0-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/en-GB.xpi -> firefox-20.0-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/en-ZA.xpi -> firefox-20.0-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/eo.xpi -> firefox-20.0-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/es-AR.xpi -> firefox-20.0-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/es-CL.xpi -> firefox-20.0-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/es-ES.xpi -> firefox-20.0-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/es-MX.xpi -> firefox-20.0-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/et.xpi -> firefox-20.0-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/eu.xpi -> firefox-20.0-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/fa.xpi -> firefox-20.0-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/fi.xpi -> firefox-20.0-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/fr.xpi -> firefox-20.0-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/fy-NL.xpi -> firefox-20.0-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ga-IE.xpi -> firefox-20.0-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/gd.xpi -> firefox-20.0-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/gl.xpi -> firefox-20.0-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/gu-IN.xpi -> firefox-20.0-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/he.xpi -> firefox-20.0-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/hi-IN.xpi -> firefox-20.0-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/hr.xpi -> firefox-20.0-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/hu.xpi -> firefox-20.0-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/hy-AM.xpi -> firefox-20.0-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/id.xpi -> firefox-20.0-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/is.xpi -> firefox-20.0-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/it.xpi -> firefox-20.0-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ja.xpi -> firefox-20.0-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/kk.xpi -> firefox-20.0-kk.xpi ) linguas_km? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/km.xpi -> firefox-20.0-km.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/kn.xpi -> firefox-20.0-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ko.xpi -> firefox-20.0-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ku.xpi -> firefox-20.0-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/lg.xpi -> firefox-20.0-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/lt.xpi -> firefox-20.0-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/lv.xpi -> firefox-20.0-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/mai.xpi -> firefox-20.0-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/mk.xpi -> firefox-20.0-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ml.xpi -> firefox-20.0-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/mr.xpi -> firefox-20.0-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/nb-NO.xpi -> firefox-20.0-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/nl.xpi -> firefox-20.0-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/nn-NO.xpi -> firefox-20.0-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/nso.xpi -> firefox-20.0-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/or.xpi -> firefox-20.0-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/pa-IN.xpi -> firefox-20.0-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/pl.xpi -> firefox-20.0-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/pt-BR.xpi -> firefox-20.0-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/pt-PT.xpi -> firefox-20.0-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/rm.xpi -> firefox-20.0-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ro.xpi -> firefox-20.0-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ru.xpi -> firefox-20.0-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/si.xpi -> firefox-20.0-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/sk.xpi -> firefox-20.0-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/sl.xpi -> firefox-20.0-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/son.xpi -> firefox-20.0-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/sq.xpi -> firefox-20.0-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/sr.xpi -> firefox-20.0-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/sv-SE.xpi -> firefox-20.0-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ta.xpi -> firefox-20.0-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/ta-LK.xpi -> firefox-20.0-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/te.xpi -> firefox-20.0-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/th.xpi -> firefox-20.0-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/tr.xpi -> firefox-20.0-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/uk.xpi -> firefox-20.0-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/vi.xpi -> firefox-20.0-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/zh-CN.xpi -> firefox-20.0-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/zh-TW.xpi -> firefox-20.0-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/firefox/releases//20.0/linux-i686/xpi/zu.xpi -> firefox-20.0-zu.xpi ) http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-20.0-patches-0.2.tar.xz http://dev.gentoo.org/~nirbheek/mozilla/patchsets/firefox-20.0-patches-0.2.tar.xz ftp://ftp.mozilla.org/pub/firefox/releases//20.0/source/firefox-20.0.source.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 20f7be97073003610d184672d49cae8d mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 e4ad1852082c7cd6fef51893c4d16af2 mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=f8700990de13b5772837ed8417236f1d diff --git a/metadata/md5-cache/www-client/firefox-bin-10.0.10 b/metadata/md5-cache/www-client/firefox-bin-10.0.10 index 32f1a3761724..004e0222830d 100644 --- a/metadata/md5-cache/www-client/firefox-bin-10.0.10 +++ b/metadata/md5-cache/www-client/firefox-bin-10.0.10 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/af.xpi -> firefox-10.0.10esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ak.xpi -> firefox-10.0.10esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ar.xpi -> firefox-10.0.10esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/as.xpi -> firefox-10.0.10esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ast.xpi -> firefox-10.0.10esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/be.xpi -> firefox-10.0.10esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/bg.xpi -> firefox-10.0.10esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/bn-BD.xpi -> firefox-10.0.10esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/bn-IN.xpi -> firefox-10.0.10esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/br.xpi -> firefox-10.0.10esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/bs.xpi -> firefox-10.0.10esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ca.xpi -> firefox-10.0.10esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/cs.xpi -> firefox-10.0.10esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/csb.xpi -> firefox-10.0.10esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/cy.xpi -> firefox-10.0.10esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/da.xpi -> firefox-10.0.10esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/de.xpi -> firefox-10.0.10esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/el.xpi -> firefox-10.0.10esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/en-GB.xpi -> firefox-10.0.10esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/en-ZA.xpi -> firefox-10.0.10esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/eo.xpi -> firefox-10.0.10esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/es-AR.xpi -> firefox-10.0.10esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/es-CL.xpi -> firefox-10.0.10esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/es-ES.xpi -> firefox-10.0.10esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/es-MX.xpi -> firefox-10.0.10esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/et.xpi -> firefox-10.0.10esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/eu.xpi -> firefox-10.0.10esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/fa.xpi -> firefox-10.0.10esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/fi.xpi -> firefox-10.0.10esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/fr.xpi -> firefox-10.0.10esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/fy-NL.xpi -> firefox-10.0.10esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ga-IE.xpi -> firefox-10.0.10esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/gd.xpi -> firefox-10.0.10esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/gl.xpi -> firefox-10.0.10esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/gu-IN.xpi -> firefox-10.0.10esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/he.xpi -> firefox-10.0.10esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/hi-IN.xpi -> firefox-10.0.10esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/hr.xpi -> firefox-10.0.10esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/hu.xpi -> firefox-10.0.10esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/hy-AM.xpi -> firefox-10.0.10esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/id.xpi -> firefox-10.0.10esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/is.xpi -> firefox-10.0.10esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/it.xpi -> firefox-10.0.10esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ja.xpi -> firefox-10.0.10esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/kk.xpi -> firefox-10.0.10esr-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/kn.xpi -> firefox-10.0.10esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ko.xpi -> firefox-10.0.10esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ku.xpi -> firefox-10.0.10esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/lg.xpi -> firefox-10.0.10esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/lt.xpi -> firefox-10.0.10esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/lv.xpi -> firefox-10.0.10esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/mai.xpi -> firefox-10.0.10esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/mk.xpi -> firefox-10.0.10esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ml.xpi -> firefox-10.0.10esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/mr.xpi -> firefox-10.0.10esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/nb-NO.xpi -> firefox-10.0.10esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/nl.xpi -> firefox-10.0.10esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/nn-NO.xpi -> firefox-10.0.10esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/nso.xpi -> firefox-10.0.10esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/or.xpi -> firefox-10.0.10esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/pa-IN.xpi -> firefox-10.0.10esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/pl.xpi -> firefox-10.0.10esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/pt-BR.xpi -> firefox-10.0.10esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/pt-PT.xpi -> firefox-10.0.10esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/rm.xpi -> firefox-10.0.10esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ro.xpi -> firefox-10.0.10esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ru.xpi -> firefox-10.0.10esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/si.xpi -> firefox-10.0.10esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/sk.xpi -> firefox-10.0.10esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/sl.xpi -> firefox-10.0.10esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/son.xpi -> firefox-10.0.10esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/sq.xpi -> firefox-10.0.10esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/sr.xpi -> firefox-10.0.10esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/sv-SE.xpi -> firefox-10.0.10esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ta.xpi -> firefox-10.0.10esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/ta-LK.xpi -> firefox-10.0.10esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/te.xpi -> firefox-10.0.10esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/th.xpi -> firefox-10.0.10esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/tr.xpi -> firefox-10.0.10esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/uk.xpi -> firefox-10.0.10esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/vi.xpi -> firefox-10.0.10esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/zh-CN.xpi -> firefox-10.0.10esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/zh-TW.xpi -> firefox-10.0.10esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.10esr/linux-i686/xpi/zu.xpi -> firefox-10.0.10esr-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/10.0.10esr/linux-x86_64/en-US/firefox-10.0.10esr.tar.bz2 -> firefox-bin_x86_64-10.0.10.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/10.0.10esr/linux-i686/en-US/firefox-10.0.10esr.tar.bz2 -> firefox-bin_i686-10.0.10.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=0d92185ccdafdf790125d0093aef1cad diff --git a/metadata/md5-cache/www-client/firefox-bin-10.0.11 b/metadata/md5-cache/www-client/firefox-bin-10.0.11 index 542bded25c04..17ea3b288acc 100644 --- a/metadata/md5-cache/www-client/firefox-bin-10.0.11 +++ b/metadata/md5-cache/www-client/firefox-bin-10.0.11 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/af.xpi -> firefox-10.0.11esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ak.xpi -> firefox-10.0.11esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ar.xpi -> firefox-10.0.11esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/as.xpi -> firefox-10.0.11esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ast.xpi -> firefox-10.0.11esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/be.xpi -> firefox-10.0.11esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/bg.xpi -> firefox-10.0.11esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/bn-BD.xpi -> firefox-10.0.11esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/bn-IN.xpi -> firefox-10.0.11esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/br.xpi -> firefox-10.0.11esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/bs.xpi -> firefox-10.0.11esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ca.xpi -> firefox-10.0.11esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/cs.xpi -> firefox-10.0.11esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/csb.xpi -> firefox-10.0.11esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/cy.xpi -> firefox-10.0.11esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/da.xpi -> firefox-10.0.11esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/de.xpi -> firefox-10.0.11esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/el.xpi -> firefox-10.0.11esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/en-GB.xpi -> firefox-10.0.11esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/en-ZA.xpi -> firefox-10.0.11esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/eo.xpi -> firefox-10.0.11esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/es-AR.xpi -> firefox-10.0.11esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/es-CL.xpi -> firefox-10.0.11esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/es-ES.xpi -> firefox-10.0.11esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/es-MX.xpi -> firefox-10.0.11esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/et.xpi -> firefox-10.0.11esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/eu.xpi -> firefox-10.0.11esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/fa.xpi -> firefox-10.0.11esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/fi.xpi -> firefox-10.0.11esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/fr.xpi -> firefox-10.0.11esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/fy-NL.xpi -> firefox-10.0.11esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ga-IE.xpi -> firefox-10.0.11esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/gd.xpi -> firefox-10.0.11esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/gl.xpi -> firefox-10.0.11esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/gu-IN.xpi -> firefox-10.0.11esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/he.xpi -> firefox-10.0.11esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/hi-IN.xpi -> firefox-10.0.11esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/hr.xpi -> firefox-10.0.11esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/hu.xpi -> firefox-10.0.11esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/hy-AM.xpi -> firefox-10.0.11esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/id.xpi -> firefox-10.0.11esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/is.xpi -> firefox-10.0.11esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/it.xpi -> firefox-10.0.11esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ja.xpi -> firefox-10.0.11esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/kk.xpi -> firefox-10.0.11esr-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/kn.xpi -> firefox-10.0.11esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ko.xpi -> firefox-10.0.11esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ku.xpi -> firefox-10.0.11esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/lg.xpi -> firefox-10.0.11esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/lt.xpi -> firefox-10.0.11esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/lv.xpi -> firefox-10.0.11esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/mai.xpi -> firefox-10.0.11esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/mk.xpi -> firefox-10.0.11esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ml.xpi -> firefox-10.0.11esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/mr.xpi -> firefox-10.0.11esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/nb-NO.xpi -> firefox-10.0.11esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/nl.xpi -> firefox-10.0.11esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/nn-NO.xpi -> firefox-10.0.11esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/nso.xpi -> firefox-10.0.11esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/or.xpi -> firefox-10.0.11esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/pa-IN.xpi -> firefox-10.0.11esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/pl.xpi -> firefox-10.0.11esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/pt-BR.xpi -> firefox-10.0.11esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/pt-PT.xpi -> firefox-10.0.11esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/rm.xpi -> firefox-10.0.11esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ro.xpi -> firefox-10.0.11esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ru.xpi -> firefox-10.0.11esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/si.xpi -> firefox-10.0.11esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/sk.xpi -> firefox-10.0.11esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/sl.xpi -> firefox-10.0.11esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/son.xpi -> firefox-10.0.11esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/sq.xpi -> firefox-10.0.11esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/sr.xpi -> firefox-10.0.11esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/sv-SE.xpi -> firefox-10.0.11esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ta.xpi -> firefox-10.0.11esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/ta-LK.xpi -> firefox-10.0.11esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/te.xpi -> firefox-10.0.11esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/th.xpi -> firefox-10.0.11esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/tr.xpi -> firefox-10.0.11esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/uk.xpi -> firefox-10.0.11esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/vi.xpi -> firefox-10.0.11esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/zh-CN.xpi -> firefox-10.0.11esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/zh-TW.xpi -> firefox-10.0.11esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.11esr/linux-i686/xpi/zu.xpi -> firefox-10.0.11esr-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/10.0.11esr/linux-x86_64/en-US/firefox-10.0.11esr.tar.bz2 -> firefox-bin_x86_64-10.0.11.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/10.0.11esr/linux-i686/en-US/firefox-10.0.11esr.tar.bz2 -> firefox-bin_i686-10.0.11.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=160de2b4342a6af8ebc6851d3c1b4401 diff --git a/metadata/md5-cache/www-client/firefox-bin-10.0.12 b/metadata/md5-cache/www-client/firefox-bin-10.0.12 index a50ed01a8542..4355f29532de 100644 --- a/metadata/md5-cache/www-client/firefox-bin-10.0.12 +++ b/metadata/md5-cache/www-client/firefox-bin-10.0.12 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/af.xpi -> firefox-10.0.12esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ak.xpi -> firefox-10.0.12esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ar.xpi -> firefox-10.0.12esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/as.xpi -> firefox-10.0.12esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ast.xpi -> firefox-10.0.12esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/be.xpi -> firefox-10.0.12esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/bg.xpi -> firefox-10.0.12esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/bn-BD.xpi -> firefox-10.0.12esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/bn-IN.xpi -> firefox-10.0.12esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/br.xpi -> firefox-10.0.12esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/bs.xpi -> firefox-10.0.12esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ca.xpi -> firefox-10.0.12esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/cs.xpi -> firefox-10.0.12esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/csb.xpi -> firefox-10.0.12esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/cy.xpi -> firefox-10.0.12esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/da.xpi -> firefox-10.0.12esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/de.xpi -> firefox-10.0.12esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/el.xpi -> firefox-10.0.12esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/en-GB.xpi -> firefox-10.0.12esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/en-ZA.xpi -> firefox-10.0.12esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/eo.xpi -> firefox-10.0.12esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/es-AR.xpi -> firefox-10.0.12esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/es-CL.xpi -> firefox-10.0.12esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/es-ES.xpi -> firefox-10.0.12esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/es-MX.xpi -> firefox-10.0.12esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/et.xpi -> firefox-10.0.12esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/eu.xpi -> firefox-10.0.12esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/fa.xpi -> firefox-10.0.12esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/fi.xpi -> firefox-10.0.12esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/fr.xpi -> firefox-10.0.12esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/fy-NL.xpi -> firefox-10.0.12esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ga-IE.xpi -> firefox-10.0.12esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/gd.xpi -> firefox-10.0.12esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/gl.xpi -> firefox-10.0.12esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/gu-IN.xpi -> firefox-10.0.12esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/he.xpi -> firefox-10.0.12esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/hi-IN.xpi -> firefox-10.0.12esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/hr.xpi -> firefox-10.0.12esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/hu.xpi -> firefox-10.0.12esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/hy-AM.xpi -> firefox-10.0.12esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/id.xpi -> firefox-10.0.12esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/is.xpi -> firefox-10.0.12esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/it.xpi -> firefox-10.0.12esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ja.xpi -> firefox-10.0.12esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/kk.xpi -> firefox-10.0.12esr-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/kn.xpi -> firefox-10.0.12esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ko.xpi -> firefox-10.0.12esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ku.xpi -> firefox-10.0.12esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/lg.xpi -> firefox-10.0.12esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/lt.xpi -> firefox-10.0.12esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/lv.xpi -> firefox-10.0.12esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/mai.xpi -> firefox-10.0.12esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/mk.xpi -> firefox-10.0.12esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ml.xpi -> firefox-10.0.12esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/mr.xpi -> firefox-10.0.12esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/nb-NO.xpi -> firefox-10.0.12esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/nl.xpi -> firefox-10.0.12esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/nn-NO.xpi -> firefox-10.0.12esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/nso.xpi -> firefox-10.0.12esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/or.xpi -> firefox-10.0.12esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/pa-IN.xpi -> firefox-10.0.12esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/pl.xpi -> firefox-10.0.12esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/pt-BR.xpi -> firefox-10.0.12esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/pt-PT.xpi -> firefox-10.0.12esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/rm.xpi -> firefox-10.0.12esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ro.xpi -> firefox-10.0.12esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ru.xpi -> firefox-10.0.12esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/si.xpi -> firefox-10.0.12esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/sk.xpi -> firefox-10.0.12esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/sl.xpi -> firefox-10.0.12esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/son.xpi -> firefox-10.0.12esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/sq.xpi -> firefox-10.0.12esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/sr.xpi -> firefox-10.0.12esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/sv-SE.xpi -> firefox-10.0.12esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ta.xpi -> firefox-10.0.12esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/ta-LK.xpi -> firefox-10.0.12esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/te.xpi -> firefox-10.0.12esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/th.xpi -> firefox-10.0.12esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/tr.xpi -> firefox-10.0.12esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/uk.xpi -> firefox-10.0.12esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/vi.xpi -> firefox-10.0.12esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/zh-CN.xpi -> firefox-10.0.12esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/zh-TW.xpi -> firefox-10.0.12esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//10.0.12esr/linux-i686/xpi/zu.xpi -> firefox-10.0.12esr-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/10.0.12esr/linux-x86_64/en-US/firefox-10.0.12esr.tar.bz2 -> firefox-bin_x86_64-10.0.12.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/10.0.12esr/linux-i686/en-US/firefox-10.0.12esr.tar.bz2 -> firefox-bin_i686-10.0.12.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9f39d1c9eb2bd08705fcee4558c63650 diff --git a/metadata/md5-cache/www-client/firefox-bin-16.0.2 b/metadata/md5-cache/www-client/firefox-bin-16.0.2 index c0c424467084..94f355cc29f3 100644 --- a/metadata/md5-cache/www-client/firefox-bin-16.0.2 +++ b/metadata/md5-cache/www-client/firefox-bin-16.0.2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/af.xpi -> firefox-16.0.2-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ak.xpi -> firefox-16.0.2-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ar.xpi -> firefox-16.0.2-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/as.xpi -> firefox-16.0.2-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ast.xpi -> firefox-16.0.2-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/be.xpi -> firefox-16.0.2-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/bg.xpi -> firefox-16.0.2-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/bn-BD.xpi -> firefox-16.0.2-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/bn-IN.xpi -> firefox-16.0.2-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/br.xpi -> firefox-16.0.2-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/bs.xpi -> firefox-16.0.2-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ca.xpi -> firefox-16.0.2-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/cs.xpi -> firefox-16.0.2-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/csb.xpi -> firefox-16.0.2-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/cy.xpi -> firefox-16.0.2-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/da.xpi -> firefox-16.0.2-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/de.xpi -> firefox-16.0.2-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/el.xpi -> firefox-16.0.2-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/en-GB.xpi -> firefox-16.0.2-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/en-ZA.xpi -> firefox-16.0.2-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/eo.xpi -> firefox-16.0.2-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/es-AR.xpi -> firefox-16.0.2-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/es-CL.xpi -> firefox-16.0.2-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/es-ES.xpi -> firefox-16.0.2-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/es-MX.xpi -> firefox-16.0.2-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/et.xpi -> firefox-16.0.2-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/eu.xpi -> firefox-16.0.2-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/fa.xpi -> firefox-16.0.2-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/fi.xpi -> firefox-16.0.2-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/fr.xpi -> firefox-16.0.2-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/fy-NL.xpi -> firefox-16.0.2-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ga-IE.xpi -> firefox-16.0.2-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/gd.xpi -> firefox-16.0.2-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/gl.xpi -> firefox-16.0.2-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/gu-IN.xpi -> firefox-16.0.2-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/he.xpi -> firefox-16.0.2-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/hi-IN.xpi -> firefox-16.0.2-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/hr.xpi -> firefox-16.0.2-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/hu.xpi -> firefox-16.0.2-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/hy-AM.xpi -> firefox-16.0.2-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/id.xpi -> firefox-16.0.2-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/is.xpi -> firefox-16.0.2-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/it.xpi -> firefox-16.0.2-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ja.xpi -> firefox-16.0.2-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/kk.xpi -> firefox-16.0.2-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/kn.xpi -> firefox-16.0.2-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ko.xpi -> firefox-16.0.2-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ku.xpi -> firefox-16.0.2-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/lg.xpi -> firefox-16.0.2-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/lt.xpi -> firefox-16.0.2-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/lv.xpi -> firefox-16.0.2-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/mai.xpi -> firefox-16.0.2-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/mk.xpi -> firefox-16.0.2-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ml.xpi -> firefox-16.0.2-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/mr.xpi -> firefox-16.0.2-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/nb-NO.xpi -> firefox-16.0.2-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/nl.xpi -> firefox-16.0.2-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/nn-NO.xpi -> firefox-16.0.2-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/nso.xpi -> firefox-16.0.2-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/or.xpi -> firefox-16.0.2-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/pa-IN.xpi -> firefox-16.0.2-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/pl.xpi -> firefox-16.0.2-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/pt-BR.xpi -> firefox-16.0.2-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/pt-PT.xpi -> firefox-16.0.2-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/rm.xpi -> firefox-16.0.2-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ro.xpi -> firefox-16.0.2-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ru.xpi -> firefox-16.0.2-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/si.xpi -> firefox-16.0.2-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/sk.xpi -> firefox-16.0.2-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/sl.xpi -> firefox-16.0.2-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/son.xpi -> firefox-16.0.2-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/sq.xpi -> firefox-16.0.2-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/sr.xpi -> firefox-16.0.2-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/sv-SE.xpi -> firefox-16.0.2-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ta.xpi -> firefox-16.0.2-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/ta-LK.xpi -> firefox-16.0.2-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/te.xpi -> firefox-16.0.2-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/th.xpi -> firefox-16.0.2-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/tr.xpi -> firefox-16.0.2-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/uk.xpi -> firefox-16.0.2-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/vi.xpi -> firefox-16.0.2-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/zh-CN.xpi -> firefox-16.0.2-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/zh-TW.xpi -> firefox-16.0.2-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//16.0.2/linux-i686/xpi/zu.xpi -> firefox-16.0.2-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/16.0.2/linux-x86_64/en-US/firefox-16.0.2.tar.bz2 -> firefox-bin_x86_64-16.0.2.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/16.0.2/linux-i686/en-US/firefox-16.0.2.tar.bz2 -> firefox-bin_i686-16.0.2.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1d2d78302d01787ca6a6bbff5b93f084 diff --git a/metadata/md5-cache/www-client/firefox-bin-17.0.1 b/metadata/md5-cache/www-client/firefox-bin-17.0.1 index d43c14e188bf..5e4b25bf9cd9 100644 --- a/metadata/md5-cache/www-client/firefox-bin-17.0.1 +++ b/metadata/md5-cache/www-client/firefox-bin-17.0.1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/af.xpi -> firefox-17.0.1-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ak.xpi -> firefox-17.0.1-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ar.xpi -> firefox-17.0.1-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/as.xpi -> firefox-17.0.1-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ast.xpi -> firefox-17.0.1-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/be.xpi -> firefox-17.0.1-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/bg.xpi -> firefox-17.0.1-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/bn-BD.xpi -> firefox-17.0.1-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/bn-IN.xpi -> firefox-17.0.1-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/br.xpi -> firefox-17.0.1-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/bs.xpi -> firefox-17.0.1-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ca.xpi -> firefox-17.0.1-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/cs.xpi -> firefox-17.0.1-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/csb.xpi -> firefox-17.0.1-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/cy.xpi -> firefox-17.0.1-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/da.xpi -> firefox-17.0.1-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/de.xpi -> firefox-17.0.1-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/el.xpi -> firefox-17.0.1-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/en-GB.xpi -> firefox-17.0.1-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/en-ZA.xpi -> firefox-17.0.1-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/eo.xpi -> firefox-17.0.1-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/es-AR.xpi -> firefox-17.0.1-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/es-CL.xpi -> firefox-17.0.1-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/es-ES.xpi -> firefox-17.0.1-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/es-MX.xpi -> firefox-17.0.1-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/et.xpi -> firefox-17.0.1-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/eu.xpi -> firefox-17.0.1-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/fa.xpi -> firefox-17.0.1-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/fi.xpi -> firefox-17.0.1-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/fr.xpi -> firefox-17.0.1-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/fy-NL.xpi -> firefox-17.0.1-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ga-IE.xpi -> firefox-17.0.1-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/gd.xpi -> firefox-17.0.1-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/gl.xpi -> firefox-17.0.1-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/gu-IN.xpi -> firefox-17.0.1-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/he.xpi -> firefox-17.0.1-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/hi-IN.xpi -> firefox-17.0.1-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/hr.xpi -> firefox-17.0.1-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/hu.xpi -> firefox-17.0.1-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/hy-AM.xpi -> firefox-17.0.1-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/id.xpi -> firefox-17.0.1-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/is.xpi -> firefox-17.0.1-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/it.xpi -> firefox-17.0.1-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ja.xpi -> firefox-17.0.1-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/kk.xpi -> firefox-17.0.1-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/kn.xpi -> firefox-17.0.1-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ko.xpi -> firefox-17.0.1-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ku.xpi -> firefox-17.0.1-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/lg.xpi -> firefox-17.0.1-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/lt.xpi -> firefox-17.0.1-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/lv.xpi -> firefox-17.0.1-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/mai.xpi -> firefox-17.0.1-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/mk.xpi -> firefox-17.0.1-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ml.xpi -> firefox-17.0.1-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/mr.xpi -> firefox-17.0.1-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/nb-NO.xpi -> firefox-17.0.1-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/nl.xpi -> firefox-17.0.1-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/nn-NO.xpi -> firefox-17.0.1-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/nso.xpi -> firefox-17.0.1-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/or.xpi -> firefox-17.0.1-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/pa-IN.xpi -> firefox-17.0.1-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/pl.xpi -> firefox-17.0.1-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/pt-BR.xpi -> firefox-17.0.1-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/pt-PT.xpi -> firefox-17.0.1-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/rm.xpi -> firefox-17.0.1-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ro.xpi -> firefox-17.0.1-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ru.xpi -> firefox-17.0.1-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/si.xpi -> firefox-17.0.1-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/sk.xpi -> firefox-17.0.1-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/sl.xpi -> firefox-17.0.1-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/son.xpi -> firefox-17.0.1-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/sq.xpi -> firefox-17.0.1-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/sr.xpi -> firefox-17.0.1-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/sv-SE.xpi -> firefox-17.0.1-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ta.xpi -> firefox-17.0.1-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/ta-LK.xpi -> firefox-17.0.1-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/te.xpi -> firefox-17.0.1-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/th.xpi -> firefox-17.0.1-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/tr.xpi -> firefox-17.0.1-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/uk.xpi -> firefox-17.0.1-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/vi.xpi -> firefox-17.0.1-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/zh-CN.xpi -> firefox-17.0.1-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/zh-TW.xpi -> firefox-17.0.1-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.1/linux-i686/xpi/zu.xpi -> firefox-17.0.1-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.1/linux-x86_64/en-US/firefox-17.0.1.tar.bz2 -> firefox-bin_x86_64-17.0.1.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.1/linux-i686/en-US/firefox-17.0.1.tar.bz2 -> firefox-bin_i686-17.0.1.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=cca7c1c1e094d9d52669191873bd945c diff --git a/metadata/md5-cache/www-client/firefox-bin-17.0.2 b/metadata/md5-cache/www-client/firefox-bin-17.0.2 index c9acdb1bcccc..90504368e8d9 100644 --- a/metadata/md5-cache/www-client/firefox-bin-17.0.2 +++ b/metadata/md5-cache/www-client/firefox-bin-17.0.2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/af.xpi -> firefox-17.0.2esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ak.xpi -> firefox-17.0.2esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ar.xpi -> firefox-17.0.2esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/as.xpi -> firefox-17.0.2esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ast.xpi -> firefox-17.0.2esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/be.xpi -> firefox-17.0.2esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/bg.xpi -> firefox-17.0.2esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/bn-BD.xpi -> firefox-17.0.2esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/bn-IN.xpi -> firefox-17.0.2esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/br.xpi -> firefox-17.0.2esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/bs.xpi -> firefox-17.0.2esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ca.xpi -> firefox-17.0.2esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/cs.xpi -> firefox-17.0.2esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/csb.xpi -> firefox-17.0.2esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/cy.xpi -> firefox-17.0.2esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/da.xpi -> firefox-17.0.2esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/de.xpi -> firefox-17.0.2esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/el.xpi -> firefox-17.0.2esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/en-GB.xpi -> firefox-17.0.2esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/en-ZA.xpi -> firefox-17.0.2esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/eo.xpi -> firefox-17.0.2esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/es-AR.xpi -> firefox-17.0.2esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/es-CL.xpi -> firefox-17.0.2esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/es-ES.xpi -> firefox-17.0.2esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/es-MX.xpi -> firefox-17.0.2esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/et.xpi -> firefox-17.0.2esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/eu.xpi -> firefox-17.0.2esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/fa.xpi -> firefox-17.0.2esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/fi.xpi -> firefox-17.0.2esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/fr.xpi -> firefox-17.0.2esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/fy-NL.xpi -> firefox-17.0.2esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ga-IE.xpi -> firefox-17.0.2esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/gd.xpi -> firefox-17.0.2esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/gl.xpi -> firefox-17.0.2esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/gu-IN.xpi -> firefox-17.0.2esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/he.xpi -> firefox-17.0.2esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/hi-IN.xpi -> firefox-17.0.2esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/hr.xpi -> firefox-17.0.2esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/hu.xpi -> firefox-17.0.2esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/hy-AM.xpi -> firefox-17.0.2esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/id.xpi -> firefox-17.0.2esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/is.xpi -> firefox-17.0.2esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/it.xpi -> firefox-17.0.2esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ja.xpi -> firefox-17.0.2esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/kk.xpi -> firefox-17.0.2esr-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/kn.xpi -> firefox-17.0.2esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ko.xpi -> firefox-17.0.2esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ku.xpi -> firefox-17.0.2esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/lg.xpi -> firefox-17.0.2esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/lt.xpi -> firefox-17.0.2esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/lv.xpi -> firefox-17.0.2esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/mai.xpi -> firefox-17.0.2esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/mk.xpi -> firefox-17.0.2esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ml.xpi -> firefox-17.0.2esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/mr.xpi -> firefox-17.0.2esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/nb-NO.xpi -> firefox-17.0.2esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/nl.xpi -> firefox-17.0.2esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/nn-NO.xpi -> firefox-17.0.2esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/nso.xpi -> firefox-17.0.2esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/or.xpi -> firefox-17.0.2esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/pa-IN.xpi -> firefox-17.0.2esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/pl.xpi -> firefox-17.0.2esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/pt-BR.xpi -> firefox-17.0.2esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/pt-PT.xpi -> firefox-17.0.2esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/rm.xpi -> firefox-17.0.2esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ro.xpi -> firefox-17.0.2esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ru.xpi -> firefox-17.0.2esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/si.xpi -> firefox-17.0.2esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/sk.xpi -> firefox-17.0.2esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/sl.xpi -> firefox-17.0.2esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/son.xpi -> firefox-17.0.2esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/sq.xpi -> firefox-17.0.2esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/sr.xpi -> firefox-17.0.2esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/sv-SE.xpi -> firefox-17.0.2esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ta.xpi -> firefox-17.0.2esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/ta-LK.xpi -> firefox-17.0.2esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/te.xpi -> firefox-17.0.2esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/th.xpi -> firefox-17.0.2esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/tr.xpi -> firefox-17.0.2esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/uk.xpi -> firefox-17.0.2esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/vi.xpi -> firefox-17.0.2esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/zh-CN.xpi -> firefox-17.0.2esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/zh-TW.xpi -> firefox-17.0.2esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.2esr/linux-i686/xpi/zu.xpi -> firefox-17.0.2esr-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.2esr/linux-x86_64/en-US/firefox-17.0.2esr.tar.bz2 -> firefox-bin_x86_64-17.0.2.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.2esr/linux-i686/en-US/firefox-17.0.2esr.tar.bz2 -> firefox-bin_i686-17.0.2.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d3807313d51465af63f0c4fe0cdc4a02 diff --git a/metadata/md5-cache/www-client/firefox-bin-17.0.3 b/metadata/md5-cache/www-client/firefox-bin-17.0.3 index b24d76f0d5b1..1b79453c01a0 100644 --- a/metadata/md5-cache/www-client/firefox-bin-17.0.3 +++ b/metadata/md5-cache/www-client/firefox-bin-17.0.3 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/af.xpi -> firefox-17.0.3esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ak.xpi -> firefox-17.0.3esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ar.xpi -> firefox-17.0.3esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/as.xpi -> firefox-17.0.3esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ast.xpi -> firefox-17.0.3esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/be.xpi -> firefox-17.0.3esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/bg.xpi -> firefox-17.0.3esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/bn-BD.xpi -> firefox-17.0.3esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/bn-IN.xpi -> firefox-17.0.3esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/br.xpi -> firefox-17.0.3esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/bs.xpi -> firefox-17.0.3esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ca.xpi -> firefox-17.0.3esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/cs.xpi -> firefox-17.0.3esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/csb.xpi -> firefox-17.0.3esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/cy.xpi -> firefox-17.0.3esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/da.xpi -> firefox-17.0.3esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/de.xpi -> firefox-17.0.3esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/el.xpi -> firefox-17.0.3esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/en-GB.xpi -> firefox-17.0.3esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/en-ZA.xpi -> firefox-17.0.3esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/eo.xpi -> firefox-17.0.3esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/es-AR.xpi -> firefox-17.0.3esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/es-CL.xpi -> firefox-17.0.3esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/es-ES.xpi -> firefox-17.0.3esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/es-MX.xpi -> firefox-17.0.3esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/et.xpi -> firefox-17.0.3esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/eu.xpi -> firefox-17.0.3esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/fa.xpi -> firefox-17.0.3esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/fi.xpi -> firefox-17.0.3esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/fr.xpi -> firefox-17.0.3esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/fy-NL.xpi -> firefox-17.0.3esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ga-IE.xpi -> firefox-17.0.3esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/gd.xpi -> firefox-17.0.3esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/gl.xpi -> firefox-17.0.3esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/gu-IN.xpi -> firefox-17.0.3esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/he.xpi -> firefox-17.0.3esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/hi-IN.xpi -> firefox-17.0.3esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/hr.xpi -> firefox-17.0.3esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/hu.xpi -> firefox-17.0.3esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/hy-AM.xpi -> firefox-17.0.3esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/id.xpi -> firefox-17.0.3esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/is.xpi -> firefox-17.0.3esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/it.xpi -> firefox-17.0.3esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ja.xpi -> firefox-17.0.3esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/kk.xpi -> firefox-17.0.3esr-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/kn.xpi -> firefox-17.0.3esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ko.xpi -> firefox-17.0.3esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ku.xpi -> firefox-17.0.3esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/lg.xpi -> firefox-17.0.3esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/lt.xpi -> firefox-17.0.3esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/lv.xpi -> firefox-17.0.3esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/mai.xpi -> firefox-17.0.3esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/mk.xpi -> firefox-17.0.3esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ml.xpi -> firefox-17.0.3esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/mr.xpi -> firefox-17.0.3esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/nb-NO.xpi -> firefox-17.0.3esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/nl.xpi -> firefox-17.0.3esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/nn-NO.xpi -> firefox-17.0.3esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/nso.xpi -> firefox-17.0.3esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/or.xpi -> firefox-17.0.3esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/pa-IN.xpi -> firefox-17.0.3esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/pl.xpi -> firefox-17.0.3esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/pt-BR.xpi -> firefox-17.0.3esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/pt-PT.xpi -> firefox-17.0.3esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/rm.xpi -> firefox-17.0.3esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ro.xpi -> firefox-17.0.3esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ru.xpi -> firefox-17.0.3esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/si.xpi -> firefox-17.0.3esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/sk.xpi -> firefox-17.0.3esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/sl.xpi -> firefox-17.0.3esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/son.xpi -> firefox-17.0.3esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/sq.xpi -> firefox-17.0.3esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/sr.xpi -> firefox-17.0.3esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/sv-SE.xpi -> firefox-17.0.3esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ta.xpi -> firefox-17.0.3esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/ta-LK.xpi -> firefox-17.0.3esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/te.xpi -> firefox-17.0.3esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/th.xpi -> firefox-17.0.3esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/tr.xpi -> firefox-17.0.3esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/uk.xpi -> firefox-17.0.3esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/vi.xpi -> firefox-17.0.3esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/zh-CN.xpi -> firefox-17.0.3esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/zh-TW.xpi -> firefox-17.0.3esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.3esr/linux-i686/xpi/zu.xpi -> firefox-17.0.3esr-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.3esr/linux-x86_64/en-US/firefox-17.0.3esr.tar.bz2 -> firefox-bin_x86_64-17.0.3.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.3esr/linux-i686/en-US/firefox-17.0.3esr.tar.bz2 -> firefox-bin_i686-17.0.3.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=4690d8fc39f75cb36ec7e9f45fb7c473 diff --git a/metadata/md5-cache/www-client/firefox-bin-17.0.4 b/metadata/md5-cache/www-client/firefox-bin-17.0.4 index 38db3f5d7df9..47e672ab70a7 100644 --- a/metadata/md5-cache/www-client/firefox-bin-17.0.4 +++ b/metadata/md5-cache/www-client/firefox-bin-17.0.4 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/af.xpi -> firefox-17.0.4esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ak.xpi -> firefox-17.0.4esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ar.xpi -> firefox-17.0.4esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/as.xpi -> firefox-17.0.4esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ast.xpi -> firefox-17.0.4esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/be.xpi -> firefox-17.0.4esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/bg.xpi -> firefox-17.0.4esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/bn-BD.xpi -> firefox-17.0.4esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/bn-IN.xpi -> firefox-17.0.4esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/br.xpi -> firefox-17.0.4esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/bs.xpi -> firefox-17.0.4esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ca.xpi -> firefox-17.0.4esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/cs.xpi -> firefox-17.0.4esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/csb.xpi -> firefox-17.0.4esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/cy.xpi -> firefox-17.0.4esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/da.xpi -> firefox-17.0.4esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/de.xpi -> firefox-17.0.4esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/el.xpi -> firefox-17.0.4esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/en-GB.xpi -> firefox-17.0.4esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/en-ZA.xpi -> firefox-17.0.4esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/eo.xpi -> firefox-17.0.4esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/es-AR.xpi -> firefox-17.0.4esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/es-CL.xpi -> firefox-17.0.4esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/es-ES.xpi -> firefox-17.0.4esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/es-MX.xpi -> firefox-17.0.4esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/et.xpi -> firefox-17.0.4esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/eu.xpi -> firefox-17.0.4esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/fa.xpi -> firefox-17.0.4esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/fi.xpi -> firefox-17.0.4esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/fr.xpi -> firefox-17.0.4esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/fy-NL.xpi -> firefox-17.0.4esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ga-IE.xpi -> firefox-17.0.4esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/gd.xpi -> firefox-17.0.4esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/gl.xpi -> firefox-17.0.4esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/gu-IN.xpi -> firefox-17.0.4esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/he.xpi -> firefox-17.0.4esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/hi-IN.xpi -> firefox-17.0.4esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/hr.xpi -> firefox-17.0.4esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/hu.xpi -> firefox-17.0.4esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/hy-AM.xpi -> firefox-17.0.4esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/id.xpi -> firefox-17.0.4esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/is.xpi -> firefox-17.0.4esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/it.xpi -> firefox-17.0.4esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ja.xpi -> firefox-17.0.4esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/kk.xpi -> firefox-17.0.4esr-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/kn.xpi -> firefox-17.0.4esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ko.xpi -> firefox-17.0.4esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ku.xpi -> firefox-17.0.4esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/lg.xpi -> firefox-17.0.4esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/lt.xpi -> firefox-17.0.4esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/lv.xpi -> firefox-17.0.4esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/mai.xpi -> firefox-17.0.4esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/mk.xpi -> firefox-17.0.4esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ml.xpi -> firefox-17.0.4esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/mr.xpi -> firefox-17.0.4esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/nb-NO.xpi -> firefox-17.0.4esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/nl.xpi -> firefox-17.0.4esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/nn-NO.xpi -> firefox-17.0.4esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/nso.xpi -> firefox-17.0.4esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/or.xpi -> firefox-17.0.4esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/pa-IN.xpi -> firefox-17.0.4esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/pl.xpi -> firefox-17.0.4esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/pt-BR.xpi -> firefox-17.0.4esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/pt-PT.xpi -> firefox-17.0.4esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/rm.xpi -> firefox-17.0.4esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ro.xpi -> firefox-17.0.4esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ru.xpi -> firefox-17.0.4esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/si.xpi -> firefox-17.0.4esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/sk.xpi -> firefox-17.0.4esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/sl.xpi -> firefox-17.0.4esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/son.xpi -> firefox-17.0.4esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/sq.xpi -> firefox-17.0.4esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/sr.xpi -> firefox-17.0.4esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/sv-SE.xpi -> firefox-17.0.4esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ta.xpi -> firefox-17.0.4esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/ta-LK.xpi -> firefox-17.0.4esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/te.xpi -> firefox-17.0.4esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/th.xpi -> firefox-17.0.4esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/tr.xpi -> firefox-17.0.4esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/uk.xpi -> firefox-17.0.4esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/vi.xpi -> firefox-17.0.4esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/zh-CN.xpi -> firefox-17.0.4esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/zh-TW.xpi -> firefox-17.0.4esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.4esr/linux-i686/xpi/zu.xpi -> firefox-17.0.4esr-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.4esr/linux-x86_64/en-US/firefox-17.0.4esr.tar.bz2 -> firefox-bin_x86_64-17.0.4.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.4esr/linux-i686/en-US/firefox-17.0.4esr.tar.bz2 -> firefox-bin_i686-17.0.4.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=9c26d488ab7de57ca0379b4dbd8bda52 diff --git a/metadata/md5-cache/www-client/firefox-bin-17.0.5 b/metadata/md5-cache/www-client/firefox-bin-17.0.5-r1 similarity index 99% rename from metadata/md5-cache/www-client/firefox-bin-17.0.5 rename to metadata/md5-cache/www-client/firefox-bin-17.0.5-r1 index 65473c143c8e..c5f22993343e 100644 --- a/metadata/md5-cache/www-client/firefox-bin-17.0.5 +++ b/metadata/md5-cache/www-client/firefox-bin-17.0.5-r1 @@ -4,11 +4,11 @@ DESCRIPTION=Firefox Web Browser EAPI=4 HOMEPAGE=http://www.mozilla.com/firefox IUSE=startup-notification linguas_af linguas_ak linguas_ar linguas_as linguas_ast linguas_be linguas_bg linguas_bn_BD linguas_bn_IN linguas_br linguas_bs linguas_ca linguas_cs linguas_csb linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_en_ZA linguas_eo linguas_es_AR linguas_es_CL linguas_es_ES linguas_es_MX linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_kk linguas_kn linguas_ko linguas_ku linguas_lg linguas_lt linguas_lv linguas_mai linguas_mk linguas_ml linguas_mr linguas_nb_NO linguas_nl linguas_nn_NO linguas_nso linguas_or linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_son linguas_sq linguas_sr linguas_sv_SE linguas_ta linguas_ta_LK linguas_te linguas_th linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW linguas_zu -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=-* amd64 x86 LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-libs/libXmu >=x11-libs/gtk+-2.2:2 >=media-libs/alsa-lib-1.0.16 !net-libs/libproxy[spidermonkey] RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/af.xpi -> firefox-17.0.5esr-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ak.xpi -> firefox-17.0.5esr-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ar.xpi -> firefox-17.0.5esr-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/as.xpi -> firefox-17.0.5esr-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ast.xpi -> firefox-17.0.5esr-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/be.xpi -> firefox-17.0.5esr-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/bg.xpi -> firefox-17.0.5esr-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/bn-BD.xpi -> firefox-17.0.5esr-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/bn-IN.xpi -> firefox-17.0.5esr-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/br.xpi -> firefox-17.0.5esr-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/bs.xpi -> firefox-17.0.5esr-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ca.xpi -> firefox-17.0.5esr-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/cs.xpi -> firefox-17.0.5esr-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/csb.xpi -> firefox-17.0.5esr-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/cy.xpi -> firefox-17.0.5esr-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/da.xpi -> firefox-17.0.5esr-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/de.xpi -> firefox-17.0.5esr-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/el.xpi -> firefox-17.0.5esr-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/en-GB.xpi -> firefox-17.0.5esr-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/en-ZA.xpi -> firefox-17.0.5esr-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/eo.xpi -> firefox-17.0.5esr-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/es-AR.xpi -> firefox-17.0.5esr-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/es-CL.xpi -> firefox-17.0.5esr-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/es-ES.xpi -> firefox-17.0.5esr-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/es-MX.xpi -> firefox-17.0.5esr-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/et.xpi -> firefox-17.0.5esr-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/eu.xpi -> firefox-17.0.5esr-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/fa.xpi -> firefox-17.0.5esr-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/fi.xpi -> firefox-17.0.5esr-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/fr.xpi -> firefox-17.0.5esr-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/fy-NL.xpi -> firefox-17.0.5esr-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ga-IE.xpi -> firefox-17.0.5esr-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/gd.xpi -> firefox-17.0.5esr-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/gl.xpi -> firefox-17.0.5esr-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/gu-IN.xpi -> firefox-17.0.5esr-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/he.xpi -> firefox-17.0.5esr-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/hi-IN.xpi -> firefox-17.0.5esr-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/hr.xpi -> firefox-17.0.5esr-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/hu.xpi -> firefox-17.0.5esr-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/hy-AM.xpi -> firefox-17.0.5esr-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/id.xpi -> firefox-17.0.5esr-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/is.xpi -> firefox-17.0.5esr-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/it.xpi -> firefox-17.0.5esr-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ja.xpi -> firefox-17.0.5esr-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/kk.xpi -> firefox-17.0.5esr-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/kn.xpi -> firefox-17.0.5esr-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ko.xpi -> firefox-17.0.5esr-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ku.xpi -> firefox-17.0.5esr-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/lg.xpi -> firefox-17.0.5esr-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/lt.xpi -> firefox-17.0.5esr-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/lv.xpi -> firefox-17.0.5esr-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/mai.xpi -> firefox-17.0.5esr-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/mk.xpi -> firefox-17.0.5esr-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ml.xpi -> firefox-17.0.5esr-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/mr.xpi -> firefox-17.0.5esr-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/nb-NO.xpi -> firefox-17.0.5esr-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/nl.xpi -> firefox-17.0.5esr-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/nn-NO.xpi -> firefox-17.0.5esr-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/nso.xpi -> firefox-17.0.5esr-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/or.xpi -> firefox-17.0.5esr-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/pa-IN.xpi -> firefox-17.0.5esr-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/pl.xpi -> firefox-17.0.5esr-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/pt-BR.xpi -> firefox-17.0.5esr-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/pt-PT.xpi -> firefox-17.0.5esr-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/rm.xpi -> firefox-17.0.5esr-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ro.xpi -> firefox-17.0.5esr-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ru.xpi -> firefox-17.0.5esr-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/si.xpi -> firefox-17.0.5esr-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/sk.xpi -> firefox-17.0.5esr-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/sl.xpi -> firefox-17.0.5esr-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/son.xpi -> firefox-17.0.5esr-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/sq.xpi -> firefox-17.0.5esr-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/sr.xpi -> firefox-17.0.5esr-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/sv-SE.xpi -> firefox-17.0.5esr-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ta.xpi -> firefox-17.0.5esr-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/ta-LK.xpi -> firefox-17.0.5esr-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/te.xpi -> firefox-17.0.5esr-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/th.xpi -> firefox-17.0.5esr-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/tr.xpi -> firefox-17.0.5esr-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/uk.xpi -> firefox-17.0.5esr-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/vi.xpi -> firefox-17.0.5esr-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/zh-CN.xpi -> firefox-17.0.5esr-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/zh-TW.xpi -> firefox-17.0.5esr-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//17.0.5esr/linux-i686/xpi/zu.xpi -> firefox-17.0.5esr-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.5esr/linux-x86_64/en-US/firefox-17.0.5esr.tar.bz2 -> firefox-bin_x86_64-17.0.5.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/17.0.5esr/linux-i686/en-US/firefox-17.0.5esr.tar.bz2 -> firefox-bin_i686-17.0.5.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=cb42f074b2b87914c44cbee3bf248f92 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=c55c4297458e4876fb9645eee5d56d51 diff --git a/metadata/md5-cache/www-client/firefox-bin-18.0.2 b/metadata/md5-cache/www-client/firefox-bin-18.0.2 index e9543b435fb6..617e12a3d8b4 100644 --- a/metadata/md5-cache/www-client/firefox-bin-18.0.2 +++ b/metadata/md5-cache/www-client/firefox-bin-18.0.2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/af.xpi -> firefox-18.0.2-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ak.xpi -> firefox-18.0.2-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ar.xpi -> firefox-18.0.2-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/as.xpi -> firefox-18.0.2-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ast.xpi -> firefox-18.0.2-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/be.xpi -> firefox-18.0.2-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/bg.xpi -> firefox-18.0.2-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/bn-BD.xpi -> firefox-18.0.2-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/bn-IN.xpi -> firefox-18.0.2-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/br.xpi -> firefox-18.0.2-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/bs.xpi -> firefox-18.0.2-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ca.xpi -> firefox-18.0.2-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/cs.xpi -> firefox-18.0.2-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/csb.xpi -> firefox-18.0.2-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/cy.xpi -> firefox-18.0.2-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/da.xpi -> firefox-18.0.2-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/de.xpi -> firefox-18.0.2-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/el.xpi -> firefox-18.0.2-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/en-GB.xpi -> firefox-18.0.2-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/en-ZA.xpi -> firefox-18.0.2-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/eo.xpi -> firefox-18.0.2-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/es-AR.xpi -> firefox-18.0.2-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/es-CL.xpi -> firefox-18.0.2-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/es-ES.xpi -> firefox-18.0.2-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/es-MX.xpi -> firefox-18.0.2-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/et.xpi -> firefox-18.0.2-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/eu.xpi -> firefox-18.0.2-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/fa.xpi -> firefox-18.0.2-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/fi.xpi -> firefox-18.0.2-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/fr.xpi -> firefox-18.0.2-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/fy-NL.xpi -> firefox-18.0.2-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ga-IE.xpi -> firefox-18.0.2-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/gd.xpi -> firefox-18.0.2-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/gl.xpi -> firefox-18.0.2-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/gu-IN.xpi -> firefox-18.0.2-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/he.xpi -> firefox-18.0.2-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/hi-IN.xpi -> firefox-18.0.2-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/hr.xpi -> firefox-18.0.2-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/hu.xpi -> firefox-18.0.2-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/hy-AM.xpi -> firefox-18.0.2-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/id.xpi -> firefox-18.0.2-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/is.xpi -> firefox-18.0.2-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/it.xpi -> firefox-18.0.2-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ja.xpi -> firefox-18.0.2-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/kk.xpi -> firefox-18.0.2-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/kn.xpi -> firefox-18.0.2-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ko.xpi -> firefox-18.0.2-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ku.xpi -> firefox-18.0.2-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/lg.xpi -> firefox-18.0.2-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/lt.xpi -> firefox-18.0.2-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/lv.xpi -> firefox-18.0.2-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/mai.xpi -> firefox-18.0.2-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/mk.xpi -> firefox-18.0.2-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ml.xpi -> firefox-18.0.2-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/mr.xpi -> firefox-18.0.2-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/nb-NO.xpi -> firefox-18.0.2-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/nl.xpi -> firefox-18.0.2-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/nn-NO.xpi -> firefox-18.0.2-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/nso.xpi -> firefox-18.0.2-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/or.xpi -> firefox-18.0.2-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/pa-IN.xpi -> firefox-18.0.2-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/pl.xpi -> firefox-18.0.2-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/pt-BR.xpi -> firefox-18.0.2-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/pt-PT.xpi -> firefox-18.0.2-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/rm.xpi -> firefox-18.0.2-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ro.xpi -> firefox-18.0.2-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ru.xpi -> firefox-18.0.2-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/si.xpi -> firefox-18.0.2-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/sk.xpi -> firefox-18.0.2-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/sl.xpi -> firefox-18.0.2-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/son.xpi -> firefox-18.0.2-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/sq.xpi -> firefox-18.0.2-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/sr.xpi -> firefox-18.0.2-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/sv-SE.xpi -> firefox-18.0.2-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ta.xpi -> firefox-18.0.2-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/ta-LK.xpi -> firefox-18.0.2-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/te.xpi -> firefox-18.0.2-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/th.xpi -> firefox-18.0.2-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/tr.xpi -> firefox-18.0.2-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/uk.xpi -> firefox-18.0.2-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/vi.xpi -> firefox-18.0.2-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/zh-CN.xpi -> firefox-18.0.2-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/zh-TW.xpi -> firefox-18.0.2-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//18.0.2/linux-i686/xpi/zu.xpi -> firefox-18.0.2-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/18.0.2/linux-x86_64/en-US/firefox-18.0.2.tar.bz2 -> firefox-bin_x86_64-18.0.2.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/18.0.2/linux-i686/en-US/firefox-18.0.2.tar.bz2 -> firefox-bin_i686-18.0.2.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=c066ce73ad5d0e69e83c3dfe3a07d826 diff --git a/metadata/md5-cache/www-client/firefox-bin-19.0.2 b/metadata/md5-cache/www-client/firefox-bin-19.0.2 index ba8a56a962c5..d139533669b7 100644 --- a/metadata/md5-cache/www-client/firefox-bin-19.0.2 +++ b/metadata/md5-cache/www-client/firefox-bin-19.0.2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/af.xpi -> firefox-19.0.2-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ak.xpi -> firefox-19.0.2-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ar.xpi -> firefox-19.0.2-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/as.xpi -> firefox-19.0.2-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ast.xpi -> firefox-19.0.2-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/be.xpi -> firefox-19.0.2-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/bg.xpi -> firefox-19.0.2-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/bn-BD.xpi -> firefox-19.0.2-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/bn-IN.xpi -> firefox-19.0.2-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/br.xpi -> firefox-19.0.2-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/bs.xpi -> firefox-19.0.2-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ca.xpi -> firefox-19.0.2-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/cs.xpi -> firefox-19.0.2-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/csb.xpi -> firefox-19.0.2-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/cy.xpi -> firefox-19.0.2-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/da.xpi -> firefox-19.0.2-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/de.xpi -> firefox-19.0.2-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/el.xpi -> firefox-19.0.2-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/en-GB.xpi -> firefox-19.0.2-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/en-ZA.xpi -> firefox-19.0.2-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/eo.xpi -> firefox-19.0.2-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/es-AR.xpi -> firefox-19.0.2-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/es-CL.xpi -> firefox-19.0.2-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/es-ES.xpi -> firefox-19.0.2-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/es-MX.xpi -> firefox-19.0.2-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/et.xpi -> firefox-19.0.2-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/eu.xpi -> firefox-19.0.2-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/fa.xpi -> firefox-19.0.2-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/fi.xpi -> firefox-19.0.2-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/fr.xpi -> firefox-19.0.2-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/fy-NL.xpi -> firefox-19.0.2-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ga-IE.xpi -> firefox-19.0.2-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/gd.xpi -> firefox-19.0.2-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/gl.xpi -> firefox-19.0.2-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/gu-IN.xpi -> firefox-19.0.2-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/he.xpi -> firefox-19.0.2-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/hi-IN.xpi -> firefox-19.0.2-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/hr.xpi -> firefox-19.0.2-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/hu.xpi -> firefox-19.0.2-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/hy-AM.xpi -> firefox-19.0.2-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/id.xpi -> firefox-19.0.2-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/is.xpi -> firefox-19.0.2-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/it.xpi -> firefox-19.0.2-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ja.xpi -> firefox-19.0.2-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/kk.xpi -> firefox-19.0.2-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/kn.xpi -> firefox-19.0.2-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ko.xpi -> firefox-19.0.2-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ku.xpi -> firefox-19.0.2-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/lg.xpi -> firefox-19.0.2-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/lt.xpi -> firefox-19.0.2-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/lv.xpi -> firefox-19.0.2-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/mai.xpi -> firefox-19.0.2-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/mk.xpi -> firefox-19.0.2-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ml.xpi -> firefox-19.0.2-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/mr.xpi -> firefox-19.0.2-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/nb-NO.xpi -> firefox-19.0.2-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/nl.xpi -> firefox-19.0.2-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/nn-NO.xpi -> firefox-19.0.2-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/nso.xpi -> firefox-19.0.2-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/or.xpi -> firefox-19.0.2-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/pa-IN.xpi -> firefox-19.0.2-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/pl.xpi -> firefox-19.0.2-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/pt-BR.xpi -> firefox-19.0.2-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/pt-PT.xpi -> firefox-19.0.2-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/rm.xpi -> firefox-19.0.2-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ro.xpi -> firefox-19.0.2-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ru.xpi -> firefox-19.0.2-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/si.xpi -> firefox-19.0.2-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/sk.xpi -> firefox-19.0.2-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/sl.xpi -> firefox-19.0.2-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/son.xpi -> firefox-19.0.2-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/sq.xpi -> firefox-19.0.2-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/sr.xpi -> firefox-19.0.2-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/sv-SE.xpi -> firefox-19.0.2-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ta.xpi -> firefox-19.0.2-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/ta-LK.xpi -> firefox-19.0.2-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/te.xpi -> firefox-19.0.2-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/th.xpi -> firefox-19.0.2-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/tr.xpi -> firefox-19.0.2-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/uk.xpi -> firefox-19.0.2-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/vi.xpi -> firefox-19.0.2-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/zh-CN.xpi -> firefox-19.0.2-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/zh-TW.xpi -> firefox-19.0.2-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//19.0.2/linux-i686/xpi/zu.xpi -> firefox-19.0.2-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/19.0.2/linux-x86_64/en-US/firefox-19.0.2.tar.bz2 -> firefox-bin_x86_64-19.0.2.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/19.0.2/linux-i686/en-US/firefox-19.0.2.tar.bz2 -> firefox-bin_i686-19.0.2.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=55f463c0e8da8bc33db226cf16ded17c diff --git a/metadata/md5-cache/www-client/firefox-bin-20.0 b/metadata/md5-cache/www-client/firefox-bin-20.0-r1 similarity index 99% rename from metadata/md5-cache/www-client/firefox-bin-20.0 rename to metadata/md5-cache/www-client/firefox-bin-20.0-r1 index b1e40f4e472c..a8bb5c403c77 100644 --- a/metadata/md5-cache/www-client/firefox-bin-20.0 +++ b/metadata/md5-cache/www-client/firefox-bin-20.0-r1 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x1 RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/af.xpi -> firefox-20.0-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ak.xpi -> firefox-20.0-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ar.xpi -> firefox-20.0-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/as.xpi -> firefox-20.0-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ast.xpi -> firefox-20.0-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/be.xpi -> firefox-20.0-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/bg.xpi -> firefox-20.0-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/bn-BD.xpi -> firefox-20.0-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/bn-IN.xpi -> firefox-20.0-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/br.xpi -> firefox-20.0-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/bs.xpi -> firefox-20.0-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ca.xpi -> firefox-20.0-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/cs.xpi -> firefox-20.0-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/csb.xpi -> firefox-20.0-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/cy.xpi -> firefox-20.0-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/da.xpi -> firefox-20.0-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/de.xpi -> firefox-20.0-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/el.xpi -> firefox-20.0-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/en-GB.xpi -> firefox-20.0-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/en-ZA.xpi -> firefox-20.0-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/eo.xpi -> firefox-20.0-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/es-AR.xpi -> firefox-20.0-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/es-CL.xpi -> firefox-20.0-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/es-ES.xpi -> firefox-20.0-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/es-MX.xpi -> firefox-20.0-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/et.xpi -> firefox-20.0-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/eu.xpi -> firefox-20.0-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/fa.xpi -> firefox-20.0-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/fi.xpi -> firefox-20.0-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/fr.xpi -> firefox-20.0-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/fy-NL.xpi -> firefox-20.0-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ga-IE.xpi -> firefox-20.0-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/gd.xpi -> firefox-20.0-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/gl.xpi -> firefox-20.0-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/gu-IN.xpi -> firefox-20.0-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/he.xpi -> firefox-20.0-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/hi-IN.xpi -> firefox-20.0-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/hr.xpi -> firefox-20.0-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/hu.xpi -> firefox-20.0-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/hy-AM.xpi -> firefox-20.0-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/id.xpi -> firefox-20.0-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/is.xpi -> firefox-20.0-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/it.xpi -> firefox-20.0-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ja.xpi -> firefox-20.0-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/kk.xpi -> firefox-20.0-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/kn.xpi -> firefox-20.0-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ko.xpi -> firefox-20.0-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ku.xpi -> firefox-20.0-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/lg.xpi -> firefox-20.0-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/lt.xpi -> firefox-20.0-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/lv.xpi -> firefox-20.0-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/mai.xpi -> firefox-20.0-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/mk.xpi -> firefox-20.0-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ml.xpi -> firefox-20.0-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/mr.xpi -> firefox-20.0-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/nb-NO.xpi -> firefox-20.0-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/nl.xpi -> firefox-20.0-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/nn-NO.xpi -> firefox-20.0-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/nso.xpi -> firefox-20.0-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/or.xpi -> firefox-20.0-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/pa-IN.xpi -> firefox-20.0-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/pl.xpi -> firefox-20.0-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/pt-BR.xpi -> firefox-20.0-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/pt-PT.xpi -> firefox-20.0-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/rm.xpi -> firefox-20.0-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ro.xpi -> firefox-20.0-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ru.xpi -> firefox-20.0-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/si.xpi -> firefox-20.0-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sk.xpi -> firefox-20.0-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sl.xpi -> firefox-20.0-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/son.xpi -> firefox-20.0-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sq.xpi -> firefox-20.0-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sr.xpi -> firefox-20.0-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sv-SE.xpi -> firefox-20.0-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ta.xpi -> firefox-20.0-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ta-LK.xpi -> firefox-20.0-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/te.xpi -> firefox-20.0-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/th.xpi -> firefox-20.0-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/tr.xpi -> firefox-20.0-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/uk.xpi -> firefox-20.0-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/vi.xpi -> firefox-20.0-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/zh-CN.xpi -> firefox-20.0-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/zh-TW.xpi -> firefox-20.0-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/zu.xpi -> firefox-20.0-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/20.0/linux-x86_64/en-US/firefox-20.0.tar.bz2 -> firefox-bin_x86_64-20.0.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/20.0/linux-i686/en-US/firefox-20.0.tar.bz2 -> firefox-bin_i686-20.0.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7f47c0360a33bda15d6c722f7c561d41 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=630eeb90d817547df205a5b857697f48 diff --git a/metadata/md5-cache/www-client/firefox-bin-20.0-r2 b/metadata/md5-cache/www-client/firefox-bin-20.0-r2 new file mode 100644 index 000000000000..bb3a948a46a8 --- /dev/null +++ b/metadata/md5-cache/www-client/firefox-bin-20.0-r2 @@ -0,0 +1,14 @@ +DEFINED_PHASES=install postinst postrm preinst unpack +DEPEND=app-arch/unzip >=sys-apps/sed-4 app-arch/unzip +DESCRIPTION=Firefox Web Browser +EAPI=4 +HOMEPAGE=http://www.mozilla.com/firefox +IUSE=startup-notification linguas_af linguas_ak linguas_ar linguas_as linguas_ast linguas_be linguas_bg linguas_bn_BD linguas_bn_IN linguas_br linguas_bs linguas_ca linguas_cs linguas_csb linguas_cy linguas_da linguas_de linguas_el linguas_en_GB linguas_en_ZA linguas_eo linguas_es_AR linguas_es_CL linguas_es_ES linguas_es_MX linguas_et linguas_eu linguas_fa linguas_fi linguas_fr linguas_fy_NL linguas_ga_IE linguas_gd linguas_gl linguas_gu_IN linguas_he linguas_hi_IN linguas_hr linguas_hu linguas_hy_AM linguas_id linguas_is linguas_it linguas_ja linguas_kk linguas_kn linguas_ko linguas_ku linguas_lg linguas_lt linguas_lv linguas_mai linguas_mk linguas_ml linguas_mr linguas_nb_NO linguas_nl linguas_nn_NO linguas_nso linguas_or linguas_pa_IN linguas_pl linguas_pt_BR linguas_pt_PT linguas_rm linguas_ro linguas_ru linguas_si linguas_sk linguas_sl linguas_son linguas_sq linguas_sr linguas_sv_SE linguas_ta linguas_ta_LK linguas_te linguas_th linguas_tr linguas_uk linguas_vi linguas_zh_CN linguas_zh_TW linguas_zu +KEYWORDS=-* ~amd64 ~x86 +LICENSE=MPL-2.0 GPL-2 LGPL-2.1 +RDEPEND=dev-libs/dbus-glib virtual/freedesktop-icon-theme x11-libs/libXrender x11-libs/libXt x11-libs/libXmu >=x11-libs/gtk+-2.2:2 >=media-libs/alsa-lib-1.0.16 !net-libs/libproxy[spidermonkey] +RESTRICT=strip mirror binchecks +SLOT=0 +SRC_URI=linguas_af? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/af.xpi -> firefox-20.0-af.xpi ) linguas_ak? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ak.xpi -> firefox-20.0-ak.xpi ) linguas_ar? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ar.xpi -> firefox-20.0-ar.xpi ) linguas_as? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/as.xpi -> firefox-20.0-as.xpi ) linguas_ast? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ast.xpi -> firefox-20.0-ast.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/be.xpi -> firefox-20.0-be.xpi ) linguas_bg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/bg.xpi -> firefox-20.0-bg.xpi ) linguas_bn_BD? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/bn-BD.xpi -> firefox-20.0-bn-BD.xpi ) linguas_bn_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/bn-IN.xpi -> firefox-20.0-bn-IN.xpi ) linguas_br? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/br.xpi -> firefox-20.0-br.xpi ) linguas_bs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/bs.xpi -> firefox-20.0-bs.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ca.xpi -> firefox-20.0-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/cs.xpi -> firefox-20.0-cs.xpi ) linguas_csb? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/csb.xpi -> firefox-20.0-csb.xpi ) linguas_cy? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/cy.xpi -> firefox-20.0-cy.xpi ) linguas_da? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/da.xpi -> firefox-20.0-da.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/de.xpi -> firefox-20.0-de.xpi ) linguas_el? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/el.xpi -> firefox-20.0-el.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/en-GB.xpi -> firefox-20.0-en-GB.xpi ) linguas_en_ZA? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/en-ZA.xpi -> firefox-20.0-en-ZA.xpi ) linguas_eo? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/eo.xpi -> firefox-20.0-eo.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/es-AR.xpi -> firefox-20.0-es-AR.xpi ) linguas_es_CL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/es-CL.xpi -> firefox-20.0-es-CL.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/es-ES.xpi -> firefox-20.0-es-ES.xpi ) linguas_es_MX? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/es-MX.xpi -> firefox-20.0-es-MX.xpi ) linguas_et? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/et.xpi -> firefox-20.0-et.xpi ) linguas_eu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/eu.xpi -> firefox-20.0-eu.xpi ) linguas_fa? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/fa.xpi -> firefox-20.0-fa.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/fi.xpi -> firefox-20.0-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/fr.xpi -> firefox-20.0-fr.xpi ) linguas_fy_NL? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/fy-NL.xpi -> firefox-20.0-fy-NL.xpi ) linguas_ga_IE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ga-IE.xpi -> firefox-20.0-ga-IE.xpi ) linguas_gd? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/gd.xpi -> firefox-20.0-gd.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/gl.xpi -> firefox-20.0-gl.xpi ) linguas_gu_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/gu-IN.xpi -> firefox-20.0-gu-IN.xpi ) linguas_he? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/he.xpi -> firefox-20.0-he.xpi ) linguas_hi_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/hi-IN.xpi -> firefox-20.0-hi-IN.xpi ) linguas_hr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/hr.xpi -> firefox-20.0-hr.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/hu.xpi -> firefox-20.0-hu.xpi ) linguas_hy_AM? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/hy-AM.xpi -> firefox-20.0-hy-AM.xpi ) linguas_id? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/id.xpi -> firefox-20.0-id.xpi ) linguas_is? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/is.xpi -> firefox-20.0-is.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/it.xpi -> firefox-20.0-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ja.xpi -> firefox-20.0-ja.xpi ) linguas_kk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/kk.xpi -> firefox-20.0-kk.xpi ) linguas_kn? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/kn.xpi -> firefox-20.0-kn.xpi ) linguas_ko? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ko.xpi -> firefox-20.0-ko.xpi ) linguas_ku? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ku.xpi -> firefox-20.0-ku.xpi ) linguas_lg? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/lg.xpi -> firefox-20.0-lg.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/lt.xpi -> firefox-20.0-lt.xpi ) linguas_lv? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/lv.xpi -> firefox-20.0-lv.xpi ) linguas_mai? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/mai.xpi -> firefox-20.0-mai.xpi ) linguas_mk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/mk.xpi -> firefox-20.0-mk.xpi ) linguas_ml? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ml.xpi -> firefox-20.0-ml.xpi ) linguas_mr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/mr.xpi -> firefox-20.0-mr.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/nb-NO.xpi -> firefox-20.0-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/nl.xpi -> firefox-20.0-nl.xpi ) linguas_nn_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/nn-NO.xpi -> firefox-20.0-nn-NO.xpi ) linguas_nso? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/nso.xpi -> firefox-20.0-nso.xpi ) linguas_or? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/or.xpi -> firefox-20.0-or.xpi ) linguas_pa_IN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/pa-IN.xpi -> firefox-20.0-pa-IN.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/pl.xpi -> firefox-20.0-pl.xpi ) linguas_pt_BR? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/pt-BR.xpi -> firefox-20.0-pt-BR.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/pt-PT.xpi -> firefox-20.0-pt-PT.xpi ) linguas_rm? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/rm.xpi -> firefox-20.0-rm.xpi ) linguas_ro? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ro.xpi -> firefox-20.0-ro.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ru.xpi -> firefox-20.0-ru.xpi ) linguas_si? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/si.xpi -> firefox-20.0-si.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sk.xpi -> firefox-20.0-sk.xpi ) linguas_sl? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sl.xpi -> firefox-20.0-sl.xpi ) linguas_son? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/son.xpi -> firefox-20.0-son.xpi ) linguas_sq? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sq.xpi -> firefox-20.0-sq.xpi ) linguas_sr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sr.xpi -> firefox-20.0-sr.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/sv-SE.xpi -> firefox-20.0-sv-SE.xpi ) linguas_ta? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ta.xpi -> firefox-20.0-ta.xpi ) linguas_ta_LK? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/ta-LK.xpi -> firefox-20.0-ta-LK.xpi ) linguas_te? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/te.xpi -> firefox-20.0-te.xpi ) linguas_th? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/th.xpi -> firefox-20.0-th.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/tr.xpi -> firefox-20.0-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/uk.xpi -> firefox-20.0-uk.xpi ) linguas_vi? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/vi.xpi -> firefox-20.0-vi.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/zh-CN.xpi -> firefox-20.0-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/zh-TW.xpi -> firefox-20.0-zh-TW.xpi ) linguas_zu? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases//20.0/linux-i686/xpi/zu.xpi -> firefox-20.0-zu.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/20.0/linux-x86_64/en-US/firefox-20.0.tar.bz2 -> firefox-bin_x86_64-20.0.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/20.0/linux-i686/en-US/firefox-20.0.tar.bz2 -> firefox-bin_i686-20.0.tar.bz2 ) +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=4ee18355a3635f7e0e3e525b4f365125 diff --git a/metadata/md5-cache/www-client/google-chrome-26.0.1410.43_p189671 b/metadata/md5-cache/www-client/google-chrome-26.0.1410.63_p192696 similarity index 81% rename from metadata/md5-cache/www-client/google-chrome-26.0.1410.43_p189671 rename to metadata/md5-cache/www-client/google-chrome-26.0.1410.63_p192696 index 78db64b49948..86b4f3254c9e 100644 --- a/metadata/md5-cache/www-client/google-chrome-26.0.1410.43_p189671 +++ b/metadata/md5-cache/www-client/google-chrome-26.0.1410.63_p192696 @@ -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[-nocxx] >=sys-devel/gcc-4.4.0[cxx] ) x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 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 !www-client/google-chrome: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_26.0.1410.43-r189671_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_26.0.1410.43-r189671_i386.deb ) -_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=d656f9fbb3cd20eecc4b715d8e983eb5 +SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_26.0.1410.63-r192696_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_26.0.1410.63-r192696_i386.deb ) +_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=86fb56a43f80a798738be9f3141c8ab1 diff --git a/metadata/md5-cache/www-client/google-chrome-27.0.1453.12_alpha191631 b/metadata/md5-cache/www-client/google-chrome-27.0.1453.12_alpha191631 index 79dcb91f4de1..796eeb1b5e50 100644 --- a/metadata/md5-cache/www-client/google-chrome-27.0.1453.12_alpha191631 +++ b/metadata/md5-cache/www-client/google-chrome-27.0.1453.12_alpha191631 @@ -10,5 +10,5 @@ RDEPEND=app-arch/bzip2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev- 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_27.0.1453.12-r191631_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-unstable/google-chrome-unstable_27.0.1453.12-r191631_i386.deb ) -_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=5ebcd91a511e067f68a21c348fc2f90b diff --git a/metadata/md5-cache/www-client/google-chrome-27.0.1453.15_beta191758 b/metadata/md5-cache/www-client/google-chrome-27.0.1453.15_beta191758 index eca59e2d676f..84bfde7345d9 100644 --- a/metadata/md5-cache/www-client/google-chrome-27.0.1453.15_beta191758 +++ b/metadata/md5-cache/www-client/google-chrome-27.0.1453.15_beta191758 @@ -10,5 +10,5 @@ RDEPEND=app-arch/bzip2 app-misc/ca-certificates dev-libs/atk dev-libs/expat dev- RESTRICT=bindist mirror strip SLOT=beta SRC_URI=amd64? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_27.0.1453.15-r191758_amd64.deb ) x86? ( http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-beta/google-chrome-beta_27.0.1453.15-r191758_i386.deb ) -_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=chromium 10deb47dfb7657ba0fc7814da0bad35e eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=16977d098b6ec88c8b4d81e7fbbd01ed diff --git a/metadata/md5-cache/www-client/midori-0.4.8 b/metadata/md5-cache/www-client/midori-0.4.8 deleted file mode 100644 index 0fcce9d7fa2b..000000000000 --- a/metadata/md5-cache/www-client/midori-0.4.8 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-db/sqlite-3.6.19:3 >=dev-libs/glib-2.22 dev-libs/libxml2 >=net-libs/libsoup-2.34:2.4 x11-libs/libXScrnSaver deprecated? ( net-libs/webkit-gtk:2 x11-libs/gtk+:2 unique? ( dev-libs/libunique:1 ) ) !deprecated? ( >=app-crypt/gcr-3 net-libs/webkit-gtk:3 x11-libs/gtk+:3 unique? ( dev-libs/libunique:3 ) ) gnome? ( >=net-libs/libsoup-gnome-2.34:2.4 ) libnotify? ( >=x11-libs/libnotify-0.7 ) zeitgeist? ( >=dev-libs/libzeitgeist-0.3.14 ) || ( dev-lang/python:2.7 ) || ( dev-lang/vala:0.20 dev-lang/vala:0.18 dev-lang/vala:0.16 dev-lang/vala:0.14 ) dev-util/intltool gnome-base/librsvg doc? ( dev-util/gtk-doc ) nls? ( sys-devel/gettext ) >=sys-apps/sed-4 dev-lang/python !dev-lang/python[-threads] -DESCRIPTION=A lightweight web browser based on WebKitGTK+ -EAPI=5 -HOMEPAGE=http://twotoasts.de/index.php/midori/ -IUSE=+deprecated doc gnome libnotify nls +unique zeitgeist -KEYWORDS=~amd64 ~arm ~ppc ~x86 ~x86-fbsd -LICENSE=LGPL-2.1 MIT -RDEPEND=>=dev-db/sqlite-3.6.19:3 >=dev-libs/glib-2.22 dev-libs/libxml2 >=net-libs/libsoup-2.34:2.4 x11-libs/libXScrnSaver deprecated? ( net-libs/webkit-gtk:2 x11-libs/gtk+:2 unique? ( dev-libs/libunique:1 ) ) !deprecated? ( >=app-crypt/gcr-3 net-libs/webkit-gtk:3 x11-libs/gtk+:3 unique? ( dev-libs/libunique:3 ) ) gnome? ( >=net-libs/libsoup-gnome-2.34:2.4 ) libnotify? ( >=x11-libs/libnotify-0.7 ) zeitgeist? ( >=dev-libs/libzeitgeist-0.3.14 ) -SLOT=0 -SRC_URI=mirror://xfce/src/apps/midori/0.4/midori-0.4.8.tar.bz2 -_eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca waf-utils 681b3e9181d1a20ad8d0c186333ddcf7 -_md5_=48fc08782a70a05e06f5ca14e9bc4406 diff --git a/metadata/md5-cache/www-client/midori-0.4.9 b/metadata/md5-cache/www-client/midori-0.5.0 similarity index 95% rename from metadata/md5-cache/www-client/midori-0.4.9 rename to metadata/md5-cache/www-client/midori-0.5.0 index 34b1c108f8a9..ffcf258090ae 100644 --- a/metadata/md5-cache/www-client/midori-0.4.9 +++ b/metadata/md5-cache/www-client/midori-0.5.0 @@ -8,6 +8,6 @@ KEYWORDS=~amd64 ~arm ~ppc ~x86 ~x86-fbsd LICENSE=LGPL-2.1 MIT RDEPEND=>=dev-db/sqlite-3.6.19:3 >=dev-libs/glib-2.22 dev-libs/libxml2 >=net-libs/libsoup-2.34:2.4 x11-libs/libXScrnSaver deprecated? ( net-libs/webkit-gtk:2 x11-libs/gtk+:2 unique? ( dev-libs/libunique:1 ) ) !deprecated? ( >=app-crypt/gcr-3 >=net-libs/webkit-gtk-1.10.2:3 x11-libs/gtk+:3 unique? ( dev-libs/libunique:3 ) ) gnome? ( || ( >=net-libs/libsoup-2.42:2.4 >=net-libs/libsoup-gnome-2.34:2.4 ) ) libnotify? ( >=x11-libs/libnotify-0.7 ) zeitgeist? ( >=dev-libs/libzeitgeist-0.3.14 ) SLOT=0 -SRC_URI=mirror://xfce/src/apps/midori/0.4/midori-0.4.9.tar.bz2 +SRC_URI=mirror://xfce/src/apps/midori/0.5/midori-0.5.0.tar.bz2 _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca waf-utils 681b3e9181d1a20ad8d0c186333ddcf7 -_md5_=1ec7095a54c6099226adcc27736b32c5 +_md5_=4ebfb72adcdfd225c766d3526100d90c diff --git a/metadata/md5-cache/www-client/netrik-1.16.1-r1 b/metadata/md5-cache/www-client/netrik-1.16.1-r1 new file mode 100644 index 000000000000..cce3001427dc --- /dev/null +++ b/metadata/md5-cache/www-client/netrik-1.16.1-r1 @@ -0,0 +1,12 @@ +DEFINED_PHASES=install prepare +DEPEND=>=sys-libs/ncurses-5.1[unicode] sys-libs/readline || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=A text based web browser with no ssl support. +EAPI=5 +HOMEPAGE=http://netrik.sourceforge.net/ +KEYWORDS=~amd64 ~sparc ~x86 +LICENSE=GPL-3 +RDEPEND=>=sys-libs/ncurses-5.1[unicode] sys-libs/readline +SLOT=0 +SRC_URI=mirror://sourceforge/netrik/netrik-1.16.1.tar.gz +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=98c677e1612bccf26264026aa2467465 diff --git a/metadata/md5-cache/www-client/opera-12.15_p1748 b/metadata/md5-cache/www-client/opera-12.15_p1748 index 9d3043f4a09e..55d86a6a4711 100644 --- a/metadata/md5-cache/www-client/opera-12.15_p1748 +++ b/metadata/md5-cache/www-client/opera-12.15_p1748 @@ -9,5 +9,5 @@ LICENSE=OPERA-12 LGPL-2 LGPL-3 RDEPEND=media-libs/fontconfig media-libs/freetype sys-apps/util-linux sys-libs/zlib virtual/opengl x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXrender x11-libs/libXt gtk? ( dev-libs/atk dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) ) x11-libs/pango x11-libs/pixman ) kde? ( kde-base/kdelibs dev-qt/qtcore:4 dev-qt/qtgui:4 ) gstreamer? ( dev-libs/glib:2 dev-libs/libxml2 media-libs/gst-plugins-base:0.10 media-libs/gstreamer:0.10 media-plugins/gst-plugins-meta:0.10 ) SLOT=0 SRC_URI=amd64? ( mirror://opera/linux/1215/opera-12.15-1748.x86_64.linux.tar.xz ) x86? ( mirror://opera/linux/1215/opera-12.15-1748.i386.linux.tar.xz ) x86-fbsd? ( mirror://opera/unix/1215/opera-12.15-1748.i386.freebsd.tar.xz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c668cd8f159f7f08e7ee4dd6f47a0d9d diff --git a/metadata/md5-cache/www-client/opera-next-12.15_pre1745 b/metadata/md5-cache/www-client/opera-next-12.15_pre1745 index 42c83d7d3bc6..b7e421936540 100644 --- a/metadata/md5-cache/www-client/opera-next-12.15_pre1745 +++ b/metadata/md5-cache/www-client/opera-next-12.15_pre1745 @@ -9,5 +9,5 @@ LICENSE=OPERA-12 LGPL-2 LGPL-3 RDEPEND=media-libs/fontconfig media-libs/freetype sys-apps/util-linux sys-libs/zlib virtual/opengl x11-libs/libICE x11-libs/libSM x11-libs/libX11 x11-libs/libXext x11-libs/libXft x11-libs/libXrender x11-libs/libXt gtk? ( dev-libs/atk dev-libs/glib:2 x11-libs/cairo x11-libs/gdk-pixbuf gtk? ( || ( x11-libs/gtk+:3 x11-libs/gtk+:2 ) ) x11-libs/pango x11-libs/pixman ) kde? ( kde-base/kdelibs dev-qt/qtcore:4 dev-qt/qtgui:4 ) gstreamer? ( dev-libs/glib:2 dev-libs/libxml2 media-libs/gst-plugins-base:0.10 media-libs/gstreamer:0.10 media-plugins/gst-plugins-meta:0.10 ) SLOT=0 SRC_URI=amd64? ( http://snapshot.opera.com/unix/emptsh_12.15-1745/opera-next-12.15-1745.x86_64.linux.tar.xz ) x86? ( http://snapshot.opera.com/unix/emptsh_12.15-1745/opera-next-12.15-1745.i386.linux.tar.xz ) x86-fbsd? ( http://snapshot.opera.com/unix/emptsh_12.15-1745/opera-next-12.15-1745.i386.freebsd.tar.xz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=62fca78a424a8360df861213a87f65d6 diff --git a/metadata/md5-cache/www-client/pybugz-9999 b/metadata/md5-cache/www-client/pybugz-9999 index 806e27a64d5c..ac046a23dfdc 100644 --- a/metadata/md5-cache/www-client/pybugz-9999 +++ b/metadata/md5-cache/www-client/pybugz-9999 @@ -7,5 +7,5 @@ IUSE=zsh-completion python_targets_python2_7 LICENSE=GPL-2 RDEPEND=zsh-completion? ( app-shells/zsh ) python_targets_python2_7? ( dev-lang/python:2.7[readline] ) dev-python/python-exec[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] SLOT=0 -_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bash-completion-r1 fcc2dafb65a2b662dd4b076f2103f6a6 distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=14e81d911ece9193dc6e0b0aaeb73b4e diff --git a/metadata/md5-cache/www-client/seamonkey-2.16.2 b/metadata/md5-cache/www-client/seamonkey-2.16.2 index 2baadda7bd73..13dda92d44d0 100644 --- a/metadata/md5-cache/www-client/seamonkey-2.16.2 +++ b/metadata/md5-cache/www-client/seamonkey-2.16.2 @@ -9,5 +9,5 @@ LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/binutils-2.16.1 >=dev-libs/nss-3.14.1 >=dev-libs/nspr-4.9.4 >=dev-libs/glib-2.26:2 >=media-libs/mesa-7.10 >=media-libs/libpng-1.5.13[apng] >=media-libs/libvpx-1.0.0 >=x11-libs/cairo-1.10 >=x11-libs/pango-1.14.0 >=x11-libs/gtk+-2.14:2 virtual/libffi gstreamer? ( >=media-libs/gstreamer-0.10.33:0.10 >=media-libs/gst-plugins-base-0.10.33:0.10 ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( || ( >=dev-db/sqlite-3.7.16:3[secure-delete,debug=] =app-crypt/gnupg-1.4 ) kernel_linux? ( media-libs/alsa-lib ) selinux? ( sec-policy/selinux-mozilla ) x11-libs/libXrender x11-libs/libXt >=sys-libs/zlib-1.1.4 app-arch/zip app-arch/unzip >=app-text/hunspell-1.2 dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.8[X] >=x11-libs/gtk+-2.8.6:2 >=x11-libs/pango-1.10.1[X] virtual/jpeg alsa? ( media-libs/alsa-lib ) virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 ) libnotify? ( >=x11-libs/libnotify-0.4 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) wifi? ( net-wireless/wireless-tools ) SLOT=0 SRC_URI=linguas_be? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.be.langpack.xpi -> seamonkey-2.16.2-be.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.ca.langpack.xpi -> seamonkey-2.16.2-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.cs.langpack.xpi -> seamonkey-2.16.2-cs.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.de.langpack.xpi -> seamonkey-2.16.2-de.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.en-GB.langpack.xpi -> seamonkey-2.16.2-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.es-AR.langpack.xpi -> seamonkey-2.16.2-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.es-ES.langpack.xpi -> seamonkey-2.16.2-es-ES.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.fi.langpack.xpi -> seamonkey-2.16.2-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.fr.langpack.xpi -> seamonkey-2.16.2-fr.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.gl.langpack.xpi -> seamonkey-2.16.2-gl.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.hu.langpack.xpi -> seamonkey-2.16.2-hu.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.it.langpack.xpi -> seamonkey-2.16.2-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.ja.langpack.xpi -> seamonkey-2.16.2-ja.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.lt.langpack.xpi -> seamonkey-2.16.2-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.nb-NO.langpack.xpi -> seamonkey-2.16.2-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.nl.langpack.xpi -> seamonkey-2.16.2-nl.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.pl.langpack.xpi -> seamonkey-2.16.2-pl.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.pt-PT.langpack.xpi -> seamonkey-2.16.2-pt-PT.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.ru.langpack.xpi -> seamonkey-2.16.2-ru.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.sk.langpack.xpi -> seamonkey-2.16.2-sk.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.sv-SE.langpack.xpi -> seamonkey-2.16.2-sv-SE.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.tr.langpack.xpi -> seamonkey-2.16.2-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.uk.langpack.xpi -> seamonkey-2.16.2-uk.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.zh-CN.langpack.xpi -> seamonkey-2.16.2-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.zh-TW.langpack.xpi -> seamonkey-2.16.2-zh-TW.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.be.langpack.xpi -> seamonkey-2.16.2-be.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.ca.langpack.xpi -> seamonkey-2.16.2-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.cs.langpack.xpi -> seamonkey-2.16.2-cs.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.de.langpack.xpi -> seamonkey-2.16.2-de.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.en-GB.langpack.xpi -> seamonkey-2.16.2-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.es-AR.langpack.xpi -> seamonkey-2.16.2-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.es-ES.langpack.xpi -> seamonkey-2.16.2-es-ES.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.fi.langpack.xpi -> seamonkey-2.16.2-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.fr.langpack.xpi -> seamonkey-2.16.2-fr.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.gl.langpack.xpi -> seamonkey-2.16.2-gl.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.hu.langpack.xpi -> seamonkey-2.16.2-hu.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.it.langpack.xpi -> seamonkey-2.16.2-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.ja.langpack.xpi -> seamonkey-2.16.2-ja.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.lt.langpack.xpi -> seamonkey-2.16.2-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.nb-NO.langpack.xpi -> seamonkey-2.16.2-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.nl.langpack.xpi -> seamonkey-2.16.2-nl.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.pl.langpack.xpi -> seamonkey-2.16.2-pl.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.pt-PT.langpack.xpi -> seamonkey-2.16.2-pt-PT.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.ru.langpack.xpi -> seamonkey-2.16.2-ru.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.sk.langpack.xpi -> seamonkey-2.16.2-sk.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.sv-SE.langpack.xpi -> seamonkey-2.16.2-sv-SE.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.tr.langpack.xpi -> seamonkey-2.16.2-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.uk.langpack.xpi -> seamonkey-2.16.2-uk.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.zh-CN.langpack.xpi -> seamonkey-2.16.2-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/langpack/seamonkey-2.16.2.zh-TW.langpack.xpi -> seamonkey-2.16.2-zh-TW.xpi ) ftp://ftp.mozilla.org/pub/seamonkey/releases/2.16.2/source/seamonkey-2.16.2.source.tar.bz2 -> seamonkey-2.16.2.source.tar.bz2 http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-19.0-patches-0.3.tar.xz http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/seamonkey-2.14-patches-01.tar.xz crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-1.5.1.tar.gz ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 20f7be97073003610d184672d49cae8d mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 e4ad1852082c7cd6fef51893c4d16af2 mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=97f8e8ceb7372fc2510b400599b43a1f diff --git a/metadata/md5-cache/www-client/seamonkey-2.17 b/metadata/md5-cache/www-client/seamonkey-2.17 index c575ccce61fb..75b7f4c3ed74 100644 --- a/metadata/md5-cache/www-client/seamonkey-2.17 +++ b/metadata/md5-cache/www-client/seamonkey-2.17 @@ -4,10 +4,10 @@ DESCRIPTION=Seamonkey Web Browser EAPI=3 HOMEPAGE=http://www.seamonkey-project.org IUSE=+chatzilla +crypt gstreamer +ipc +jit +roaming system-jpeg system-sqlite custom-cflags custom-optimization +alsa +dbus debug libnotify startup-notification system-sqlite wifi linguas_be linguas_ca linguas_cs linguas_de linguas_en_GB linguas_es_AR linguas_es_ES linguas_fi linguas_fr linguas_gl linguas_hu linguas_it linguas_ja linguas_lt linguas_nb_NO linguas_nl linguas_pl linguas_pt_PT linguas_ru linguas_sk linguas_sv_SE linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW -KEYWORDS=~amd64 ~arm ~ppc ~ppc64 ~x86 +KEYWORDS=amd64 ~arm ~ppc ~ppc64 x86 LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=>=sys-devel/binutils-2.16.1 >=dev-libs/nss-3.14.3 >=dev-libs/nspr-4.9.4 >=dev-libs/glib-2.26:2 >=media-libs/mesa-7.10 >=media-libs/libpng-1.5.13[apng] >=media-libs/libvpx-1.0.0 >=x11-libs/cairo-1.10 >=x11-libs/pango-1.14.0 >=x11-libs/gtk+-2.14:2 virtual/libffi gstreamer? ( >=media-libs/gstreamer-0.10.33:0.10 >=media-libs/gst-plugins-base-0.10.33:0.10 ) system-jpeg? ( >=media-libs/libjpeg-turbo-1.2.1 ) system-sqlite? ( || ( >=dev-db/sqlite-3.7.16:3[secure-delete,debug=] =app-crypt/gnupg-1.4 ) kernel_linux? ( media-libs/alsa-lib ) selinux? ( sec-policy/selinux-mozilla ) x11-libs/libXrender x11-libs/libXt >=sys-libs/zlib-1.1.4 app-arch/zip app-arch/unzip >=app-text/hunspell-1.2 dev-libs/expat >=dev-libs/libevent-1.4.7 >=x11-libs/cairo-1.8[X] >=x11-libs/gtk+-2.8.6:2 >=x11-libs/pango-1.10.1[X] virtual/jpeg alsa? ( media-libs/alsa-lib ) virtual/freedesktop-icon-theme dbus? ( >=dev-libs/dbus-glib-0.72 ) libnotify? ( >=x11-libs/libnotify-0.4 ) startup-notification? ( >=x11-libs/startup-notification-0.8 ) wifi? ( net-wireless/wireless-tools ) SLOT=0 SRC_URI=linguas_be? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.be.langpack.xpi -> seamonkey-2.17-be.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.ca.langpack.xpi -> seamonkey-2.17-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.cs.langpack.xpi -> seamonkey-2.17-cs.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.de.langpack.xpi -> seamonkey-2.17-de.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.en-GB.langpack.xpi -> seamonkey-2.17-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.es-AR.langpack.xpi -> seamonkey-2.17-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.es-ES.langpack.xpi -> seamonkey-2.17-es-ES.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.fi.langpack.xpi -> seamonkey-2.17-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.fr.langpack.xpi -> seamonkey-2.17-fr.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.gl.langpack.xpi -> seamonkey-2.17-gl.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.hu.langpack.xpi -> seamonkey-2.17-hu.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.it.langpack.xpi -> seamonkey-2.17-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.ja.langpack.xpi -> seamonkey-2.17-ja.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.lt.langpack.xpi -> seamonkey-2.17-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.nb-NO.langpack.xpi -> seamonkey-2.17-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.nl.langpack.xpi -> seamonkey-2.17-nl.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.pl.langpack.xpi -> seamonkey-2.17-pl.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.pt-PT.langpack.xpi -> seamonkey-2.17-pt-PT.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.ru.langpack.xpi -> seamonkey-2.17-ru.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.sk.langpack.xpi -> seamonkey-2.17-sk.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.sv-SE.langpack.xpi -> seamonkey-2.17-sv-SE.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.tr.langpack.xpi -> seamonkey-2.17-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.uk.langpack.xpi -> seamonkey-2.17-uk.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.zh-CN.langpack.xpi -> seamonkey-2.17-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.zh-TW.langpack.xpi -> seamonkey-2.17-zh-TW.xpi ) linguas_be? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.be.langpack.xpi -> seamonkey-2.17-be.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.ca.langpack.xpi -> seamonkey-2.17-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.cs.langpack.xpi -> seamonkey-2.17-cs.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.de.langpack.xpi -> seamonkey-2.17-de.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.en-GB.langpack.xpi -> seamonkey-2.17-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.es-AR.langpack.xpi -> seamonkey-2.17-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.es-ES.langpack.xpi -> seamonkey-2.17-es-ES.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.fi.langpack.xpi -> seamonkey-2.17-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.fr.langpack.xpi -> seamonkey-2.17-fr.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.gl.langpack.xpi -> seamonkey-2.17-gl.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.hu.langpack.xpi -> seamonkey-2.17-hu.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.it.langpack.xpi -> seamonkey-2.17-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.ja.langpack.xpi -> seamonkey-2.17-ja.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.lt.langpack.xpi -> seamonkey-2.17-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.nb-NO.langpack.xpi -> seamonkey-2.17-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.nl.langpack.xpi -> seamonkey-2.17-nl.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.pl.langpack.xpi -> seamonkey-2.17-pl.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.pt-PT.langpack.xpi -> seamonkey-2.17-pt-PT.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.ru.langpack.xpi -> seamonkey-2.17-ru.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.sk.langpack.xpi -> seamonkey-2.17-sk.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.sv-SE.langpack.xpi -> seamonkey-2.17-sv-SE.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.tr.langpack.xpi -> seamonkey-2.17-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.uk.langpack.xpi -> seamonkey-2.17-uk.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.zh-CN.langpack.xpi -> seamonkey-2.17-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/langpack/seamonkey-2.17.zh-TW.langpack.xpi -> seamonkey-2.17-zh-TW.xpi ) ftp://ftp.mozilla.org/pub/seamonkey/releases/2.17/source/seamonkey-2.17.source.tar.bz2 -> seamonkey-2.17.source.tar.bz2 http://dev.gentoo.org/~anarchy/mozilla/patchsets/firefox-20.0-patches-0.2.tar.xz http://dev.gentoo.org/~polynomial-c/mozilla/patchsets/seamonkey-2.14-patches-01.tar.xz crypt? ( http://www.mozilla-enigmail.org/download/source/enigmail-1.5.1.tar.gz ) -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 20f7be97073003610d184672d49cae8d mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=b6c96a50e183f3a8e4a30a1ff968deb7 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 check-reqs 0efdf29c9002a1995388968bf54e9d3d eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac mozconfig-3 e4ad1852082c7cd6fef51893c4d16af2 mozcoreconf-2 1e308a59d2f982d7c2f79b68e67a0a4f mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 python-any-r1 a6778a259dc0aab7e2c3bbf70e694fad python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=06806400dfc7a32953dd58d4b7de493f diff --git a/metadata/md5-cache/www-client/seamonkey-bin-2.16.2 b/metadata/md5-cache/www-client/seamonkey-bin-2.16.2 index 0fb62c01bc40..3f551416a7e3 100644 --- a/metadata/md5-cache/www-client/seamonkey-bin-2.16.2 +++ b/metadata/md5-cache/www-client/seamonkey-bin-2.16.2 @@ -10,5 +10,5 @@ RDEPEND=dev-libs/dbus-glib >=media-libs/alsa-lib-1.0.16 virtual/freedesktop-icon RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.be.langpack.xpi -> seamonkey-2.16.2-be.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.ca.langpack.xpi -> seamonkey-2.16.2-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.cs.langpack.xpi -> seamonkey-2.16.2-cs.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.de.langpack.xpi -> seamonkey-2.16.2-de.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.en-GB.langpack.xpi -> seamonkey-2.16.2-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.es-AR.langpack.xpi -> seamonkey-2.16.2-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.es-ES.langpack.xpi -> seamonkey-2.16.2-es-ES.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.fi.langpack.xpi -> seamonkey-2.16.2-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.fr.langpack.xpi -> seamonkey-2.16.2-fr.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.gl.langpack.xpi -> seamonkey-2.16.2-gl.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.hu.langpack.xpi -> seamonkey-2.16.2-hu.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.it.langpack.xpi -> seamonkey-2.16.2-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.ja.langpack.xpi -> seamonkey-2.16.2-ja.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.lt.langpack.xpi -> seamonkey-2.16.2-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.nb-NO.langpack.xpi -> seamonkey-2.16.2-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.nl.langpack.xpi -> seamonkey-2.16.2-nl.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.pl.langpack.xpi -> seamonkey-2.16.2-pl.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.pt-PT.langpack.xpi -> seamonkey-2.16.2-pt-PT.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.ru.langpack.xpi -> seamonkey-2.16.2-ru.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.sk.langpack.xpi -> seamonkey-2.16.2-sk.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.sv-SE.langpack.xpi -> seamonkey-2.16.2-sv-SE.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.tr.langpack.xpi -> seamonkey-2.16.2-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.uk.langpack.xpi -> seamonkey-2.16.2-uk.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.zh-CN.langpack.xpi -> seamonkey-2.16.2-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/langpack/seamonkey-2.16.2.zh-TW.langpack.xpi -> seamonkey-2.16.2-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/contrib/seamonkey-2.16.2.en-US.linux-x86_64.tar.bz2 -> seamonkey-bin_x86_64-2.16.2.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.16.2/linux-i686/en-US/seamonkey-2.16.2.tar.bz2 -> seamonkey-bin_i686-2.16.2.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=1eed11683d9be43215d6360c11e4d6cc diff --git a/metadata/md5-cache/www-client/seamonkey-bin-2.17 b/metadata/md5-cache/www-client/seamonkey-bin-2.17 index 7ca422d8d592..29544bcec7dc 100644 --- a/metadata/md5-cache/www-client/seamonkey-bin-2.17 +++ b/metadata/md5-cache/www-client/seamonkey-bin-2.17 @@ -4,11 +4,11 @@ DESCRIPTION=Mozilla Application Suite - web browser, email, HTML editor, IRC EAPI=4 HOMEPAGE=http://www.seamonkey-project.org/ IUSE=startup-notification linguas_be linguas_ca linguas_cs linguas_de linguas_en_GB linguas_es_AR linguas_es_ES linguas_fi linguas_fr linguas_gl linguas_hu linguas_it linguas_ja linguas_lt linguas_nb_NO linguas_nl linguas_pl linguas_pt_PT linguas_ru linguas_sk linguas_sv_SE linguas_tr linguas_uk linguas_zh_CN linguas_zh_TW -KEYWORDS=-* ~amd64 ~x86 +KEYWORDS=-* amd64 x86 LICENSE=MPL-2.0 GPL-2 LGPL-2.1 RDEPEND=dev-libs/dbus-glib >=media-libs/alsa-lib-1.0.16 virtual/freedesktop-icon-theme >=x11-libs/gtk+-2.10:2 x11-libs/libXrender x11-libs/libXt x11-libs/libXmu !net-libs/libproxy[spidermonkey] RESTRICT=strip mirror binchecks SLOT=0 SRC_URI=linguas_be? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.be.langpack.xpi -> seamonkey-2.17-be.xpi ) linguas_ca? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.ca.langpack.xpi -> seamonkey-2.17-ca.xpi ) linguas_cs? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.cs.langpack.xpi -> seamonkey-2.17-cs.xpi ) linguas_de? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.de.langpack.xpi -> seamonkey-2.17-de.xpi ) linguas_en_GB? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.en-GB.langpack.xpi -> seamonkey-2.17-en-GB.xpi ) linguas_es_AR? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.es-AR.langpack.xpi -> seamonkey-2.17-es-AR.xpi ) linguas_es_ES? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.es-ES.langpack.xpi -> seamonkey-2.17-es-ES.xpi ) linguas_fi? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.fi.langpack.xpi -> seamonkey-2.17-fi.xpi ) linguas_fr? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.fr.langpack.xpi -> seamonkey-2.17-fr.xpi ) linguas_gl? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.gl.langpack.xpi -> seamonkey-2.17-gl.xpi ) linguas_hu? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.hu.langpack.xpi -> seamonkey-2.17-hu.xpi ) linguas_it? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.it.langpack.xpi -> seamonkey-2.17-it.xpi ) linguas_ja? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.ja.langpack.xpi -> seamonkey-2.17-ja.xpi ) linguas_lt? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.lt.langpack.xpi -> seamonkey-2.17-lt.xpi ) linguas_nb_NO? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.nb-NO.langpack.xpi -> seamonkey-2.17-nb-NO.xpi ) linguas_nl? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.nl.langpack.xpi -> seamonkey-2.17-nl.xpi ) linguas_pl? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.pl.langpack.xpi -> seamonkey-2.17-pl.xpi ) linguas_pt_PT? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.pt-PT.langpack.xpi -> seamonkey-2.17-pt-PT.xpi ) linguas_ru? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.ru.langpack.xpi -> seamonkey-2.17-ru.xpi ) linguas_sk? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.sk.langpack.xpi -> seamonkey-2.17-sk.xpi ) linguas_sv_SE? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.sv-SE.langpack.xpi -> seamonkey-2.17-sv-SE.xpi ) linguas_tr? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.tr.langpack.xpi -> seamonkey-2.17-tr.xpi ) linguas_uk? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.uk.langpack.xpi -> seamonkey-2.17-uk.xpi ) linguas_zh_CN? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.zh-CN.langpack.xpi -> seamonkey-2.17-zh-CN.xpi ) linguas_zh_TW? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/langpack/seamonkey-2.17.zh-TW.langpack.xpi -> seamonkey-2.17-zh-TW.xpi ) amd64? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/contrib/seamonkey-2.17.en-US.linux-x86_64.tar.bz2 -> seamonkey-bin_x86_64-2.17.tar.bz2 ) x86? ( ftp://ftp.mozilla.org/pub/mozilla.org/seamonkey/releases//2.17/linux-i686/en-US/seamonkey-2.17.tar.bz2 -> seamonkey-bin_i686-2.17.tar.bz2 ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=8bea6f2ebc514a87dbde2cada7bea520 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 mozextension 08e43f98cbab4b43f95660c74a831df7 mozlinguas 4fccc675305cf2d1e23c1a05f47b9b2a multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=d37851d1bba505b13b63de16d704530d diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-9997 b/metadata/md5-cache/www-plugins/chrome-binary-plugins-9997 index 9faeabe841f1..3a53d21121cf 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-9997 +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-9997 @@ -7,5 +7,5 @@ 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 -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=9f43f8893832bd35ce2407a4d682d7cf diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-9998 b/metadata/md5-cache/www-plugins/chrome-binary-plugins-9998 index 2bb08e122ce4..06643b676ddb 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-9998 +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-9998 @@ -7,5 +7,5 @@ LICENSE=google-chrome RDEPEND=www-client/chromium !www-plugins/chrome-binary-plugins:0 !www-plugins/chrome-binary-plugins:stable !www-plugins/chrome-binary-plugins:unstable RESTRICT=bindist mirror strip SLOT=beta -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=ca140e249ea4a2d89e455951faa4f624 diff --git a/metadata/md5-cache/www-plugins/chrome-binary-plugins-9999 b/metadata/md5-cache/www-plugins/chrome-binary-plugins-9999 index b0bf37bbd96c..6f1e1ccce2f1 100644 --- a/metadata/md5-cache/www-plugins/chrome-binary-plugins-9999 +++ b/metadata/md5-cache/www-plugins/chrome-binary-plugins-9999 @@ -7,5 +7,5 @@ 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 -_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f +_eclasses_=multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d _md5_=de38fb31f1edc3bd78a07f220f1bb674 diff --git a/metadata/md5-cache/www-plugins/google-talkplugin-3.10.2.0-r1 b/metadata/md5-cache/www-plugins/google-talkplugin-3.10.2.0-r1 index 8df23f42d1f5..a889830906ba 100644 --- a/metadata/md5-cache/www-plugins/google-talkplugin-3.10.2.0-r1 +++ b/metadata/md5-cache/www-plugins/google-talkplugin-3.10.2.0-r1 @@ -9,5 +9,5 @@ RDEPEND=|| ( media-sound/pulseaudio media-libs/alsa-lib ) dev-libs/glib:2 system RESTRICT=fetch strip SLOT=0 SRC_URI=x86? ( http://dl.google.com/linux/talkplugin/deb/pool/main/g/google-talkplugin/google-talkplugin_3.10.2.0-1_i386.deb ) amd64? ( http://dl.google.com/linux/talkplugin/deb/pool/main/g/google-talkplugin/google-talkplugin_3.10.2.0-1_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=a8b699b11d0b815efc270f8d9341e826 diff --git a/metadata/md5-cache/www-plugins/google-talkplugin-3.17.0.0 b/metadata/md5-cache/www-plugins/google-talkplugin-3.17.0.0 index 7d96aede4fe0..c9862bbaac3a 100644 --- a/metadata/md5-cache/www-plugins/google-talkplugin-3.17.0.0 +++ b/metadata/md5-cache/www-plugins/google-talkplugin-3.17.0.0 @@ -9,5 +9,5 @@ RDEPEND=|| ( media-sound/pulseaudio media-libs/alsa-lib ) dev-libs/glib:2 system RESTRICT=strip mirror SLOT=0 SRC_URI=x86? ( http://dl.google.com/linux/talkplugin/deb/pool/main/g/google-talkplugin/google-talkplugin_3.17.0.0-1_i386.deb ) amd64? ( http://dl.google.com/linux/talkplugin/deb/pool/main/g/google-talkplugin/google-talkplugin_3.17.0.0-1_amd64.deb ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bc9de7e5e7ff685cebd18204a5a2f21a diff --git a/metadata/md5-cache/www-plugins/google-talkplugin-9999 b/metadata/md5-cache/www-plugins/google-talkplugin-9999 index 314fd6939d6a..118857341786 100644 --- a/metadata/md5-cache/www-plugins/google-talkplugin-9999 +++ b/metadata/md5-cache/www-plugins/google-talkplugin-9999 @@ -8,5 +8,5 @@ LICENSE=Google-TOS openssl BSD RDEPEND=|| ( media-sound/pulseaudio media-libs/alsa-lib ) dev-libs/glib:2 system-libCg? ( media-gfx/nvidia-cg-toolkit ) media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:1.2 sys-libs/glibc x11-libs/cairo x11-libs/gdk-pixbuf x11-libs/gtk+:2 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXrender x11-libs/libXt x11-libs/pango sys-apps/lsb-release virtual/opengl libnotify? ( x11-libs/libnotify ) RESTRICT=strip mirror SLOT=0 -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b nsplugins b195a1306f4ee7cf507037dc6aa5ba89 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f0ab6fb80c4b4603bb3af61e8e49cd1f diff --git a/metadata/md5-cache/www-servers/tornado-2.4-r1 b/metadata/md5-cache/www-servers/tornado-2.4-r1 index ec8d0c4a36a0..b28be2a48b47 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_5(-)?,-python_single_ta REQUIRED_USE=curl? ( python_targets_python2_5 python_targets_python2_6 python_targets_python2_7 ) SLOT=0 SRC_URI=http://github.com/downloads/facebook/tornado/tornado-2.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=e1fc98f4b3e7f393cfd9b1d274eae140 diff --git a/metadata/md5-cache/www-servers/uwsgi-1.2.6 b/metadata/md5-cache/www-servers/uwsgi-1.2.6 index e7043734b563..b4e829e67173 100644 --- a/metadata/md5-cache/www-servers/uwsgi-1.2.6 +++ b/metadata/md5-cache/www-servers/uwsgi-1.2.6 @@ -10,5 +10,5 @@ RDEPEND=caps? ( sys-libs/libcap ) json? ( dev-libs/jansson ) erlang? ( dev-lang/ REQUIRED_USE=|| ( cgi erlang lua perl php python ruby ) SLOT=0 SRC_URI=http://projects.unbit.it/downloads/uwsgi-1.2.6.tar.gz -_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=503a0943c60ebf1d73fdb7587481d3e7 diff --git a/metadata/md5-cache/www-servers/uwsgi-1.4.4 b/metadata/md5-cache/www-servers/uwsgi-1.4.4 index ac595896668d..1e827f0d8de2 100644 --- a/metadata/md5-cache/www-servers/uwsgi-1.4.4 +++ b/metadata/md5-cache/www-servers/uwsgi-1.4.4 @@ -10,5 +10,5 @@ RDEPEND=caps? ( sys-libs/libcap ) json? ( dev-libs/jansson ) erlang? ( dev-lang/ REQUIRED_USE=|| ( cgi erlang lua perl php python ruby ) SLOT=0 SRC_URI=http://projects.unbit.it/downloads/uwsgi-1.4.4.tar.gz -_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=ea52991204e671fdbd4ea1c5d490ab0c diff --git a/metadata/md5-cache/www-servers/uwsgi-1.4.5-r1 b/metadata/md5-cache/www-servers/uwsgi-1.4.5-r1 index b8b32102adbb..8caa4a7f22ea 100644 --- a/metadata/md5-cache/www-servers/uwsgi-1.4.5-r1 +++ b/metadata/md5-cache/www-servers/uwsgi-1.4.5-r1 @@ -10,5 +10,5 @@ RDEPEND=caps? ( sys-libs/libcap ) json? ( dev-libs/jansson ) erlang? ( dev-lang/ REQUIRED_USE=|| ( cgi erlang lua perl php python ruby ) SLOT=0 SRC_URI=http://projects.unbit.it/downloads/uwsgi-1.4.5.tar.gz -_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=952fa73196cf2bab52062aa9fa8e0bbd diff --git a/metadata/md5-cache/www-servers/uwsgi-1.4.6 b/metadata/md5-cache/www-servers/uwsgi-1.4.6 index 2b463e470fc2..5da30df4b93f 100644 --- a/metadata/md5-cache/www-servers/uwsgi-1.4.6 +++ b/metadata/md5-cache/www-servers/uwsgi-1.4.6 @@ -10,5 +10,5 @@ RDEPEND=caps? ( sys-libs/libcap ) json? ( dev-libs/jansson ) erlang? ( dev-lang/ REQUIRED_USE=|| ( cgi erlang lua perl php python ruby ) SLOT=0 SRC_URI=http://projects.unbit.it/downloads/uwsgi-1.4.6.tar.gz -_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=d123799a3565f1804c8773f0202db956 diff --git a/metadata/md5-cache/www-servers/uwsgi-1.4.6-r1 b/metadata/md5-cache/www-servers/uwsgi-1.4.6-r1 index cc22dda9fd11..b04ef294ddb9 100644 --- a/metadata/md5-cache/www-servers/uwsgi-1.4.6-r1 +++ b/metadata/md5-cache/www-servers/uwsgi-1.4.6-r1 @@ -10,5 +10,5 @@ RDEPEND=caps? ( sys-libs/libcap ) json? ( dev-libs/jansson ) erlang? ( dev-lang/ REQUIRED_USE=|| ( cgi erlang lua perl php python ruby ) SLOT=0 SRC_URI=http://projects.unbit.it/downloads/uwsgi-1.4.6.tar.gz -_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=a4864a5d5f2f0b35719054b2bd64be56 diff --git a/metadata/md5-cache/www-servers/uwsgi-1.4.8 b/metadata/md5-cache/www-servers/uwsgi-1.4.8 index bdd2df370d90..103193462b5f 100644 --- a/metadata/md5-cache/www-servers/uwsgi-1.4.8 +++ b/metadata/md5-cache/www-servers/uwsgi-1.4.8 @@ -10,5 +10,5 @@ RDEPEND=caps? ( sys-libs/libcap ) json? ( dev-libs/jansson ) erlang? ( dev-lang/ REQUIRED_USE=|| ( cgi erlang lua perl php python ruby ) SLOT=0 SRC_URI=http://projects.unbit.it/downloads/uwsgi-1.4.8.tar.gz -_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c80d2559fec4eb665cbefc5ebfa64600 diff --git a/metadata/md5-cache/www-servers/uwsgi-1.4.9 b/metadata/md5-cache/www-servers/uwsgi-1.4.9 index 667778ea9fcc..a8087f92cf18 100644 --- a/metadata/md5-cache/www-servers/uwsgi-1.4.9 +++ b/metadata/md5-cache/www-servers/uwsgi-1.4.9 @@ -10,5 +10,5 @@ RDEPEND=caps? ( sys-libs/libcap ) json? ( dev-libs/jansson ) erlang? ( dev-lang/ REQUIRED_USE=|| ( cgi erlang lua perl php python ruby ) SLOT=0 SRC_URI=http://projects.unbit.it/downloads/uwsgi-1.4.9.tar.gz -_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils a0cae5abb25d0ff197d56bf838502fa1 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=apache-module 1f60370f9dceba046ec036cd6bbb0c8b autotools cf83655b19ed98f9ea3b44f4572b51a3 depend.apache 1a38534d3f755d1ab1d92ce120bd7dbd eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de java-utils-2 dcda71e114d638cdf01db57b8445337d libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 pax-utils d727728a240d5f59bf9370a64259fd61 php-ext-source-r2 463a061a956041b728c48e3fe25abf1e python dd56675d8e9f7e85d815a28c87383141 ruby-ng 10ca07a887e226622062d89bb959a175 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=c44d5e0afc8ae5f8e305f5e4d3f8b700 diff --git a/metadata/md5-cache/x11-drivers/ati-drivers-13.2_beta7 b/metadata/md5-cache/x11-drivers/ati-drivers-13.2_beta7 index 5c4803c57783..43fe7d5eb567 100644 --- a/metadata/md5-cache/x11-drivers/ati-drivers-13.2_beta7 +++ b/metadata/md5-cache/x11-drivers/ati-drivers-13.2_beta7 @@ -10,5 +10,5 @@ RDEPEND=<=x11-base/xorg-server-1.13.49[-minimal] >=app-admin/eselect-opengl-1.0. RESTRICT=bindist test SLOT=1 SRC_URI=http://www2.ati.com/drivers/beta/amd-driver-installer-catalyst-13.2-beta7-linux-x86.x86_64.zip http://developer.amd.com/wordpress/media/2012/10/xvba-sdk-0.74-404001.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=074bb228b22a07211261941155b6222f diff --git a/metadata/md5-cache/x11-drivers/ati-drivers-13.3_beta2 b/metadata/md5-cache/x11-drivers/ati-drivers-13.3_beta2 index eee1c8a9580c..ea3edfa6332f 100644 --- a/metadata/md5-cache/x11-drivers/ati-drivers-13.3_beta2 +++ b/metadata/md5-cache/x11-drivers/ati-drivers-13.3_beta2 @@ -10,5 +10,5 @@ RDEPEND=<=x11-base/xorg-server-1.13.49[-minimal] >=app-admin/eselect-opengl-1.0. RESTRICT=bindist test SLOT=1 SRC_URI=http://www2.ati.com/drivers/beta/amd-driver-installer-catalyst-13.3-beta2-linux-x86.x86_64.zip http://developer.amd.com/wordpress/media/2012/10/xvba-sdk-0.74-404001.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b pax-utils a0cae5abb25d0ff197d56bf838502fa1 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b pax-utils d727728a240d5f59bf9370a64259fd61 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=60836620bb9ef8e860b98b523fd44dfe diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-173.14.36 b/metadata/md5-cache/x11-drivers/nvidia-drivers-173.14.36 index 72f7e6d4b074..2a043291ec95 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-173.14.36 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-173.14.36 @@ -10,5 +10,5 @@ RDEPEND==sys-libs/glibc-2.6.1 ) m RESTRICT=bindist mirror strip SLOT=0 SRC_URI=x86? ( ftp://download.nvidia.com/XFree86/Linux-x86/173.14.36/NVIDIA-Linux-x86-173.14.36-pkg0.run ) amd64? ( ftp://download.nvidia.com/XFree86/Linux-x86_64/173.14.36/NVIDIA-Linux-x86_64-173.14.36-pkg2.run ) x86-fbsd? ( ftp://download.nvidia.com/freebsd/173.14.36/NVIDIA-FreeBSD-x86-173.14.36.tar.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver d0f6287fec7cf699a9b0cf975549d156 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver a8711a350c4fc1340248aba2b0e4fbc4 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=2172569b29e0796f20b54b85cd56cf9f diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-173.14.37 b/metadata/md5-cache/x11-drivers/nvidia-drivers-173.14.37 index 71bbccd7d9ab..ac4762c95926 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-173.14.37 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-173.14.37 @@ -10,5 +10,5 @@ RDEPEND==app-admin/eselect-opengl-1.0.9 kernel_li RESTRICT=bindist mirror strip SLOT=0 SRC_URI=x86? ( ftp://download.nvidia.com/XFree86/Linux-x86/173.14.37/NVIDIA-Linux-x86-173.14.37-pkg0.run ) amd64? ( ftp://download.nvidia.com/XFree86/Linux-x86_64/173.14.37/NVIDIA-Linux-x86_64-173.14.37-pkg2.run ) x86-fbsd? ( ftp://download.nvidia.com/freebsd/173.14.37/NVIDIA-FreeBSD-x86-173.14.37.tar.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver d0f6287fec7cf699a9b0cf975549d156 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver a8711a350c4fc1340248aba2b0e4fbc4 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=68772bcbbb214a120a2b05dcc49ca615 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-304.88 b/metadata/md5-cache/x11-drivers/nvidia-drivers-304.88 index deaa42d74f15..73086667b139 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-304.88 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-304.88 @@ -12,5 +12,5 @@ REQUIRED_USE=tools? ( X ) RESTRICT=bindist mirror strip SLOT=0 SRC_URI=x86? ( ftp://download.nvidia.com/XFree86/Linux-x86/304.88/NVIDIA-Linux-x86-304.88.run ) amd64? ( ftp://download.nvidia.com/XFree86/Linux-x86_64/304.88/NVIDIA-Linux-x86_64-304.88.run ) amd64-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86_64/304.88/NVIDIA-FreeBSD-x86_64-304.88.tar.gz ) x86-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86/304.88/NVIDIA-FreeBSD-x86-304.88.tar.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver d0f6287fec7cf699a9b0cf975549d156 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver a8711a350c4fc1340248aba2b0e4fbc4 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=14574111176e9f143a214df60d35f000 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-310.44 b/metadata/md5-cache/x11-drivers/nvidia-drivers-310.44 index d76db54fc03e..1ff51c2f770b 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-310.44 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-310.44 @@ -11,5 +11,5 @@ REQUIRED_USE=tools? ( X ) RESTRICT=bindist mirror strip SLOT=0 SRC_URI=x86? ( ftp://download.nvidia.com/XFree86/Linux-x86/310.44/NVIDIA-Linux-x86-310.44.run ) amd64? ( ftp://download.nvidia.com/XFree86/Linux-x86_64/310.44/NVIDIA-Linux-x86_64-310.44.run ) amd64-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86_64/310.44/NVIDIA-FreeBSD-x86_64-310.44.tar.gz ) x86-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86/310.44/NVIDIA-FreeBSD-x86-310.44.tar.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver d0f6287fec7cf699a9b0cf975549d156 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver a8711a350c4fc1340248aba2b0e4fbc4 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=fa5bb259877a1af02d2579c67eba0a32 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-313.30 b/metadata/md5-cache/x11-drivers/nvidia-drivers-313.30 index dff524d3a834..6eb208fc3ba2 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-313.30 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-313.30 @@ -11,5 +11,5 @@ REQUIRED_USE=tools? ( X ) RESTRICT=bindist mirror strip SLOT=0 SRC_URI=x86? ( ftp://download.nvidia.com/XFree86/Linux-x86/313.30/NVIDIA-Linux-x86-313.30.run ) amd64? ( ftp://download.nvidia.com/XFree86/Linux-x86_64/313.30/NVIDIA-Linux-x86_64-313.30.run ) amd64-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86_64/313.30/NVIDIA-FreeBSD-x86_64-313.30.tar.gz ) x86-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86/313.30/NVIDIA-FreeBSD-x86-313.30.tar.gz ) -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver d0f6287fec7cf699a9b0cf975549d156 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 0e3a1fb79ec6a7c47f2a223d19c6385f user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver a8711a350c4fc1340248aba2b0e4fbc4 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=beaaff6b262554d64c5966cbe9106f37 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-319.12 b/metadata/md5-cache/x11-drivers/nvidia-drivers-319.12 new file mode 100644 index 000000000000..5557ecd83425 --- /dev/null +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-319.12 @@ -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 ) multilib? ( app-emulation/emul-linux-x86-xlibs ) 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 ) multilib? ( app-emulation/emul-linux-x86-xlibs ) 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 ) kernel_linux? ( virtual/modutils ) +REQUIRED_USE=tools? ( X ) +RESTRICT=bindist mirror strip +SLOT=0 +SRC_URI=x86? ( ftp://download.nvidia.com/XFree86/Linux-x86/319.12/NVIDIA-Linux-x86-319.12.run ) amd64? ( ftp://download.nvidia.com/XFree86/Linux-x86_64/319.12/NVIDIA-Linux-x86_64-319.12.run ) amd64-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86_64/319.12/NVIDIA-FreeBSD-x86_64-319.12.tar.gz ) x86-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86/319.12/NVIDIA-FreeBSD-x86-319.12.tar.gz ) +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de linux-info dd8fdcccc30f117673b4cba4ed4f74a7 linux-mod c9d4931960ba253061ad823a8508bff5 multilib ded93e450747134a079e647d888aa80b nvidia-driver a8711a350c4fc1340248aba2b0e4fbc4 portability 536c5e70c5fb252ed3b769e04aa3f05b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e udev a9a8d051efb42bfe884c1db82ce161de unpacker 658a981a81fd7cb0767315a541bab01d user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_md5_=cf19fcbff95125f02d36bb98ea926260 diff --git a/metadata/md5-cache/x11-drivers/nvidia-drivers-96.43.23 b/metadata/md5-cache/x11-drivers/nvidia-drivers-96.43.23 index ab922c4c0618..2d310414ad58 100644 --- a/metadata/md5-cache/x11-drivers/nvidia-drivers-96.43.23 +++ b/metadata/md5-cache/x11-drivers/nvidia-drivers-96.43.23 @@ -10,5 +10,5 @@ RDEPEND==x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) virtual/pkgconfig >=sys-devel/libtool-2 doc? ( >=dev-util/gtk-doc-1.6 ~app-text/docbook-xml-dtd-4.2 ) X? ( x11-proto/renderproto drm? ( x11-proto/xproto >=x11-proto/xextproto-7.1 ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) virtual/pkgconfig >=sys-devel/libtool-2 doc? ( >=dev-util/gtk-doc-1.6 ~app-text/docbook-xml-dtd-4.2 ) X? ( x11-proto/renderproto drm? ( x11-proto/xproto >=x11-proto/xextproto-7.1 ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A vector graphics library with cross-device output support EAPI=5 HOMEPAGE=http://cairographics.org/ IUSE=X aqua debug directfb doc drm gallium +glib legacy-drivers opengl openvg qt4 static-libs +svg xcb KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( LGPL-2.1 MPL-1.1 ) -RDEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0 sys-libs/zlib >=x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) +RDEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) REQUIRED_USE=drm? ( X ) gallium? ( drm ) RESTRICT=test SLOT=0 SRC_URI=http://cairographics.org/releases/cairo-1.12.10.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=411d235d63e50d9e65a76a773fc8046f +_md5_=23d6e0f96651689ec0ed18817d7faadf diff --git a/metadata/md5-cache/x11-libs/cairo-1.12.12 b/metadata/md5-cache/x11-libs/cairo-1.12.12 index f20c450988e8..1f94dd486afc 100644 --- a/metadata/md5-cache/x11-libs/cairo-1.12.12 +++ b/metadata/md5-cache/x11-libs/cairo-1.12.12 @@ -1,15 +1,15 @@ DEFINED_PHASES=configure install prepare -DEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0 sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) virtual/pkgconfig >=sys-devel/libtool-2 doc? ( >=dev-util/gtk-doc-1.6 ~app-text/docbook-xml-dtd-4.2 ) X? ( x11-proto/renderproto drm? ( x11-proto/xproto >=x11-proto/xextproto-7.1 ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) virtual/pkgconfig >=sys-devel/libtool-2 doc? ( >=dev-util/gtk-doc-1.6 ~app-text/docbook-xml-dtd-4.2 ) X? ( x11-proto/renderproto drm? ( x11-proto/xproto >=x11-proto/xextproto-7.1 ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A vector graphics library with cross-device output support EAPI=5 HOMEPAGE=http://cairographics.org/ IUSE=X aqua debug directfb doc drm gallium +glib legacy-drivers opengl openvg qt4 static-libs +svg xcb 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 LICENSE=|| ( LGPL-2.1 MPL-1.1 ) -RDEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0 sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) +RDEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) REQUIRED_USE=drm? ( X ) gallium? ( drm ) RESTRICT=test SLOT=0 SRC_URI=http://cairographics.org/releases/cairo-1.12.12.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=4941f2c7fcc7558696978459c59bfd80 +_md5_=01c82a6cf819f74cbf71b0f8188c684e diff --git a/metadata/md5-cache/x11-libs/cairo-1.12.12-r1 b/metadata/md5-cache/x11-libs/cairo-1.12.12-r1 index 92644cbd0053..36914d9e0165 100644 --- a/metadata/md5-cache/x11-libs/cairo-1.12.12-r1 +++ b/metadata/md5-cache/x11-libs/cairo-1.12.12-r1 @@ -1,15 +1,15 @@ DEFINED_PHASES=configure install prepare -DEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0 sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) virtual/pkgconfig >=sys-devel/libtool-2 doc? ( >=dev-util/gtk-doc-1.6 ~app-text/docbook-xml-dtd-4.2 ) X? ( x11-proto/renderproto drm? ( x11-proto/xproto >=x11-proto/xextproto-7.1 ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) virtual/pkgconfig >=sys-devel/libtool-2 doc? ( >=dev-util/gtk-doc-1.6 ~app-text/docbook-xml-dtd-4.2 ) X? ( x11-proto/renderproto drm? ( x11-proto/xproto >=x11-proto/xextproto-7.1 ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=A vector graphics library with cross-device output support EAPI=5 HOMEPAGE=http://cairographics.org/ IUSE=X aqua debug directfb doc drm gallium +glib legacy-drivers opengl openvg qt4 static-libs +svg xcb 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 LICENSE=|| ( LGPL-2.1 MPL-1.1 ) -RDEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0 sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) +RDEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) REQUIRED_USE=drm? ( X ) gallium? ( drm ) RESTRICT=test SLOT=0 SRC_URI=http://cairographics.org/releases/cairo-1.12.12.tar.xz _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=68a06eb7aaf1b0f1ed1bc3c44b4f4e15 +_md5_=2508e9b6cca03a671c01479c906a7bff diff --git a/metadata/md5-cache/x11-libs/cairo-9999 b/metadata/md5-cache/x11-libs/cairo-9999 index 653750cd36ce..21fd9aff9a7a 100644 --- a/metadata/md5-cache/x11-libs/cairo-9999 +++ b/metadata/md5-cache/x11-libs/cairo-9999 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install prepare unpack -DEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0 sys-libs/zlib >=x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) virtual/pkgconfig >=sys-devel/libtool-2 doc? ( >=dev-util/gtk-doc-1.6 ~app-text/docbook-xml-dtd-4.2 ) X? ( x11-proto/renderproto drm? ( x11-proto/xproto >=x11-proto/xextproto-7.1 ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/git +DEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) virtual/pkgconfig >=sys-devel/libtool-2 doc? ( >=dev-util/gtk-doc-1.6 ~app-text/docbook-xml-dtd-4.2 ) X? ( x11-proto/renderproto drm? ( x11-proto/xproto >=x11-proto/xextproto-7.1 ) ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool dev-vcs/git DESCRIPTION=A vector graphics library with cross-device output support EAPI=5 HOMEPAGE=http://cairographics.org/ IUSE=X aqua debug directfb doc drm gallium +glib legacy-drivers opengl openvg qt4 static-libs +svg xcb LICENSE=|| ( LGPL-2.1 MPL-1.1 ) -RDEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0 sys-libs/zlib >=x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) +RDEPEND=media-libs/fontconfig media-libs/freetype:2 media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) glib? ( >=dev-libs/glib-2.28.6:2 ) opengl? ( || ( media-libs/mesa[egl] media-libs/opengl-apple ) ) openvg? ( media-libs/mesa[openvg] ) qt4? ( >=dev-qt/qtgui-4.8:4 ) X? ( >=x11-libs/libXrender-0.6 x11-libs/libXext x11-libs/libX11 drm? ( >=virtual/udev-136 gallium? ( media-libs/mesa[gallium] ) ) ) xcb? ( x11-libs/libxcb x11-libs/xcb-util ) REQUIRED_USE=drm? ( X ) gallium? ( drm ) RESTRICT=test SLOT=0 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de git-2 e92e09651292b1bef5656592364550f7 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=45cc425533e5bc34d16ba6dfa8bffb55 +_md5_=6322b41c24be83273291796d4ddaf4fb diff --git a/metadata/md5-cache/x11-libs/gnome-pty-helper-0.34.2 b/metadata/md5-cache/x11-libs/gnome-pty-helper-0.34.2 index 15648c59d147..5f6ee3a4d6bc 100644 --- a/metadata/md5-cache/x11-libs/gnome-pty-helper-0.34.2 +++ b/metadata/md5-cache/x11-libs/gnome-pty-helper-0.34.2 @@ -4,10 +4,10 @@ DESCRIPTION=GNOME Setuid helper for opening ptys EAPI=4 HOMEPAGE=http://git.gnome.org/browse/vte/ IUSE=+hardened -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux LICENSE=LGPL-2 RDEPEND=!=x11-libs/libXrandr-1.3 x11-libs/libXcursor x11-libs/libXfixes x11-libs/libXcomposite x11-libs/libXdamage >=x11-libs/cairo-1.6:=[X,svg] x11-libs/gdk-pixbuf:2[X,introspection?] ) aqua? ( >=x11-libs/cairo-1.6:=[aqua,svg] x11-libs/gdk-pixbuf:2[introspection?] ) xinerama? ( x11-libs/libXinerama ) >=dev-libs/glib-2.30:2 >=x11-libs/pango-1.20[introspection?] >=dev-libs/atk-1.29.2[introspection?] media-libs/fontconfig x11-misc/shared-mime-info cups? ( net-print/cups:= ) introspection? ( >=dev-libs/gobject-introspection-0.9.3 ) !=x11-libs/gtk+-2.0.3:2 virtual/opengl SLOT=2 SRC_URI=mirror://gnome/sources/gtkglarea/2.0/gtkglarea-2.0.1.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=9c517f524dd5dd97a3707cdfe301f6c6 +_md5_=94313d1a388bb6672ae1ddbe5f7e1c1a diff --git a/metadata/md5-cache/x11-libs/gtkglext-1.2.0-r1 b/metadata/md5-cache/x11-libs/gtkglext-1.2.0-r1 index be98838fe7c6..c785a70821d5 100644 --- a/metadata/md5-cache/x11-libs/gtkglext-1.2.0-r1 +++ b/metadata/md5-cache/x11-libs/gtkglext-1.2.0-r1 @@ -4,10 +4,10 @@ DESCRIPTION=GL extensions for Gtk+ 2.0 EAPI=4 HOMEPAGE=http://gtkglext.sourceforge.net/ IUSE=debug -KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm ~hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/glib-2:2 >=x11-libs/gtk+-2:2 >=x11-libs/pango-1[X] || ( x11-libs/pangox-compat =x11-libs/gtk+-3.4:3[introspection?] >=dev-libs/libxml2-2.6:2 >=dev-libs/glib-2.32:2 glade? ( >=dev-util/glade-3.9:3.10 ) introspection? ( >=dev-libs/gobject-introspection-0.9.0 ) SLOT=3.0 SRC_URI=mirror://gnome/sources/gtksourceview/3.6/gtksourceview-3.6.3.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 virtualx 73cfc129b4b9ba23aed1abb10c825d86 -_md5_=0bae223dc89e04daa056fed8f6772549 +_md5_=9a10cecd4e8389b14ba33f0ae0b23e38 diff --git a/metadata/md5-cache/x11-libs/libdesktop-agnostic-0.3.92 b/metadata/md5-cache/x11-libs/libdesktop-agnostic-0.3.92 index 313ee6124e8f..3300245056f6 100644 --- a/metadata/md5-cache/x11-libs/libdesktop-agnostic-0.3.92 +++ b/metadata/md5-cache/x11-libs/libdesktop-agnostic-0.3.92 @@ -4,10 +4,10 @@ DESCRIPTION=A desktop-agnostic library for GLib-based projects EAPI=4 HOMEPAGE=https://launchpad.net/libdesktop-agnostic IUSE=debug +gconf glade gnome +introspection -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-2 LGPL-2.1 RDEPEND=>=dev-libs/glib-2 dev-python/pygobject:2 dev-python/pygtk:2 x11-libs/gtk+:2 gconf? ( gnome-base/gconf:2 ) glade? ( gnome-base/libglade:2.0 ) gnome? ( gnome-base/gnome-desktop:2 ) =dev-lang/python-2.7* SLOT=0 SRC_URI=http://launchpad.net/libdesktop-agnostic/0.4/0.3.92/+download/libdesktop-agnostic-0.3.92.tar.gz _eclasses_=base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca waf-utils 681b3e9181d1a20ad8d0c186333ddcf7 -_md5_=1bccf52eb1b811b381bd21495bc6ab9d +_md5_=c945c233784d9785216837cbb653fc4b diff --git a/metadata/md5-cache/x11-libs/libwnck-3.4.5 b/metadata/md5-cache/x11-libs/libwnck-3.4.5 index b6f0f65cd147..6574aa623b5f 100644 --- a/metadata/md5-cache/x11-libs/libwnck-3.4.5 +++ b/metadata/md5-cache/x11-libs/libwnck-3.4.5 @@ -4,10 +4,10 @@ DESCRIPTION=A window navigation construction kit EAPI=5 HOMEPAGE=http://www.gnome.org/ IUSE=+introspection startup-notification tools -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris LICENSE=LGPL-2+ RDEPEND=>=x11-libs/gtk+-3.4:3[introspection?] >=dev-libs/glib-2.32:2 x11-libs/libX11 x11-libs/libXres x11-libs/libXext introspection? ( >=dev-libs/gobject-introspection-0.6.14 ) startup-notification? ( >=x11-libs/startup-notification-0.4 ) x86-interix? ( sys-libs/itx-bind ) SLOT=3 SRC_URI=mirror://gnome/sources/libwnck/3.4/libwnck-3.4.5.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa flag-o-matic d900015de4e092f26d8c0a18b6bd60de gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=c41c0f7457da8b2c7daeee62162db26f +_md5_=33537989a5dfe9095896098bd81a689a diff --git a/metadata/md5-cache/x11-libs/rep-gtk-0.90.8.1 b/metadata/md5-cache/x11-libs/rep-gtk-0.90.8.1 index 475c2f89195a..72bdad05d2a6 100644 --- a/metadata/md5-cache/x11-libs/rep-gtk-0.90.8.1 +++ b/metadata/md5-cache/x11-libs/rep-gtk-0.90.8.1 @@ -3,10 +3,10 @@ DEPEND=>=dev-libs/librep-0.90.5 >=dev-libs/glib-2.6:2 >=x11-libs/gtk+-2.24.0:2 > DESCRIPTION=A GTK+/libglade/GNOME language binding for the librep Lisp environment EAPI=4 HOMEPAGE=http://sawfish.wikia.com/wiki/Main_Page -KEYWORDS=alpha amd64 ia64 ppc ~ppc64 sparc x86 +KEYWORDS=alpha amd64 ia64 ppc ~ppc64 sparc x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=>=dev-libs/librep-0.90.5 >=dev-libs/glib-2.6:2 >=x11-libs/gtk+-2.24.0:2 >=x11-libs/gdk-pixbuf-2.23:2 SLOT=gtk-2.0 SRC_URI=http://download.tuxfamily.org/librep/rep-gtk/rep-gtk-0.90.8.1.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9cfe733d637ea0dd029b71441253c53d +_md5_=e4c0f96b04b630cc8160eac2ede25f09 diff --git a/metadata/md5-cache/x11-libs/vte-0.34.2 b/metadata/md5-cache/x11-libs/vte-0.34.2 index 38b7246a5af6..384e149eee22 100644 --- a/metadata/md5-cache/x11-libs/vte-0.34.2 +++ b/metadata/md5-cache/x11-libs/vte-0.34.2 @@ -4,11 +4,11 @@ DESCRIPTION=Library providing a virtual terminal emulator widget. EAPI=4 HOMEPAGE=https://live.gnome.org/Terminal/VTE IUSE=debug glade +introspection debug -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris LICENSE=LGPL-2+ PDEPEND=x11-libs/gnome-pty-helper RDEPEND=>=dev-libs/glib-2.31.13:2 >=x11-libs/gtk+-3.1.9:3[introspection?] >=x11-libs/pango-1.22.0 sys-libs/ncurses x11-libs/libX11 x11-libs/libXft glade? ( >=dev-util/glade-3.9:3.10 ) introspection? ( >=dev-libs/gobject-introspection-0.9.0 ) SLOT=2.90 SRC_URI=mirror://gnome/sources/vte/0.34/vte-0.34.2.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=084634eb8f3632aee0796213de957f90 +_md5_=b6f8e9e82e311d61216eeac962c6a165 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 1311755c536c..98acb4dfed30 100644 --- a/metadata/md5-cache/x11-misc/arandr-0.1.7.1 +++ b/metadata/md5-cache/x11-misc/arandr-0.1.7.1 @@ -9,5 +9,5 @@ LICENSE=GPL-3+ RDEPEND=>=dev-python/pygtk-2[python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_6(-),-python_single_target_python2_7(-)] x11-apps/xrandr python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python: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=http://christian.amsuess.com/tools/arandr/files/arandr-0.1.7.1.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=67afb83bf95d5562a2388227edc583fd diff --git a/metadata/md5-cache/x11-misc/dockmanager-0.1.0 b/metadata/md5-cache/x11-misc/dockmanager-0.1.0 index 7e1ddd5d226c..9b4791f7f8d2 100644 --- a/metadata/md5-cache/x11-misc/dockmanager-0.1.0 +++ b/metadata/md5-cache/x11-misc/dockmanager-0.1.0 @@ -4,10 +4,10 @@ DESCRIPTION=dock-independent helper scripts EAPI=3 HOMEPAGE=https://launchpad.net/dockmanager IUSE=debug debug -KEYWORDS=~amd64 ~x86 +KEYWORDS=amd64 x86 LICENSE=GPL-3 RDEPEND=dev-libs/dbus-glib dev-libs/glib:2 x11-libs/gtk+:2 x11-libs/libdesktop-agnostic =dev-lang/python-2* SLOT=0 SRC_URI=http://launchpad.net/dockmanager/trunk/0.1.0/+download/dockmanager-0.1.0.tar.gz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b python dd56675d8e9f7e85d815a28c87383141 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vala aa890daf29e67d32e9bff8e12ef653ca versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=53cf9cf74fa58847a0d1ffb44b80946e +_md5_=60323da4b3f4042e4aca6499353add17 diff --git a/metadata/md5-cache/x11-misc/menulibre-13.01.4 b/metadata/md5-cache/x11-misc/menulibre-13.01.4 index 8622b4099d5e..d98eaf633248 100644 --- a/metadata/md5-cache/x11-misc/menulibre-13.01.4 +++ b/metadata/md5-cache/x11-misc/menulibre-13.01.4 @@ -9,5 +9,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(-)] x11-libs/gdk-pixbuf[X,introspection] x11-libs/gtk+:3[X,introspection] x11-themes/hicolor-icon-theme python_targets_python2_6? ( dev-lang/python:2.6[xml] ) python_targets_python2_7? ( dev-lang/python: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(-)] SLOT=0 SRC_URI=http://launchpad.net/menulibre/trunk/13.01.4/+download/menulibre_13.01.4.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=bf80216618cc284112bb638d96a569a4 diff --git a/metadata/md5-cache/x11-misc/seetxt-0.72 b/metadata/md5-cache/x11-misc/seetxt-0.72 deleted file mode 100644 index e848a8d3b6aa..000000000000 --- a/metadata/md5-cache/x11-misc/seetxt-0.72 +++ /dev/null @@ -1,11 +0,0 @@ -DEFINED_PHASES=- -DEPEND=x11-libs/gtk+:2 virtual/pkgconfig -DESCRIPTION=Clever, lightweight GUI text file and manual page viewer for X windows. -EAPI=4 -HOMEPAGE=http://code.google.com/p/seetxt/ http://seetxt.sourceforge.net/ -KEYWORDS=~amd64 -LICENSE=GPL-3 -RDEPEND=x11-libs/gtk+:2 -SLOT=0 -SRC_URI=http://seetxt.googlecode.com/files/seetxt-0.72.tar.bz2 -_md5_=2005f687d4f13224cd80ec48a66b57eb diff --git a/metadata/md5-cache/x11-misc/seetxt-0.6 b/metadata/md5-cache/x11-misc/seetxt-0.72-r1 similarity index 77% rename from metadata/md5-cache/x11-misc/seetxt-0.6 rename to metadata/md5-cache/x11-misc/seetxt-0.72-r1 index c6eaebb6ce91..300a5a56e845 100644 --- a/metadata/md5-cache/x11-misc/seetxt-0.6 +++ b/metadata/md5-cache/x11-misc/seetxt-0.72-r1 @@ -1,12 +1,12 @@ DEFINED_PHASES=install prepare DEPEND=x11-libs/gtk+:2 virtual/pkgconfig || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool DESCRIPTION=Clever, lightweight GUI text file and manual page viewer for X windows. -EAPI=3 -HOMEPAGE=http://code.google.com/p/seetxt/ +EAPI=5 +HOMEPAGE=http://code.google.com/p/seetxt/ http://seetxt.sourceforge.net/ KEYWORDS=~amd64 LICENSE=GPL-3 RDEPEND=x11-libs/gtk+:2 SLOT=0 -SRC_URI=http://seetxt.googlecode.com/files/see-0.6.tar.bz2 +SRC_URI=http://seetxt.googlecode.com/files/seetxt-0.72.tar.bz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=653c9bd64a4483aec5f17bd148c189fa +_md5_=a33e0d181e4dfd4590897422e6f40c02 diff --git a/metadata/md5-cache/x11-terms/gnome-terminal-2.32.1-r1 b/metadata/md5-cache/x11-terms/gnome-terminal-2.32.1-r1 index a3be4a9d097f..acef934efb82 100644 --- a/metadata/md5-cache/x11-terms/gnome-terminal-2.32.1-r1 +++ b/metadata/md5-cache/x11-terms/gnome-terminal-2.32.1-r1 @@ -3,10 +3,10 @@ DEPEND=>=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.18:2 >=gnome-base/gconf-2.31. DESCRIPTION=The Gnome Terminal EAPI=4 HOMEPAGE=http://www.gnome.org/ -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux LICENSE=GPL-3 RDEPEND=>=dev-libs/glib-2.25.12:2 >=x11-libs/gtk+-2.18:2 >=gnome-base/gconf-2.31.3 >=x11-libs/vte-0.26.0:0 x11-libs/libSM gnome-base/libgnome SLOT=0 SRC_URI=mirror://gnome/sources/gnome-terminal/2.32/gnome-terminal-2.32.1.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=d61b6d4325fa76c013dc7980d3a70891 +_md5_=e646c4b06b15b165cb557fcb9a6dd9b5 diff --git a/metadata/md5-cache/x11-terms/terminator-0.96-r2 b/metadata/md5-cache/x11-terms/terminator-0.96-r2 index 126d66e0a668..e8cb4843828e 100644 --- a/metadata/md5-cache/x11-terms/terminator-0.96-r2 +++ b/metadata/md5-cache/x11-terms/terminator-0.96-r2 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/keybinder:0[python] x11-libs/vte:0[python] dbus? ( sys-apps/dbus ) gnome? ( dev-python/gconf-python dev-python/libgnome-python 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(-)] ) libnotify? ( dev-python/notify-python[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 ) python_targets_python2_7? ( dev-lang/python: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=http://launchpad.net/terminator/trunk/0.96/+download/terminator_0.96.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e 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 65e89e20b142..2ab5ef05f572 100644 --- a/metadata/md5-cache/x11-terms/terminator-0.96-r3 +++ b/metadata/md5-cache/x11-terms/terminator-0.96-r3 @@ -9,5 +9,5 @@ LICENSE=GPL-2 RDEPEND=dev-libs/keybinder:0[python] x11-libs/vte:0[python] dbus? ( sys-apps/dbus ) gnome? ( dev-python/gconf-python dev-python/libgnome-python 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(-)] ) libnotify? ( dev-python/notify-python[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 ) python_targets_python2_7? ( dev-lang/python: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=http://launchpad.net/terminator/trunk/0.96/+download/terminator_0.96.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 _md5_=edfc2fec2a1a572f23594af0f1827b91 diff --git a/metadata/md5-cache/x11-terms/terra-9999 b/metadata/md5-cache/x11-terms/terra-9999 index df7123e625d2..b8d6e3c98b26 100644 --- a/metadata/md5-cache/x11-terms/terra-9999 +++ b/metadata/md5-cache/x11-terms/terra-9999 @@ -7,5 +7,5 @@ IUSE=python_targets_python2_6 python_targets_python2_7 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 ) python_targets_python2_7? ( dev-lang/python: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 -_eclasses_=bzr 876798528c0cd872742b74bf784738cf distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=bzr 876798528c0cd872742b74bf784738cf distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=2f409f1cf064dbe52c5e6899ca32d118 diff --git a/metadata/md5-cache/x11-themes/gnome-icon-theme-3.6.2 b/metadata/md5-cache/x11-themes/gnome-icon-theme-3.6.2 index a3f3b627a819..7edd14b7867e 100644 --- a/metadata/md5-cache/x11-themes/gnome-icon-theme-3.6.2 +++ b/metadata/md5-cache/x11-themes/gnome-icon-theme-3.6.2 @@ -4,11 +4,11 @@ DESCRIPTION=GNOME default icon theme EAPI=5 HOMEPAGE=http://www.gnome.org/ http://people.freedesktop.org/~jimmac/icons/#git IUSE=branding -KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris +KEYWORDS=alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris LICENSE=|| ( LGPL-3 CC-BY-SA-3.0 ) branding? ( CC-Sampling-Plus-1.0 ) RDEPEND=>=x11-themes/hicolor-icon-theme-0.10 RESTRICT=binchecks strip SLOT=0 SRC_URI=mirror://gnome/sources/gnome-icon-theme/3.6/gnome-icon-theme-3.6.2.tar.xz branding? ( http://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz ) _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=e44b07b9f9841ad1f247527778c69978 +_md5_=6944f53fb2df99d43ba53c225b591afa diff --git a/metadata/md5-cache/x11-themes/gnome-icon-theme-symbolic-3.6.2 b/metadata/md5-cache/x11-themes/gnome-icon-theme-symbolic-3.6.2 index 983095f493e5..1c99ca77c532 100644 --- a/metadata/md5-cache/x11-themes/gnome-icon-theme-symbolic-3.6.2 +++ b/metadata/md5-cache/x11-themes/gnome-icon-theme-symbolic-3.6.2 @@ -3,11 +3,11 @@ DEPEND=>=x11-themes/hicolor-icon-theme-0.10 >=x11-misc/icon-naming-utils-0.8.7 v DESCRIPTION=Symbolic icons for GNOME default icon theme EAPI=5 HOMEPAGE=http://www.gnome.org/ -KEYWORDS=alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux +KEYWORDS=alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux LICENSE=CC-BY-SA-3.0 RDEPEND=>=x11-themes/hicolor-icon-theme-0.10 !=gnome-extra/gnome-power-manager-3.0* !=gnome-extra/gnome-power-manager-3.1* RESTRICT=binchecks strip SLOT=0 SRC_URI=mirror://gnome/sources/gnome-icon-theme-symbolic/3.6/gnome-icon-theme-symbolic-3.6.2.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome.org 8fef8f967214f56e08fa92d61163d891 gnome2 96ca31031ada9967bcf96a4fd8977ae4 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 versionator 6601b4c5b3f019a993db59a50e1854e4 -_md5_=2074608537292d63f9410fa0b5ac0ba7 +_md5_=fe050563b7dd8436e6b891e61152de7d diff --git a/metadata/md5-cache/x11-themes/sound-theme-freedesktop-0.8 b/metadata/md5-cache/x11-themes/sound-theme-freedesktop-0.8 index 4693a2bcfea6..482181d5a241 100644 --- a/metadata/md5-cache/x11-themes/sound-theme-freedesktop-0.8 +++ b/metadata/md5-cache/x11-themes/sound-theme-freedesktop-0.8 @@ -3,8 +3,8 @@ DEPEND=sys-devel/gettext dev-libs/glib:2 >=dev-util/intltool-0.40 DESCRIPTION=Default freedesktop.org sound theme following the XDG theming specification EAPI=5 HOMEPAGE=http://www.freedesktop.org/wiki/Specifications/sound-theme-spec -KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris +KEYWORDS=alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris LICENSE=GPL-2 LGPL-2 CC-BY-3.0 CC-BY-SA-2.0 SLOT=0 SRC_URI=http://people.freedesktop.org/~mccann/dist/sound-theme-freedesktop-0.8.tar.bz2 -_md5_=914368e6b25794a2163af6f66f4577bf +_md5_=0788ec8af9aad8872b092905ac3d19c2 diff --git a/metadata/md5-cache/x11-wm/afterstep-2.2.11-r1 b/metadata/md5-cache/x11-wm/afterstep-2.2.11-r1 new file mode 100644 index 000000000000..69a6bfcb3183 --- /dev/null +++ b/metadata/md5-cache/x11-wm/afterstep-2.2.11-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare +DEPEND=media-libs/freetype alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) jpeg? ( virtual/jpeg ) gif? ( >=media-libs/giflib-4.1.0 ) gtk? ( x11-libs/gtk+:2 ) png? ( media-libs/libpng:0= ) svg? ( gnome-base/librsvg:2 ) tiff? ( media-libs/tiff:0 ) x11-libs/libICE x11-libs/libXext x11-libs/libSM x11-libs/libXmu x11-libs/libXt x11-libs/libX11 x11-libs/libXpm x11-libs/libXrender xinerama? ( x11-libs/libXinerama ) !!media-libs/libafterimage x11-proto/xextproto x11-proto/xproto xinerama? ( x11-proto/xineramaproto ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=A feature rich NeXTish window manager +EAPI=5 +HOMEPAGE=http://www.afterstep.org/ +IUSE=alsa debug dbus gif gtk jpeg mmx nls png svg tiff xinerama +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd +LICENSE=GPL-2 LGPL-2.1 +RDEPEND=media-libs/freetype alsa? ( media-libs/alsa-lib ) dbus? ( sys-apps/dbus ) jpeg? ( virtual/jpeg ) gif? ( >=media-libs/giflib-4.1.0 ) gtk? ( x11-libs/gtk+:2 ) png? ( media-libs/libpng:0= ) svg? ( gnome-base/librsvg:2 ) tiff? ( media-libs/tiff:0 ) x11-libs/libICE x11-libs/libXext x11-libs/libSM x11-libs/libXmu x11-libs/libXt x11-libs/libX11 x11-libs/libXpm x11-libs/libXrender xinerama? ( x11-libs/libXinerama ) +SLOT=0 +SRC_URI=ftp://ftp.afterstep.org/stable/AfterStep-2.2.11.tar.bz2 mirror://sourceforge/afterstep/AfterStep-2.2.11.tar.bz2 +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=845d4ad7f0556782547bae1be19758b6 diff --git a/metadata/md5-cache/x11-wm/compiz-0.8.8-r1 b/metadata/md5-cache/x11-wm/compiz-0.8.8-r3 similarity index 57% rename from metadata/md5-cache/x11-wm/compiz-0.8.8-r1 rename to metadata/md5-cache/x11-wm/compiz-0.8.8-r3 index 36c32f32c79d..ee3423911542 100644 --- a/metadata/md5-cache/x11-wm/compiz-0.8.8-r1 +++ b/metadata/md5-cache/x11-wm/compiz-0.8.8-r3 @@ -1,13 +1,13 @@ DEFINED_PHASES=configure install postinst preinst prepare prerm -DEPEND=>=dev-libs/glib-2 dev-libs/libxml2 dev-libs/libxslt media-libs/libpng:0 >=media-libs/mesa-6.5.1-r1 >=x11-base/xorg-server-1.1.1-r1 >=x11-libs/libX11-1.4 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXinerama x11-libs/libXrandr x11-libs/libICE x11-libs/libSM >=x11-libs/libXrender-0.8.4 >=x11-libs/startup-notification-0.7 virtual/glu cairo? ( x11-libs/cairo[X] ) dbus? ( >=sys-apps/dbus-1.0 dev-libs/dbus-glib ) fuse? ( sys-fs/fuse ) gnome? ( >=gnome-base/gnome-control-center-2.16.1:2 gnome-base/gnome-desktop:2 gconf? ( gnome-base/gconf:2 ) ) gtk? ( >=x11-libs/gtk+-2.8.0:2 >=x11-libs/libwnck-2.18.3:1 x11-libs/pango ) kde? ( || ( >=kde-base/kwin-4.2.0 kde-base/kwin:live ) ) svg? ( >=gnome-base/librsvg-2.14.0:2 >=x11-libs/cairo-1.0 ) virtual/pkgconfig x11-proto/damageproto x11-proto/xineramaproto || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 +DEPEND=>=dev-libs/glib-2 dev-libs/libxml2 dev-libs/libxslt media-libs/libpng:0= >=media-libs/mesa-6.5.1-r1 >=x11-base/xorg-server-1.1.1-r1 >=x11-libs/libX11-1.4 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXinerama x11-libs/libXrandr x11-libs/libICE x11-libs/libSM >=x11-libs/libXrender-0.8.4 >=x11-libs/startup-notification-0.7 virtual/glu cairo? ( x11-libs/cairo[X] ) dbus? ( >=sys-apps/dbus-1.0 dev-libs/dbus-glib ) fuse? ( sys-fs/fuse ) gnome? ( >=gnome-base/gnome-control-center-2.16.1:2 gnome-base/gnome-desktop:2 gconf? ( gnome-base/gconf:2 ) ) gtk? ( >=x11-libs/gtk+-2.8.0:2 >=x11-libs/libwnck-2.18.3:1 x11-libs/pango ) kde? ( || ( >=kde-base/kwin-4.2.0 kde-base/kwin:live ) ) svg? ( >=gnome-base/librsvg-2.14.0:2 >=x11-libs/cairo-1.0 ) virtual/pkgconfig x11-proto/damageproto x11-proto/xineramaproto || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool >=sys-apps/sed-4 DESCRIPTION=OpenGL window and compositing manager -EAPI=4 +EAPI=5 HOMEPAGE=http://www.compiz.org/ IUSE=+cairo dbus fuse gnome gconf gtk kde +svg KEYWORDS=~amd64 ~ppc ~ppc64 ~x86 LICENSE=GPL-2 LGPL-2.1 MIT -RDEPEND=>=dev-libs/glib-2 dev-libs/libxml2 dev-libs/libxslt media-libs/libpng:0 >=media-libs/mesa-6.5.1-r1 >=x11-base/xorg-server-1.1.1-r1 >=x11-libs/libX11-1.4 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXinerama x11-libs/libXrandr x11-libs/libICE x11-libs/libSM >=x11-libs/libXrender-0.8.4 >=x11-libs/startup-notification-0.7 virtual/glu cairo? ( x11-libs/cairo[X] ) dbus? ( >=sys-apps/dbus-1.0 dev-libs/dbus-glib ) fuse? ( sys-fs/fuse ) gnome? ( >=gnome-base/gnome-control-center-2.16.1:2 gnome-base/gnome-desktop:2 gconf? ( gnome-base/gconf:2 ) ) gtk? ( >=x11-libs/gtk+-2.8.0:2 >=x11-libs/libwnck-2.18.3:1 x11-libs/pango ) kde? ( || ( >=kde-base/kwin-4.2.0 kde-base/kwin:live ) ) svg? ( >=gnome-base/librsvg-2.14.0:2 >=x11-libs/cairo-1.0 ) x11-apps/mesa-progs x11-apps/xdpyinfo x11-apps/xset x11-apps/xvinfo +RDEPEND=>=dev-libs/glib-2 dev-libs/libxml2 dev-libs/libxslt media-libs/libpng:0= >=media-libs/mesa-6.5.1-r1 >=x11-base/xorg-server-1.1.1-r1 >=x11-libs/libX11-1.4 x11-libs/libxcb x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXinerama x11-libs/libXrandr x11-libs/libICE x11-libs/libSM >=x11-libs/libXrender-0.8.4 >=x11-libs/startup-notification-0.7 virtual/glu cairo? ( x11-libs/cairo[X] ) dbus? ( >=sys-apps/dbus-1.0 dev-libs/dbus-glib ) fuse? ( sys-fs/fuse ) gnome? ( >=gnome-base/gnome-control-center-2.16.1:2 gnome-base/gnome-desktop:2 gconf? ( gnome-base/gconf:2 ) ) gtk? ( >=x11-libs/gtk+-2.8.0:2 >=x11-libs/libwnck-2.18.3:1 x11-libs/pango ) kde? ( || ( >=kde-base/kwin-4.2.0 kde-base/kwin:live ) ) svg? ( >=gnome-base/librsvg-2.14.0:2 >=x11-libs/cairo-1.0 ) x11-apps/mesa-progs x11-apps/xdpyinfo x11-apps/xset x11-apps/xvinfo SLOT=0 SRC_URI=http://releases.compiz.org/0.8.8/compiz-0.8.8.tar.bz2 _eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=5c22620b6da5c639b0cff0d4bfa86dcf +_md5_=5fb4aba10ce7d30aae8a626ab7473006 diff --git a/metadata/md5-cache/x11-wm/jwm-2.1.0 b/metadata/md5-cache/x11-wm/jwm-2.1.0 index 1225606d747a..68c154216c8b 100644 --- a/metadata/md5-cache/x11-wm/jwm-2.1.0 +++ b/metadata/md5-cache/x11-wm/jwm-2.1.0 @@ -4,10 +4,10 @@ DESCRIPTION=Very fast and lightweight still powerful window manager for X EAPI=4 HOMEPAGE=http://joewing.net/programs/jwm/ IUSE=bidi debug jpeg png truetype xinerama xpm -KEYWORDS=amd64 hppa ppc x86 +KEYWORDS=amd64 hppa ppc x86 ~x86-fbsd LICENSE=GPL-2 RDEPEND=xpm? ( x11-libs/libXpm ) xinerama? ( x11-libs/libXinerama ) x11-libs/libXext x11-libs/libXrender x11-libs/libXau x11-libs/libXdmcp truetype? ( x11-libs/libXft ) png? ( media-libs/libpng ) jpeg? ( virtual/jpeg ) bidi? ( dev-libs/fribidi ) dev-libs/expat SLOT=0 SRC_URI=http://joewing.net/programs/jwm/releases/jwm-2.1.0.tar.bz2 _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=7670522546be15219f47317f68039438 +_md5_=922a1188027a2b4434e4606b991b4260 diff --git a/metadata/md5-cache/x11-wm/notion-3_p2013030200 b/metadata/md5-cache/x11-wm/notion-3_p2013030200 new file mode 100644 index 000000000000..68a10adcf4f8 --- /dev/null +++ b/metadata/md5-cache/x11-wm/notion-3_p2013030200 @@ -0,0 +1,13 @@ +DEFINED_PHASES=install postinst prepare +DEPEND=dev-lang/lua x11-libs/libSM x11-libs/libX11 x11-libs/libXext nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) virtual/pkgconfig +DESCRIPTION=Notion is a tiling, tabbed window manager for the X window system +EAPI=4 +HOMEPAGE=http://notion.sourceforge.net +IUSE=nls xinerama +xrandr +KEYWORDS=~amd64 ~x86 +LICENSE=LGPL-2.1 +RDEPEND=dev-lang/lua x11-libs/libSM x11-libs/libX11 x11-libs/libXext nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) +SLOT=0 +SRC_URI=mirror://sourceforge/notion/files/notion-3-2013030200-src.tar.bz2 +_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=14d9f1b9cf37b25df331e9f3378f09d3 diff --git a/metadata/md5-cache/x11-wm/qtile-0.5-r1 b/metadata/md5-cache/x11-wm/qtile-0.5-r1 index f2c53787bca5..647386da1cd9 100644 --- a/metadata/md5-cache/x11-wm/qtile-0.5-r1 +++ b/metadata/md5-cache/x11-wm/qtile-0.5-r1 @@ -10,5 +10,5 @@ RDEPEND=>=dev-python/pycairo-1.10.0-r3[xcb] dev-python/pygtk:2 >=x11-libs/xpyb-1 RESTRICT=test SLOT=0 SRC_URI=https://github.com/qtile/qtile/archive/v0.5.tar.gz -> qtile-0.5.tar.gz -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 vcs-snapshot 3facff03591093044e38f21285a02129 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=f737147bdb3341c26bfa77509645a0f4 diff --git a/metadata/md5-cache/x11-wm/qtile-9999 b/metadata/md5-cache/x11-wm/qtile-9999 index 08fbdf67361b..48d35533850c 100644 --- a/metadata/md5-cache/x11-wm/qtile-9999 +++ b/metadata/md5-cache/x11-wm/qtile-9999 @@ -8,5 +8,5 @@ LICENSE=MIT RDEPEND=>=dev-python/pycairo-1.10.0-r3[xcb] dev-python/pygtk:2 >=x11-libs/xpyb-1.3.1 python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] RESTRICT=test SLOT=0 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 git-2 e92e09651292b1bef5656592364550f7 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 _md5_=d668acafef86ae822a4142e93be11527 diff --git a/metadata/md5-cache/x11-wm/sawfish-1.9.1 b/metadata/md5-cache/x11-wm/sawfish-1.9.1 index ec4375127195..4260e13cd373 100644 --- a/metadata/md5-cache/x11-wm/sawfish-1.9.1 +++ b/metadata/md5-cache/x11-wm/sawfish-1.9.1 @@ -4,10 +4,10 @@ DESCRIPTION=Extensible window manager using a Lisp-based scripting language EAPI=4 HOMEPAGE=http://sawfish.wikia.com/ IUSE=nls xinerama -KEYWORDS=alpha amd64 ia64 ppc ~ppc64 ~sh sparc x86 +KEYWORDS=alpha amd64 ia64 ppc ~ppc64 sh sparc x86 LICENSE=GPL-2 Artistic-2 RDEPEND=>=dev-libs/librep-0.92.1 >=x11-libs/rep-gtk-0.90.7 >=x11-libs/pango-1.8.0[X] >=x11-libs/gtk+-2.24.0:2 x11-libs/libXtst nls? ( sys-devel/gettext ) xinerama? ( x11-libs/libXinerama ) SLOT=0 SRC_URI=http://download.tuxfamily.org/sawfish/sawfish-1.9.1.tar.xz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=f78cd859e603d111d57f95d14adc01e5 +_md5_=ab434c298d01fa1456befa62f3b34d50 diff --git a/metadata/md5-cache/x11-wm/windowmaker-0.95.2 b/metadata/md5-cache/x11-wm/windowmaker-0.95.2 deleted file mode 100644 index db9e928db6ce..000000000000 --- a/metadata/md5-cache/x11-wm/windowmaker-0.95.2 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install prepare -DEPEND=media-libs/fontconfig >=x11-libs/libXft-2.1.0 x11-libs/libXmu x11-libs/libXt x11-libs/libXv gif? ( >=media-libs/giflib-4.1.0-r3 ) png? ( media-libs/libpng:0 ) jpeg? ( virtual/jpeg ) tiff? ( media-libs/tiff:0 ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) -DESCRIPTION=The fast and light GNUstep window manager -EAPI=4 -HOMEPAGE=http://www.windowmaker.org/ -IUSE=gif jpeg nls png tiff modelock xinerama xrandr -KEYWORDS=~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris -LICENSE=GPL-2 -RDEPEND=media-libs/fontconfig >=x11-libs/libXft-2.1.0 x11-libs/libXmu x11-libs/libXt x11-libs/libXv gif? ( >=media-libs/giflib-4.1.0-r3 ) png? ( media-libs/libpng:0 ) jpeg? ( virtual/jpeg ) tiff? ( media-libs/tiff:0 ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) nls? ( >=sys-devel/gettext-0.10.39 ) -SLOT=0 -SRC_URI=http://windowmaker.org/pub/source/release/WindowMaker-0.95.2.tar.gz http://www.windowmaker.org/pub/source/release/WindowMaker-extra-0.1.tar.gz -_eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=9186852a5d640df0c189e2a9176aaadb diff --git a/metadata/md5-cache/x11-wm/windowmaker-0.95.4-r1 b/metadata/md5-cache/x11-wm/windowmaker-0.95.4-r1 new file mode 100644 index 000000000000..f52120ed5454 --- /dev/null +++ b/metadata/md5-cache/x11-wm/windowmaker-0.95.4-r1 @@ -0,0 +1,13 @@ +DEFINED_PHASES=compile configure install prepare +DEPEND=media-libs/fontconfig >=x11-libs/libXft-2.1.0 x11-libs/libXmu x11-libs/libXt x11-libs/libXv gif? ( >=media-libs/giflib-4.1.0-r3 ) png? ( media-libs/libpng:0= ) jpeg? ( virtual/jpeg ) tiff? ( media-libs/tiff:0 ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) || ( >=sys-devel/automake-1.11.1:1.11 >=sys-devel/automake-1.12:1.12 ) >=sys-devel/autoconf-2.68 sys-devel/libtool +DESCRIPTION=The fast and light GNUstep window manager +EAPI=5 +HOMEPAGE=http://www.windowmaker.org/ +IUSE=gif jpeg nls png tiff modelock xinerama xrandr +KEYWORDS=~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris +LICENSE=GPL-2 +RDEPEND=media-libs/fontconfig >=x11-libs/libXft-2.1.0 x11-libs/libXmu x11-libs/libXt x11-libs/libXv gif? ( >=media-libs/giflib-4.1.0-r3 ) png? ( media-libs/libpng:0= ) jpeg? ( virtual/jpeg ) tiff? ( media-libs/tiff:0 ) xinerama? ( x11-libs/libXinerama ) xrandr? ( x11-libs/libXrandr ) nls? ( >=sys-devel/gettext-0.10.39 ) +SLOT=0 +SRC_URI=http://windowmaker.org/pub/source/release/WindowMaker-0.95.4.tar.gz http://www.windowmaker.org/pub/source/release/WindowMaker-extra-0.1.tar.gz +_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 eutils 36e6377b0e31856b6d62af831661c4f3 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_md5_=581b6ffff5bb0fb41c8b0b2ecf0c4962 diff --git a/metadata/md5-cache/x11-wm/wmii-3.9.2-r3 b/metadata/md5-cache/x11-wm/wmii-3.9.2-r3 index e3321bc32b40..e0e8a2ee497f 100644 --- a/metadata/md5-cache/x11-wm/wmii-3.9.2-r3 +++ b/metadata/md5-cache/x11-wm/wmii-3.9.2-r3 @@ -3,10 +3,10 @@ DEPEND=>=sys-libs/libixp-0.5_p20110208-r3 x11-libs/libXft x11-libs/libXext x11-l DESCRIPTION=A dynamic window manager for X11 EAPI=2 HOMEPAGE=http://wmii.suckless.org/ -KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~x86 +KEYWORDS=~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd LICENSE=MIT RDEPEND=>=sys-libs/libixp-0.5_p20110208-r3 x11-libs/libXft x11-libs/libXext x11-libs/libXrandr x11-libs/libXrender x11-libs/libX11 x11-libs/libXinerama >=media-libs/freetype-2 x11-apps/xmessage x11-apps/xsetroot media-fonts/font-misc-misc SLOT=0 SRC_URI=http://dl.suckless.org/wmii/wmii+ixp-3.9.2.tbz _eclasses_=eutils 36e6377b0e31856b6d62af831661c4f3 flag-o-matic d900015de4e092f26d8c0a18b6bd60de multilib ded93e450747134a079e647d888aa80b toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 -_md5_=2326f3a72718830f74cd3cbd7bdcec24 +_md5_=ac9e6b3f5f70254dfb74886a702405da diff --git a/metadata/md5-cache/x11-wm/xpra-0.8.1-r1 b/metadata/md5-cache/x11-wm/xpra-0.8.1-r1 index 735fff19b774..a5c718429e33 100644 --- a/metadata/md5-cache/x11-wm/xpra-0.8.1-r1 +++ b/metadata/md5-cache/x11-wm/xpra-0.8.1-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 BSD RDEPEND=dev-python/pygobject:2 dev-python/pygtk:2 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst vpx? ( media-libs/libvpx virtual/ffmpeg ) webp? ( media-libs/libwebp ) x264? ( media-libs/x264 virtual/ffmpeg ) dev-python/dbus-python dev-python/imaging dev-python/ipython virtual/ssh x11-apps/setxkbmap x11-apps/xmodmap server? ( x11-base/xorg-server[-minimal] x11-drivers/xf86-input-void x11-drivers/xf86-video-dummy ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://xpra.org/src/xpra-0.8.1.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d readme.gentoo 2705553a0f031d715b57878cc0d9bf64 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d readme.gentoo 2705553a0f031d715b57878cc0d9bf64 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=257001569bc6691e64660587eaca506e diff --git a/metadata/md5-cache/x11-wm/xpra-0.8.6-r1 b/metadata/md5-cache/x11-wm/xpra-0.8.6-r1 index 80ca52d4c698..d1212cb105ca 100644 --- a/metadata/md5-cache/x11-wm/xpra-0.8.6-r1 +++ b/metadata/md5-cache/x11-wm/xpra-0.8.6-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 BSD RDEPEND=dev-python/pygobject:2 dev-python/pygtk:2 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst vpx? ( media-libs/libvpx virtual/ffmpeg ) webp? ( media-libs/libwebp ) x264? ( media-libs/x264 || ( >=media-video/ffmpeg-1.0.4 media-video/libav ) virtual/ffmpeg ) dev-python/dbus-python dev-python/imaging dev-python/ipython virtual/ssh x11-apps/setxkbmap x11-apps/xmodmap server? ( x11-base/xorg-server[-minimal] x11-drivers/xf86-input-void x11-drivers/xf86-video-dummy ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://xpra.org/src/xpra-0.8.6.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d readme.gentoo 2705553a0f031d715b57878cc0d9bf64 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d readme.gentoo 2705553a0f031d715b57878cc0d9bf64 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=449c802dfa34fcb348199f66f659b66a diff --git a/metadata/md5-cache/x11-wm/xpra-0.8.7 b/metadata/md5-cache/x11-wm/xpra-0.8.7 index 6636c1f5c5c1..9a65de873864 100644 --- a/metadata/md5-cache/x11-wm/xpra-0.8.7 +++ b/metadata/md5-cache/x11-wm/xpra-0.8.7 @@ -9,5 +9,5 @@ LICENSE=GPL-2 BSD RDEPEND=dev-python/pygobject:2 dev-python/pygtk:2 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst vpx? ( media-libs/libvpx virtual/ffmpeg ) webp? ( media-libs/libwebp ) x264? ( media-libs/x264 || ( >=media-video/ffmpeg-1.0.4 media-video/libav ) virtual/ffmpeg ) dev-python/dbus-python dev-python/imaging dev-python/ipython virtual/ssh x11-apps/setxkbmap x11-apps/xmodmap server? ( x11-base/xorg-server[-minimal] x11-drivers/xf86-input-void x11-drivers/xf86-video-dummy ) python_targets_python2_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://xpra.org/src/xpra-0.8.7.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d readme.gentoo 2705553a0f031d715b57878cc0d9bf64 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d readme.gentoo 2705553a0f031d715b57878cc0d9bf64 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=f2e290d871fa1999d7c4855c6ea21d84 diff --git a/metadata/md5-cache/x11-wm/xpra-0.8.7-r1 b/metadata/md5-cache/x11-wm/xpra-0.8.7-r1 index a966a71ee4aa..da6b54e8c3cd 100644 --- a/metadata/md5-cache/x11-wm/xpra-0.8.7-r1 +++ b/metadata/md5-cache/x11-wm/xpra-0.8.7-r1 @@ -9,5 +9,5 @@ LICENSE=GPL-2 BSD RDEPEND=dev-python/pygobject:2 dev-python/pygtk:2 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst vpx? ( media-libs/libvpx virtual/ffmpeg ) webp? ( media-libs/libwebp ) x264? ( media-libs/x264 || ( >=media-video/ffmpeg-1.0.4 media-video/libav ) virtual/ffmpeg ) dev-python/dbus-python dev-python/imaging dev-python/ipython 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_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://xpra.org/src/xpra-0.8.7.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=d05969843deaeaf9d29d9d40bb47183e diff --git a/metadata/md5-cache/x11-wm/xpra-0.8.8 b/metadata/md5-cache/x11-wm/xpra-0.8.8 index a606a948c210..95868e793cb1 100644 --- a/metadata/md5-cache/x11-wm/xpra-0.8.8 +++ b/metadata/md5-cache/x11-wm/xpra-0.8.8 @@ -9,5 +9,5 @@ LICENSE=GPL-2 BSD RDEPEND=dev-python/pygobject:2 dev-python/pygtk:2 x11-libs/libX11 x11-libs/libXcomposite x11-libs/libXdamage x11-libs/libXfixes x11-libs/libXrandr x11-libs/libXtst vpx? ( media-libs/libvpx virtual/ffmpeg ) webp? ( media-libs/libwebp ) x264? ( media-libs/x264 || ( >=media-video/ffmpeg-1.0.4 media-video/libav ) virtual/ffmpeg ) dev-python/dbus-python dev-python/imaging dev-python/ipython 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_5? ( dev-lang/python:2.5 ) python_targets_python2_6? ( dev-lang/python:2.6 ) python_targets_python2_7? ( dev-lang/python:2.7 ) dev-python/python-exec[python_targets_python2_5(-)?,python_targets_python2_6(-)?,python_targets_python2_7(-)?,-python_single_target_python2_5(-),-python_single_target_python2_6(-),-python_single_target_python2_7(-)] SLOT=0 SRC_URI=http://xpra.org/src/xpra-0.8.8.tar.bz2 -_eclasses_=distutils-r1 a825223f3beb0f0bb370e51b7c1d4160 eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 +_eclasses_=distutils-r1 164527827998977f18bc3a1eccc88b4a eutils 36e6377b0e31856b6d62af831661c4f3 multibuild 32fd04fe3ee97494341710886fd70dfe multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 python-r1 052a2872c3d341495152eb93212374e9 python-utils-r1 1aecc1aa688dad02e66772dcd9d0053d toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 _md5_=7aea50d53b8f9ddc0d2a1463d51071a2 diff --git a/metadata/md5-cache/xfce-base/exo-0.10.1 b/metadata/md5-cache/xfce-base/exo-0.10.1 deleted file mode 100644 index 1e1218082870..000000000000 --- a/metadata/md5-cache/xfce-base/exo-0.10.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30 dev-perl/URI >=x11-libs/gtk+-2.24:2 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 dev-util/intltool sys-devel/gettext virtual/pkgconfig >=sys-apps/sed-4 -DESCRIPTION=Extensions, widgets and framework library with session support for the Xfce desktop environment -EAPI=5 -HOMEPAGE=http://www.xfce.org/projects/ -IUSE=debug -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris -LICENSE=GPL-2 LGPL-2.1 -RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30 dev-perl/URI >=x11-libs/gtk+-2.24:2 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 -SLOT=0 -SRC_URI=mirror://xfce/src/xfce/exo/0.10/exo-0.10.1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 xfconf ba58c6f43e7fdfc116752aa58b488d83 -_md5_=4c0975c7365d4647e75424fca485bf50 diff --git a/metadata/md5-cache/xfce-base/thunar-1.6.1 b/metadata/md5-cache/xfce-base/thunar-1.6.1 deleted file mode 100644 index d5e3a92809a1..000000000000 --- a/metadata/md5-cache/xfce-base/thunar-1.6.1 +++ /dev/null @@ -1,14 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup test unpack -DEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30 >=x11-libs/gdk-pixbuf-2.14 >=x11-libs/gtk+-2.24:2 >=xfce-base/exo-0.10 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 dbus? ( >=dev-libs/dbus-glib-0.100 ) exif? ( >=media-libs/libexif-0.6.19 ) libnotify? ( >=x11-libs/libnotify-0.7 ) pcre? ( >=dev-libs/libpcre-6 ) startup-notification? ( x11-libs/startup-notification ) udev? ( virtual/udev[gudev] ) xfce_plugins_trash? ( >=xfce-base/xfce4-panel-4.10 ) dev-util/intltool sys-devel/gettext virtual/pkgconfig test? ( !prefix? ( x11-base/xorg-server[xvfb] ) x11-apps/xhost ) >=sys-apps/sed-4 -DESCRIPTION=File manager for the Xfce desktop environment -EAPI=5 -HOMEPAGE=http://www.xfce.org/projects/ http://thunar.xfce.org/ -IUSE=+dbus debug exif libnotify pcre startup-notification test +xfce_plugins_trash udev test -KEYWORDS=~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2 LGPL-2 -RDEPEND=>=dev-lang/perl-5.6 >=dev-libs/glib-2.30 >=x11-libs/gdk-pixbuf-2.14 >=x11-libs/gtk+-2.24:2 >=xfce-base/exo-0.10 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 dbus? ( >=dev-libs/dbus-glib-0.100 ) exif? ( >=media-libs/libexif-0.6.19 ) libnotify? ( >=x11-libs/libnotify-0.7 ) pcre? ( >=dev-libs/libpcre-6 ) startup-notification? ( x11-libs/startup-notification ) udev? ( virtual/udev[gudev] ) xfce_plugins_trash? ( >=xfce-base/xfce4-panel-4.10 ) >=dev-util/desktop-file-utils-0.20-r1 x11-misc/shared-mime-info dbus? ( >=gnome-base/gvfs-1.10.1 ) udev? ( || ( >=gnome-base/gvfs-1.10.1[udisks,udev] >=gnome-base/gvfs-1.10.1[gdu,udev] ) ) xfce_plugins_trash? ( >=gnome-base/gvfs-1.10.1 ) -REQUIRED_USE=xfce_plugins_trash? ( dbus ) -SLOT=0 -SRC_URI=mirror://xfce/src/xfce/thunar/1.6/Thunar-1.6.1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 virtualx 73cfc129b4b9ba23aed1abb10c825d86 xfconf ba58c6f43e7fdfc116752aa58b488d83 -_md5_=d8e2ea553cd17d6812f17c83bb6934de diff --git a/metadata/md5-cache/xfce-base/xfdesktop-4.10.1 b/metadata/md5-cache/xfce-base/xfdesktop-4.10.1 deleted file mode 100644 index 96128208167a..000000000000 --- a/metadata/md5-cache/xfce-base/xfdesktop-4.10.1 +++ /dev/null @@ -1,13 +0,0 @@ -DEFINED_PHASES=compile configure install postinst postrm preinst prepare setup unpack -DEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-2.24:2 x11-libs/libSM >=x11-libs/libwnck-2.30:1 x11-libs/libX11 >=xfce-base/exo-0.8 >=xfce-base/garcon-0.2 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libnotify? ( >=x11-libs/libnotify-0.7 ) thunar? ( >=xfce-base/thunar-1.6[dbus] >=dev-libs/dbus-glib-0.100 ) dev-util/intltool sys-devel/gettext virtual/pkgconfig >=sys-apps/sed-4 -DESCRIPTION=Desktop manager for the Xfce desktop environment -EAPI=5 -HOMEPAGE=http://www.xfce.org/projects/ -IUSE=debug libnotify thunar -KEYWORDS=~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris -LICENSE=GPL-2 -RDEPEND=>=dev-libs/glib-2.20 >=x11-libs/gtk+-2.24:2 x11-libs/libSM >=x11-libs/libwnck-2.30:1 x11-libs/libX11 >=xfce-base/exo-0.8 >=xfce-base/garcon-0.2 >=xfce-base/libxfce4ui-4.10 >=xfce-base/libxfce4util-4.10 >=xfce-base/xfconf-4.10 libnotify? ( >=x11-libs/libnotify-0.7 ) thunar? ( >=xfce-base/thunar-1.6[dbus] >=dev-libs/dbus-glib-0.100 ) -SLOT=0 -SRC_URI=mirror://xfce/src/xfce/xfdesktop/4.10/xfdesktop-4.10.1.tar.bz2 -_eclasses_=autotools cf83655b19ed98f9ea3b44f4572b51a3 base ec46b36a6f6fd1d0b505a33e0b74e413 eutils 36e6377b0e31856b6d62af831661c4f3 fdo-mime 0acfe1a88fd8751a1d5dc671168219fa gnome2-utils 794d2847b4af390a1e020924876c8297 libtool 2b273eea1976cfaed3449345d94331ac multilib ded93e450747134a079e647d888aa80b multiprocessing a2130e6fc4aa4c6a24b265ca0cbcc2b6 toolchain-funcs 69a2016af67775a812f4c03ba4b0e03e user d0a4d0735a6c0183d707ca919bd72f28 xfconf ba58c6f43e7fdfc116752aa58b488d83 -_md5_=588304b3159a0408d522d47a6f26d013 diff --git a/metadata/news/timestamp.chk b/metadata/news/timestamp.chk index 2ea0551feaf4..900f115d299a 100644 --- a/metadata/news/timestamp.chk +++ b/metadata/news/timestamp.chk @@ -1 +1 @@ -Mon, 08 Apr 2013 12:36:58 +0000 +Wed, 10 Apr 2013 19:07:41 +0000 diff --git a/metadata/timestamp b/metadata/timestamp index 923ebcea3553..0a2a3ee90565 100644 --- a/metadata/timestamp +++ b/metadata/timestamp @@ -1 +1 @@ -Mon Apr 8 12:36:56 UTC 2013 +Wed Apr 10 19:07:39 UTC 2013 diff --git a/metadata/timestamp.chk b/metadata/timestamp.chk index 3bd4cf4017ed..a968bcd55ceb 100644 --- a/metadata/timestamp.chk +++ b/metadata/timestamp.chk @@ -1 +1 @@ -Mon, 08 Apr 2013 13:00:01 +0000 +Wed, 10 Apr 2013 19:30:01 +0000 diff --git a/metadata/timestamp.x b/metadata/timestamp.x index 9120e8fac121..80882ef6e38e 100644 --- a/metadata/timestamp.x +++ b/metadata/timestamp.x @@ -1 +1 @@ -1365424501 Mon Apr 8 12:35:01 2013 UTC +1365620701 Wed Apr 10 19:05:01 2013 UTC diff --git a/net-analyzer/dnstracer/Manifest b/net-analyzer/dnstracer/Manifest index 94d4941fbb23..9965be9d6781 100644 --- a/net-analyzer/dnstracer/Manifest +++ b/net-analyzer/dnstracer/Manifest @@ -1,2 +1 @@ -DIST dnstracer-1.8.tar.gz 130234 SHA256 21a63fc158a9c150ff952ac6425513bed8cb975c2d816b8d9c6bf7658a5aabf8 SHA512 87a5326541fb027342a9046abdd0b171e5f07a40d981a95422dabf20911b09ecb0b4c88df82dc131383ffbcbfd8f1789a6ab699e614cd8a150d5e3447cbebdc3 WHIRLPOOL 4c5de29ca36d045864981751b1ca833ec027383db58629e408909824a87fd4a2f7e8a15341dc6c6127e0d64601110adc79d90770d549a33fbbe895d07c027bb4 DIST dnstracer-1.9.tar.gz 130884 SHA256 2ebc08af9693ba2d9fa0628416f2d8319ca1627e41d64553875d605b352afe9c SHA512 e69fe772062ff315ff3148c26df78bd41c75d11dcfa6431f1e9374e6069182bd80826b22dc116011d975838d9527913d46edd78de049edd25e3ac9247d5f3473 WHIRLPOOL 4654c6a2ecacd8529097b114b8d0b3300800c85a241239a8fae54d4e46048e54617bb6109280b1ad0f2126cc7528c29292bbadae4a9332d5fcb6aaf4aded993e diff --git a/net-analyzer/dnstracer/dnstracer-1.8.ebuild b/net-analyzer/dnstracer/dnstracer-1.8.ebuild deleted file mode 100644 index 070c11c7106b..000000000000 --- a/net-analyzer/dnstracer/dnstracer-1.8.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/dnstracer/dnstracer-1.8.ebuild,v 1.12 2012/12/08 11:55:45 pinkbyte Exp $ - -inherit flag-o-matic - -DESCRIPTION="Determines where a given nameserver gets its information from" -HOMEPAGE="http://www.mavetju.org/unix/general.php" -SRC_URI="http://www.mavetju.org/download/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 arm hppa ia64 ~ppc ppc64 s390 sparc x86" -IUSE="ipv6" - -DEPEND="" -RDEPEND="" - -src_compile() { - econf $(use_enable ipv6) || die - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die - dodoc README CHANGES -} diff --git a/net-analyzer/dnstracer/dnstracer-1.9-r1.ebuild b/net-analyzer/dnstracer/dnstracer-1.9-r1.ebuild index b05453530283..3b7050c2d2a5 100644 --- a/net-analyzer/dnstracer/dnstracer-1.9-r1.ebuild +++ b/net-analyzer/dnstracer/dnstracer-1.9-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/net-analyzer/dnstracer/dnstracer-1.9-r1.ebuild,v 1.1 2012/12/08 12:10:17 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/dnstracer/dnstracer-1.9-r1.ebuild,v 1.2 2013/04/08 18:07:57 jer Exp $ EAPI=5 @@ -10,12 +10,9 @@ SRC_URI="http://www.mavetju.org/download/${P}.tar.gz" LICENSE="BSD-2" SLOT="0" -KEYWORDS="~amd64 ~amd64-linux ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86" +KEYWORDS="amd64 arm hppa ia64 ~ppc ppc64 s390 sparc x86 ~amd64-linux" IUSE="ipv6" -DEPEND="" -RDEPEND="" - DOCS=( CHANGES README ) src_configure() { diff --git a/net-analyzer/dnstracer/dnstracer-1.9.ebuild b/net-analyzer/dnstracer/dnstracer-1.9.ebuild deleted file mode 100644 index 499c83cf7b1c..000000000000 --- a/net-analyzer/dnstracer/dnstracer-1.9.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/dnstracer/dnstracer-1.9.ebuild,v 1.7 2012/12/08 11:55:45 pinkbyte Exp $ - -inherit flag-o-matic - -DESCRIPTION="Determines where a given nameserver gets its information from" -HOMEPAGE="http://www.mavetju.org/unix/general.php" -SRC_URI="http://www.mavetju.org/download/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 arm hppa ia64 ~ppc ppc64 s390 sparc x86" -IUSE="ipv6" - -DEPEND="" -RDEPEND="" - -src_compile() { - econf $(use_enable ipv6) || die - emake || die -} - -src_install() { - make DESTDIR="${D}" install || die - dodoc README CHANGES -} diff --git a/net-analyzer/snort/files/snort.rc12 b/net-analyzer/snort/files/snort.rc12 new file mode 100644 index 000000000000..34ef5c4f09b2 --- /dev/null +++ b/net-analyzer/snort/files/snort.rc12 @@ -0,0 +1,61 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/files/snort.rc12,v 1.1 2013/04/10 18:33:19 chainsaw Exp $ + +extra_commands="checkconfig" +extra_started_commands="reload" + +depend() { + need net + after mysql + after postgresql +} + +checkconfig() { + if [ ! -e ${SNORT_CONF} ] ; then + eerror "You need a configuration file to run snort" + eerror "There is an example config in /etc/snort/snort.conf.distrib" + return 1 + fi + if [ ! -d "/var/run/snort" ] ; then + checkpath -d /var/run/snort + fi +} + +start() { + checkconfig || return 1 + ebegin "Starting snort" + start-stop-daemon --start --quiet --exec /usr/bin/snort \ + -- --nolock-pidfile --pid-path /var/run/snort -D -i ${SNORT_IFACE} \ + -c ${SNORT_CONF} >/dev/null 2>&1 + eend $? +} + +stop() { + ebegin "Stopping snort" + start-stop-daemon --stop --quiet --pidfile /var/run/snort/snort_${SNORT_IFACE}.pid + # Snort needs a few seconds to fully shutdown + sleep 15 + eend $? +} + +reload() { + + local SNORT_PID="`cat /var/run/snort/snort_${SNORT_IFACE}.pid`" + local SNORT_USER="`ps -p ${SNORT_PID} --no-headers -o user`" + + if [ ! -f /var/run/snort/snort_${SNORT_IFACE}.pid ]; then + eerror "Snort isn't running" + return 1 + elif [ ${SNORT_USER} != root ]; then + eerror "Snort must be running as root for reload to work!" + return 1 + else + checkconfig || return 1 + ebegin "Reloading Snort" + start-stop-daemon --signal HUP --pidfile /var/run/snort/snort_${SNORT_IFACE}.pid + fi +} + + diff --git a/net-analyzer/snort/snort-2.9.2.3-r1.ebuild b/net-analyzer/snort/snort-2.9.2.3-r1.ebuild new file mode 100644 index 000000000000..db9762263c75 --- /dev/null +++ b/net-analyzer/snort/snort-2.9.2.3-r1.ebuild @@ -0,0 +1,258 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/snort/snort-2.9.2.3-r1.ebuild,v 1.1 2013/04/10 18:33:19 chainsaw Exp $ + +EAPI="5" +inherit autotools multilib user + +DESCRIPTION="The de facto standard for intrusion detection/prevention" +HOMEPAGE="http://www.snort.org/" +SRC_URI="http://www.snort.org/dl/snort-current/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="static +dynamicplugin +zlib +gre +mpls +targetbased +decoder-preprocessor-rules ++ppm +perfprofiling linux-smp-stats inline-init-failopen +threads debug +active-response ++normalizer reload-error-restart +react +flexresp3 +paf large-pcap-64bit +aruba mysql odbc postgres selinux" + +DEPEND=">=net-libs/libpcap-1.0.0 + >=net-libs/daq-0.6 + >=dev-libs/libpcre-6.0 + dev-libs/libdnet + postgres? ( dev-db/postgresql-base ) + mysql? ( virtual/mysql ) + odbc? ( dev-db/unixODBC ) + zlib? ( sys-libs/zlib )" + +RDEPEND="${DEPEND} + selinux? ( sec-policy/selinux-snort )" + +REQUIRED_USE="zlib? ( dynamicplugin )" + +pkg_setup() { + + # pre_inst() is a better place to put this + # but we need it here for the 'fowners' statements in src_install() + enewgroup snort + enewuser snort -1 -1 /dev/null snort + +} + +src_prepare() { + + #Multilib fix for the sf_engine + ebegin "Applying multilib fix" + sed -i -e 's|${exec_prefix}/lib|${exec_prefix}/'$(get_libdir)'|g' \ + "${WORKDIR}/${P}/src/dynamic-plugins/sf_engine/Makefile.am" \ + || die "sed for sf_engine failed" + + #Multilib fix for the curent set of dynamic-preprocessors + for i in ftptelnet smtp ssh dns ssl dcerpc2 sdf imap pop rzb_saac sip reputation gtp modbus dnp3; do + sed -i -e 's|${exec_prefix}/lib|${exec_prefix}/'$(get_libdir)'|g' \ + "${WORKDIR}/${P}/src/dynamic-preprocessors/$i/Makefile.am" \ + || die "sed for $i failed." + done + eend + + AT_M4DIR=m4 eautoreconf +} + +src_configure() { + + econf \ + $(use_enable !static shared) \ + $(use_enable static) \ + $(use_enable static so-with-static-lib) \ + $(use_enable dynamicplugin) \ + $(use_enable zlib) \ + $(use_enable gre) \ + $(use_enable mpls) \ + $(use_enable targetbased) \ + $(use_enable decoder-preprocessor-rules) \ + $(use_enable ppm) \ + $(use_enable perfprofiling) \ + $(use_enable linux-smp-stats) \ + $(use_enable inline-init-failopen) \ + $(use_enable threads pthread) \ + $(use_enable debug) \ + $(use_enable debug debug-msgs) \ + $(use_enable debug corefiles) \ + $(use_enable !debug dlclose) \ + $(use_enable active-response) \ + $(use_enable normalizer) \ + $(use_enable reload-error-restart) \ + $(use_enable react) \ + $(use_enable flexresp3) \ + $(use_enable paf) \ + $(use_enable large-pcap-64bit large-pcap) \ + $(use_enable aruba) \ + $(use_with mysql) \ + $(use_with odbc) \ + $(use_with postgres postgresql) \ + --enable-ipv6 \ + --enable-reload \ + --disable-prelude \ + --disable-build-dynamic-examples \ + --disable-profile \ + --disable-ppm-test \ + --disable-intel-soft-cpm \ + --disable-static-daq \ + --disable-rzb-saac \ + --without-oracle +} + +src_install() { + + emake DESTDIR="${D}" install + + dodir /var/log/snort \ + /var/run/snort \ + /etc/snort/rules \ + /etc/snort/so_rules \ + /usr/$(get_libdir)/snort_dynamicrules + + # config.log and build.log are needed by Sourcefire + # to trouble shoot build problems and bug reports so we are + # perserving them incase the user needs upstream support. + dodoc RELEASE.NOTES ChangeLog \ + doc/* \ + tools/u2boat/README.u2boat \ + schemas/* + + insinto /etc/snort + doins etc/attribute_table.dtd \ + etc/classification.config \ + etc/gen-msg.map \ + etc/reference.config \ + etc/threshold.conf \ + etc/unicode.map + + # We use snort.conf.distrib because the config file is complicated + # and the one shipped with snort can change drastically between versions. + # Users should migrate setting by hand and not with etc-update. + newins etc/snort.conf snort.conf.distrib + + # config.log and build.log are needed by Sourcefire + # to troubleshoot build problems and bug reports so we are + # preserving them incase the user needs upstream support. + if [ -f "${WORKDIR}/${PF}/config.log" ]; then + dodoc "${WORKDIR}/${PF}/config.log" + fi + if [ -f "${T}/build.log" ]; then + dodoc "${T}/build.log" + fi + + insinto /etc/snort/preproc_rules + doins preproc_rules/decoder.rules \ + preproc_rules/preprocessor.rules \ + preproc_rules/sensitive-data.rules + + fowners -R snort:snort \ + /var/log/snort \ + /var/run/snort \ + /etc/snort + + newinitd "${FILESDIR}/snort.rc12" snort + newconfd "${FILESDIR}/snort.confd.2" snort + + # Sourcefire uses Makefiles to install docs causing Bug #297190. + # This removes the unwanted doc directory and rogue Makefiles. + rm -rf "${D}"usr/share/doc/snort || die "Failed to remove SF doc directories" + rm "${D}"usr/share/doc/"${PF}"/Makefile* || die "Failed to remove doc make files" + + #Remove unneeded .la files (Bug #382863) + rm "${D}"usr/$(get_libdir)/snort_dynamicengine/libsf_engine.la || die + rm "${D}"usr/$(get_libdir)/snort_dynamicpreprocessor/libsf_*_preproc.la || die "Failed to remove libsf_?_preproc.la" + + # Set the correct lib path for dynamicengine, dynamicpreprocessor, and dynamicdetection + sed -i -e 's|/usr/local/lib|/usr/'$(get_libdir)'|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Set the correct rule location in the config + sed -i -e 's|RULE_PATH ../rules|RULE_PATH /etc/snort/rules|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Set the correct preprocessor/decoder rule location in the config + sed -i -e 's|PREPROC_RULE_PATH ../preproc_rules|PREPROC_RULE_PATH /etc/snort/preproc_rules|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Enable the preprocessor/decoder rules + sed -i -e 's|^# include $PREPROC_RULE_PATH|include $PREPROC_RULE_PATH|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + sed -i -e 's|^# dynamicdetection directory|dynamicdetection directory|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Just some clean up of trailing /'s in the config + sed -i -e 's|snort_dynamicpreprocessor/$|snort_dynamicpreprocessor|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Make it clear in the config where these are... + sed -i -e 's|^include classification.config|include /etc/snort/classification.config|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + sed -i -e 's|^include reference.config|include /etc/snort/reference.config|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Disable all rule files by default. + sed -i -e 's|^include $RULE_PATH|# include $RULE_PATH|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Disable normalizer preprocessor config if normalizer USE flag not set. + if ! use normalizer; then + sed -i -e 's|^preprocessor normalize|#preprocessor normalize|g' \ + "${D}etc/snort/snort.conf.distrib" || die + fi + + # Set the configured DAQ to afpacket + sed -i -e 's|^# config daq: |config daq: afpacket|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Set the location of the DAQ modules + sed -i -e 's|^# config daq_dir: |config daq_dir: /usr/'$(get_libdir)'/daq|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Set the DAQ mode to passive + sed -i -e 's|^# config daq_mode: |config daq_mode: passive|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Set snort to run as snort:snort + sed -i -e 's|^# config set_gid:|config set_gid: snort|g' \ + "${D}etc/snort/snort.conf.distrib" || die + sed -i -e 's|^# config set_uid:|config set_uid: snort|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Set the default log dir + sed -i -e 's|^# config logdir:|config logdir: /var/log/snort/|g' \ + "${D}etc/snort/snort.conf.distrib" || die + + # Set the correct so_rule location in the config + sed -i -e 's|SO_RULE_PATH ../so_rules|SO_RULE_PATH /etc/snort/so_rules|g' \ + "${D}etc/snort/snort.conf.distrib" || die +} + +pkg_postinst() { + + einfo "There have been a number of improvements and new features" + einfo "added to ${P}. Please review the RELEASE.NOTES and" + einfo "ChangLog located in /usr/share/doc/${PF}." + einfo + elog "The Sourcefire Vulnerability Research Team (VRT) recommends that" + elog "users migrate their snort.conf customizations to the latest config" + elog "file released by the VRT. You can find the latest version of the" + elog "Snort config file in /etc/snort/snort.conf.distrib." + elog + elog "!! It is important that you migrate to this new snort.conf file !!" + elog + elog "This version of the ebuild includes an updated init.d file and" + elog "conf.d file that rely on options found in the latest Snort" + elog "config file provided by the VRT." + + if use debug; then + elog "You have the 'debug' USE flag enabled. If this has been done to" + elog "troubleshoot an issue by producing a core dump or a back trace," + elog "then you need to also ensure the FEATURES variable in make.conf" + elog "contains the 'nostrip' option." + fi +} diff --git a/net-dns/bind/bind-9.9.2_p2.ebuild b/net-dns/bind/bind-9.9.2_p2.ebuild index 190eb40ca622..d24fa91bce9c 100644 --- a/net-dns/bind/bind-9.9.2_p2.ebuild +++ b/net-dns/bind/bind-9.9.2_p2.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/bind/bind-9.9.2_p2.ebuild,v 1.2 2013/04/08 05:41:23 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.9.2_p2.ebuild,v 1.5 2013/04/10 14:42:07 jer Exp $ # Re dlz/mysql and threads, needs to be verified.. # MySQL uses thread local storage in its C api. Thus MySQL @@ -52,7 +52,7 @@ SRC_URI="ftp://ftp.isc.org/isc/bind9/${MY_PV}/${MY_P}.tar.gz LICENSE="ISC BSD BSD-2 HPND JNIC openssl" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" IUSE="berkdb caps dlz doc filter-aaaa geoip gost gssapi idn ipv6 ldap mysql odbc postgres python rpz rrl sdb-ldap selinux ssl static-libs threads urandom xml" # no PKCS11 currently as it requires OpenSSL to be patched, also see bug 409687 diff --git a/net-dns/dnswalk/dnswalk-2.0.2.ebuild b/net-dns/dnswalk/dnswalk-2.0.2.ebuild index a88a293965b9..34cab468d307 100644 --- a/net-dns/dnswalk/dnswalk-2.0.2.ebuild +++ b/net-dns/dnswalk/dnswalk-2.0.2.ebuild @@ -1,20 +1,20 @@ -# 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/net-dns/dnswalk/dnswalk-2.0.2.ebuild,v 1.17 2012/08/06 01:18:44 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/dnswalk/dnswalk-2.0.2.ebuild,v 1.18 2013/04/08 18:00:48 ulm Exp $ EAPI=4 -S=${WORKDIR} DESCRIPTION="dnswalk is a DNS database debugger" -SRC_URI="mirror://sourceforge/dnswalk/${P}.tar.gz" HOMEPAGE="http://sourceforge.net/projects/dnswalk/" +SRC_URI="mirror://sourceforge/dnswalk/${P}.tar.gz" -DEPEND=">=dev-perl/Net-DNS-0.12" - +LICENSE="freedist" SLOT="0" -LICENSE="as-is" KEYWORDS="amd64 ppc sparc x86 ~amd64-linux ~x86-linux ~x86-macos" -IUSE="" + +RDEPEND=">=dev-perl/Net-DNS-0.12" + +S=${WORKDIR} src_prepare() { sed -i 's:#!/usr/contrib/bin/perl:#!'"${EPREFIX}"'/usr/bin/perl:' dnswalk diff --git a/net-fs/cifs-utils/cifs-utils-5.9-r1.ebuild b/net-fs/cifs-utils/cifs-utils-5.9-r1.ebuild index 7d87123f7943..4034b7e7a16e 100644 --- a/net-fs/cifs-utils/cifs-utils-5.9-r1.ebuild +++ b/net-fs/cifs-utils/cifs-utils-5.9-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-fs/cifs-utils/cifs-utils-5.9-r1.ebuild,v 1.6 2013/04/05 20:29:15 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-fs/cifs-utils/cifs-utils-5.9-r1.ebuild,v 1.7 2013/04/10 17:14:28 jer Exp $ EAPI=4 @@ -12,7 +12,7 @@ SRC_URI="ftp://ftp.samba.org/pub/linux-cifs/${PN}/${P}.tar.bz2" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux" +KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~arm-linux ~x86-linux" IUSE="ads +caps caps-ng creds upcall" DEPEND="!net-fs/mount-cifs diff --git a/net-ftp/proftpd/Manifest b/net-ftp/proftpd/Manifest index 2dc91c12efd1..9d601d5a4b91 100644 --- a/net-ftp/proftpd/Manifest +++ b/net-ftp/proftpd/Manifest @@ -8,4 +8,5 @@ DIST proftpd-mod-case-0.4.tar.gz 4849 SHA256 5c724a2a57a00048529bfab6c5672e16c7c DIST proftpd-mod-case-0.7.tar.gz 13184 SHA256 c3f65588250fea7771439933fa754927794f664e99b8d20f99b1e400fea62111 SHA512 c08d13ef82fec36ae75aa3213dd02e0ce4045904849f422e152f039a9da66a45e4423751074b8bcf8ce347a40ce0e7bde798a85cbadc962fd872aeaa898261fc WHIRLPOOL 27f49e9f34099c081add803aa679fd9abe7afa652dffe5d8e42889fef49aeaefd499e1009fc564d6c8f882b3c6dc31d4c6dd08cc06a42b770e7ef76a2ebfcf8a DIST proftpd-mod-deflate-0.5.4.tar.gz 55219678 SHA256 6ae753608ad126067bd48da8d4ea6ac3ef8eaf339ae924ffdbe30d1819a5e5db SHA512 54a12759d820fae68f4038c05b7eb8dc0a47bfdab7a6715b37bee8ab82b032b4b929cb604126cdb305f87fc93dbd06730652db5e18d66baaab4c7788181f6dcf WHIRLPOOL ade43782adc25843abfdf61b26008a0af7ffe6d40f1f5887ae5dd2875f2282c67ae11a527e07ed8e53a4b868c71c36de00336a8502cf4afae0c71c259a0c4b03 DIST proftpd-mod-diskuse-0.9.tar.gz 18596 SHA256 424f3fd49237245ec176d27ade0965fe21a0db1d645979d5ae3e55497e3da036 SHA512 d41976bf2810e4b783e775e8c767ca2030c3b5df116219fd31cbbac7feaf9922c315bf4ea092881b0d6cf43f2f4c5dbcae61be3c3a833058d12f962a3024b975 WHIRLPOOL aabd1dc23d6c38d308e859ff778beffd0dabfe70d3530c093cf2f95e80b5e9c94b97b6b5ae5109d031f76ff94dffc3822a7aa60fa30df04523d37ebed99730d6 +DIST proftpd-mod-msg-0.4.1.tar.gz 8082 SHA256 255b79d31dc509ffad5d0fbcd469f833a8481e880aa962910c2bc8aa608ca6da SHA512 38ea63b1d355e1e10a6a4477596bf3fa28529a871c9fb8dbf093b5317f0743ef9cb59b986d0b8c1c7ed932dad5d5d571883d596fad2d3b793431824db4487012 WHIRLPOOL ff907e26a354f53231fed94515eb60050dec77118be6f49147e0eb8b79e50c9d73354618bca19d98d32a3fb79d7ba87507cc6c8b269f259c5fcf23d44ad3a906 DIST proftpd-mod-vroot-0.9.2.tar.gz 22438 SHA256 b0ea7af760ab7a54a62ac294656b5a34a5339665c0227ade0d2f206cc54a10bf SHA512 dcaad222a5d4bbd8202782c89ec3ba700ee9b74f475a575b5044eca570515d7aa9e01735ab6a109b669f3584f3e2f1fe22c96a9effdc0e8d2d62fa522b9a5ec3 WHIRLPOOL e25ee3333f1f7324068b177e9fc7333a9a5c7c5993e9654082b4ef685b478a2db40c2a350ec6739cf76eae11d9a79e3c67331b0df8607a3620e4ce2d64d2b774 diff --git a/net-ftp/proftpd/files/proftpd-1.3.4c-fix-build-noipv6.patch b/net-ftp/proftpd/files/proftpd-1.3.4c-fix-build-noipv6.patch new file mode 100644 index 000000000000..937fff019415 --- /dev/null +++ b/net-ftp/proftpd/files/proftpd-1.3.4c-fix-build-noipv6.patch @@ -0,0 +1,23 @@ +Fix buld failure of USE=-ipv6 case. + +> netaddr.c: In function 'get_addr_by_name': +> netaddr.c:694:3: warning: control reaches end of non-void function [-Wreturn-type] +> } +> ^ + +Fixes: http://bugs.gentoo.org/465134 +Patch-by: Yuri Shatroff +diff --git a/src/netaddr.c b/src/netaddr.c +index 9dbc716..2b025b6 100644 +--- a/src/netaddr.c ++++ b/src/netaddr.c +@@ -690,8 +690,8 @@ static pr_netaddr_t *get_addr_by_name(pool *p, const char *name, + pr_freeaddrinfo(info); + } + } +-#endif /* PR_USE_IPV6 */ + } ++#endif /* PR_USE_IPV6 */ + + return na; + } diff --git a/net-ftp/proftpd/metadata.xml b/net-ftp/proftpd/metadata.xml index b9eabd8c4080..b5c409338f75 100644 --- a/net-ftp/proftpd/metadata.xml +++ b/net-ftp/proftpd/metadata.xml @@ -31,6 +31,7 @@ server. Enable support for the mod_deflate module Enable support for the mod_diskuse module Enable support for the mod_dso module + Enable support for the mod_dynmasq module, for dynamically updating MasqueradeAddress for dyndns-like scenarios) Enable support for the mod_exec module. WARNING: this could be a security risk Enable support for the mod_ident module Enable support for the ifsession module @@ -41,6 +42,7 @@ server. Language support for ja_JP Language support for ru_RU Enable support for the mod_memcache module, for using memcached servers + Enable support for the mod_msg module, allows system users to send messages to connected clients via the ftpdctl program. Enable dev-libs/openssl support Enable support for the mod_qos module Enable support for the mod_ratio module diff --git a/net-ftp/proftpd/proftpd-1.3.4c-r1.ebuild b/net-ftp/proftpd/proftpd-1.3.4c-r1.ebuild new file mode 100644 index 000000000000..d2fc5afadb12 --- /dev/null +++ b/net-ftp/proftpd/proftpd-1.3.4c-r1.ebuild @@ -0,0 +1,236 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/proftpd-1.3.4c-r1.ebuild,v 1.1 2013/04/09 20:22:24 slyfox Exp $ + +EAPI=5 +inherit eutils multilib systemd + +MOD_CASE="0.7" +MOD_CLAMAV="0.11rc" +MOD_DISKUSE="0.9" +MOD_GSS="1.3.3" +MOD_MSG="0.4.1" +MOD_VROOT="0.9.2" + +DESCRIPTION="An advanced and very configurable FTP server." +HOMEPAGE="http://www.proftpd.org/ + http://www.castaglia.org/proftpd/ + http://www.thrallingpenguin.com/resources/mod_clamav.htm + http://gssmod.sourceforge.net/" +SRC_URI="ftp://ftp.proftpd.org/distrib/source/${P/_/}.tar.gz + case? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-case-${MOD_CASE}.tar.gz ) + clamav? ( https://secure.thrallingpenguin.com/redmine/attachments/download/1/mod_clamav-${MOD_CLAMAV}.tar.gz ) + diskuse? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-diskuse-${MOD_DISKUSE}.tar.gz ) + kerberos? ( mirror://sourceforge/gssmod/mod_gss-${MOD_GSS}.tar.gz ) + msg? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-msg-${MOD_MSG}.tar.gz ) + vroot? ( http://www.castaglia.org/${PN}/modules/${PN}-mod-vroot-${MOD_VROOT}.tar.gz )" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="acl authfile ban +caps case clamav copy ctrls deflate diskuse doc dso dynmasq exec ifsession ifversion ident ipv6 + kerberos ldap linguas_bg_BG linguas_en_US linguas_fr_FR linguas_it_IT linguas_ja_JP linguas_ko_KR + linguas_ru_RU linguas_zh_CN linguas_zh_TW memcache msg mysql ncurses nls openssl pam +pcre postgres qos radius + ratio readme rewrite selinux sftp shaper sitemisc softquota sqlite ssl tcpd test trace vroot xinetd" +REQUIRED_USE="ban? ( ctrls ) + msg? ( ctrls ) + sftp? ( openssl ) + shaper? ( ctrls ) + ssl? ( openssl )" + +CDEPEND="acl? ( virtual/acl ) + caps? ( sys-libs/libcap ) + clamav? ( app-antivirus/clamav ) + kerberos? ( virtual/krb5 ) + ldap? ( net-nds/openldap ) + memcache? ( >=dev-libs/libmemcached-0.41 ) + mysql? ( virtual/mysql ) + nls? ( virtual/libiconv ) + ncurses? ( sys-libs/ncurses ) + openssl? ( dev-libs/openssl ) + pam? ( virtual/pam ) + pcre? ( dev-libs/libpcre ) + postgres? ( dev-db/postgresql-base ) + sqlite? ( dev-db/sqlite:3 ) + xinetd? ( virtual/inetd )" +DEPEND="${CDEPEND} + test? ( dev-libs/check )" +RDEPEND="${CDEPEND} + net-ftp/ftpbase + selinux? ( sec-policy/selinux-ftp )" + +S="${WORKDIR}/${P/_/}" + +__prepare_module() { + mv "${WORKDIR}"/$1/$1.c contrib + mv "${WORKDIR}"/$1/$1.html doc/contrib + rm -r "${WORKDIR}"/$1 +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-fix-build-noipv6.patch #465134 + + # Skip 'install-conf' / Support LINGUAS + sed -i -e "/install-all/s/ install-conf//" Makefile.in + sed -i -e "s/^LANGS=.*$/LANGS=${LINGUAS}/" locale/Makefile.in + + # Prepare external modules + use case && __prepare_module mod_case + if use clamav ; then + mv "${WORKDIR}"/mod_clamav-${MOD_CLAMAV}/mod_clamav.{c,h} contrib + epatch "${WORKDIR}"/mod_clamav-${MOD_CLAMAV}/${PN}.patch + rm -r "${WORKDIR}"/mod_clamav-${MOD_CLAMAV} + fi + use msg && __prepare_module mod_msg + use vroot && __prepare_module mod_vroot + + # Prepare external kerberos module + if use kerberos ; then + cd "${WORKDIR}"/mod_gss-${MOD_GSS} + + # Support app-crypt/heimdal / Gentoo Bug #284853 + sed -i -e "s/krb5_principal2principalname/_\0/" mod_auth_gss.c.in + + # Remove obsolete DES / Gentoo Bug #324903 + # Replace 'rpm' lookups / Gentoo Bug #391021 + sed -i -e "/ac_gss_libs/s/ -ldes425//" \ + -e "s/ac_libdir=\`rpm -q -l.*$/ac_libdir=\/usr\/$(get_libdir)\//" \ + -e "s/ac_includedir=\`rpm -q -l.*$/ac_includedir=\/usr\/include\//" configure{,.in} + fi +} + +src_configure() { + local c m + + use acl && m="${m}:mod_facl" + use ban && m="${m}:mod_ban" + use case && m="${m}:mod_case" + use clamav && m="${m}:mod_clamav" + use copy && m="${m}:mod_copy" + use ctrls && m="${m}:mod_ctrls_admin" + use deflate && m="${m}:mod_deflate" + if use diskuse ; then + cd "${WORKDIR}"/mod_diskuse + econf + mv mod_diskuse.{c,h} "${S}"/contrib + mv mod_diskuse.html "${S}"/doc/contrib + cd "${S}" + rm -r "${WORKDIR}"/mod_diskuse + m="${m}:mod_diskuse" + fi + use dynmasq && mym="${mym}:mod_dynmasq" + use exec && m="${m}:mod_exec" + use ifsession && m="${m}:mod_ifsession" + use ifversion && m="${m}:mod_ifversion" + if use kerberos ; then + cd "${WORKDIR}"/mod_gss-${MOD_GSS} + if has_version app-crypt/mit-krb5 ; then + econf --enable-mit + else + econf --enable-heimdal + fi + mv mod_{auth_gss,gss}.c "${S}"/contrib + mv mod_gss.h "${S}"/include + mv README.mod_{auth_gss,gss} "${S}" + mv mod_gss.html "${S}"/doc/contrib + mv rfc{1509,2228}.txt "${S}"/doc/rfc + cd "${S}" + rm -r "${WORKDIR}"/mod_gss-${MOD_GSS} + m="${m}:mod_gss:mod_auth_gss" + fi + use ldap && m="${m}:mod_ldap" + use msg && mym="${mym}:mod_msg" + if use mysql || use postgres || use sqlite ; then + m="${m}:mod_sql:mod_sql_passwd" + use mysql && m="${m}:mod_sql_mysql" + use postgres && m="${m}:mod_sql_postgres" + use sqlite && m="${m}:mod_sql_sqlite" + fi + use qos && m="${m}:mod_qos" + use radius && m="${m}:mod_radius" + use ratio && m="${m}:mod_ratio" + use readme && m="${m}:mod_readme" + use rewrite && m="${m}:mod_rewrite" + if use sftp ; then + m="${m}:mod_sftp" + use pam && m="${m}:mod_sftp_pam" + use mysql || use postgres || use sqlite && m="${m}:mod_sftp_sql" + fi + use shaper && m="${m}:mod_shaper" + use sitemisc && m="${m}:mod_site_misc" + if use softquota ; then + m="${m}:mod_quotatab:mod_quotatab_file" + use ldap && m="${m}:mod_quotatab_ldap" + use radius && m="${m}:mod_quotatab_radius" + use mysql || use postgres || use sqlite && m="${m}:mod_quotatab_sql" + fi + if use ssl ; then + m="${m}:mod_tls:mod_tls_shmcache" + use memcache && m="${m}:mod_tls_memcache" + fi + if use tcpd ; then + m="${m}:mod_wrap2:mod_wrap2_file" + use mysql || use postgres || use sqlite && m="${m}:mod_wrap2_sql" + fi + use vroot && m="${m}:mod_vroot" + + [ -z ${m} ] || c="${c} --with-modules=${m:1}" + econf --localstatedir=/var/run/proftpd --sysconfdir=/etc/proftpd --disable-strip \ + $(use_enable acl facl) \ + $(use_enable authfile auth-file) \ + $(use_enable caps cap) \ + $(use_enable ctrls) \ + $(use_enable dso) \ + $(use_enable ident) \ + $(use_enable ipv6) \ + $(use_enable memcache) \ + $(use_enable ncurses) \ + $(use_enable nls) \ + $(use_enable openssl) \ + $(use_enable pam auth-pam) \ + $(use_enable pcre) \ + $(use_enable test tests) \ + $(use_enable trace) \ + $(use_enable userland_GNU shadow) \ + $(use_enable userland_GNU autoshadow) \ + ${c:1} +} + +src_test() { + emake api-tests -C tests +} + +src_install() { + default + [ -z ${LINGUAS} ] && rm -r "${ED}"/usr/share/locale + newinitd "${FILESDIR}"/proftpd.initd proftpd + insinto /etc/proftpd + doins "${FILESDIR}"/proftpd.conf.sample + + if use xinetd ; then + insinto /etc/xinetd.d + newins "${FILESDIR}"/proftpd.xinetd proftpd + fi + + dodoc ChangeLog CREDITS INSTALL NEWS README* RELEASE_NOTES + if use doc ; then + dohtml doc/*.html doc/contrib/*.html doc/howto/*.html doc/modules/*.html + docinto rfc + dodoc doc/rfc/*.txt + fi + + systemd_dounit "${FILESDIR}"/${PN}.service + systemd_newtmpfilesd "${FILESDIR}"/${PN}-tmpfiles.d.conf ${PN}.conf +} + +pkg_postinst() { + if use tcpd ; then + ewarn + ewarn "Important: Since ProFTPD 1.3.4rc2 the module mod_wrap for TCP Wrapper" + ewarn "support has been replaced by mod_wrap2 which is more configurable and" + ewarn "portable. But you have to adjust your configuration before restaring" + ewarn "ProFTPD. On the following website you can find more information:" + ewarn " http://proftpd.org/docs/contrib/mod_wrap2.html" + ewarn + fi +} diff --git a/net-ftp/proftpd/proftpd-1.3.4c.ebuild b/net-ftp/proftpd/proftpd-1.3.4c.ebuild index 5da2a399193d..2026180fe13c 100644 --- a/net-ftp/proftpd/proftpd-1.3.4c.ebuild +++ b/net-ftp/proftpd/proftpd-1.3.4c.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-ftp/proftpd/proftpd-1.3.4c.ebuild,v 1.1 2013/04/07 13:48:45 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-ftp/proftpd/proftpd-1.3.4c.ebuild,v 1.2 2013/04/08 18:13:35 slyfox Exp $ EAPI=4 inherit eutils multilib systemd @@ -65,6 +65,8 @@ __prepare_module() { } src_prepare() { + epatch "${FILESDIR}"/${P}-fix-build-noipv6.patch #465134 + # Skip 'install-conf' / Support LINGUAS sed -i -e "/install-all/s/ install-conf//" Makefile.in sed -i -e "s/^LANGS=.*$/LANGS=${LINGUAS}/" locale/Makefile.in diff --git a/net-libs/courier-authlib/courier-authlib-0.65.0-r3.ebuild b/net-libs/courier-authlib/courier-authlib-0.65.0-r3.ebuild index f4226193d267..8fe13e7a4bfe 100644 --- a/net-libs/courier-authlib/courier-authlib-0.65.0-r3.ebuild +++ b/net-libs/courier-authlib/courier-authlib-0.65.0-r3.ebuild @@ -1,11 +1,11 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r3.ebuild,v 1.10 2013/04/08 11:30:24 eras Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/courier-authlib/courier-authlib-0.65.0-r3.ebuild,v 1.11 2013/04/10 17:38:29 jer Exp $ EAPI=4 inherit autotools eutils flag-o-matic multilib user -KEYWORDS="alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd" DESCRIPTION="Courier authentication library." SRC_URI="mirror://sourceforge/courier/${P}.tar.bz2" diff --git a/net-libs/libcapi/Manifest b/net-libs/libcapi/Manifest new file mode 100644 index 000000000000..66216a1ed8ab --- /dev/null +++ b/net-libs/libcapi/Manifest @@ -0,0 +1 @@ +DIST libcapi20-3.0.7.tar.bz2 474174 SHA256 f36c7d1d8a46dd76b1e3443d6f5478ad16177d3f91c9f67bc654608167020293 SHA512 c14e493f34fbd8477aed8efc0e6ee8dc07c6007be75610d59a15ce23f48cd5cd53da1b1ac64c11e7516df5aff40877c76ce7a6d72b5c7b1d24beee7592a51bbe WHIRLPOOL 7ba7530ea680a22d0538af8d14e66b51735c7e125f9450d845794a96c964dcf968daf4a02afd1b2a00e66b9898d5b6d00074aab418363c100815a2301d7ab3b4 diff --git a/net-libs/libcapi/files/libcapi-3.0.7-remove-libcapi20dyn.patch b/net-libs/libcapi/files/libcapi-3.0.7-remove-libcapi20dyn.patch new file mode 100644 index 000000000000..1e8d9a88afac --- /dev/null +++ b/net-libs/libcapi/files/libcapi-3.0.7-remove-libcapi20dyn.patch @@ -0,0 +1,21 @@ +diff --git a/Makefile.am b/Makefile.am +index 46f308c..df8ea69 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -7,7 +7,6 @@ MAINTAINERCLEANFILES = configure aclocal.m4 Makefile.in config.h.in + stamp-h.in + include_HEADERS = capi20.h capiutils.h capicmd.h capi_mod.h capi_debug.h + lib_LTLIBRARIES = libcapi20.la +-lib_LIBRARIES = libcapi20dyn.a + + libcapi20_la_SOURCES = capi20.c capifunc.c convert.c capi_defs.h compat/byteswap.h + libcapi20_la_LDFLAGS = -version-info ${LIBCAPI_VERSION}:${LIBCAPI_VERSION_RELEASE}:${LIBCAPI_VERSION_AGE} -lc -rdynamic +@@ -35,8 +34,6 @@ lib_capi_mod_rcapi_la_CFLAGS = -fno-strict-aliasing + lib_capi_mod_rcapi_la_LDFLAGS = -shared -version-info @CAPI_MODULE_LOADER_VERSION@:0:0 -no-undefined + lib_capi_mod_rcapi_la_LIBADD = libcapi20.la + +-libcapi20dyn_a_SOURCES = capidyn.c +-libcapi20dyn_a_CFLAGS = -fPIC + libcapi20_la_LIBADD = $(LIBADD_DL) + + if WIN32 diff --git a/net-libs/libcapi/libcapi-3.0.7.ebuild b/net-libs/libcapi/libcapi-3.0.7.ebuild new file mode 100644 index 000000000000..e2a04d71b8cc --- /dev/null +++ b/net-libs/libcapi/libcapi-3.0.7.ebuild @@ -0,0 +1,21 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/libcapi/libcapi-3.0.7.ebuild,v 1.1 2013/04/09 06:43:21 pinkbyte Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=1 +AUTOTOOLS_IN_SOURCE_BUILD=1 +inherit autotools-utils + +DESCRIPTION="CAPI library used by AVM products" +HOMEPAGE="http://www.tabos.org/ffgtk" +SRC_URI="http://www.tabos.org/ffgtk/download/libcapi20-${PV}.tar.bz2" + +LICENSE="GPL-2 LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +S="${WORKDIR}/capi20" + +PATCHES=( "${FILESDIR}/${P}-remove-libcapi20dyn.patch" ) diff --git a/net-libs/libcapi/metadata.xml b/net-libs/libcapi/metadata.xml new file mode 100644 index 000000000000..756ddd4a6227 --- /dev/null +++ b/net-libs/libcapi/metadata.xml @@ -0,0 +1,5 @@ + + + + net-dialup + diff --git a/net-libs/libgadu/libgadu-1.11.2.ebuild b/net-libs/libgadu/libgadu-1.11.2.ebuild index acec8f6b6f73..47d677d57e2a 100644 --- a/net-libs/libgadu/libgadu-1.11.2.ebuild +++ b/net-libs/libgadu/libgadu-1.11.2.ebuild @@ -1,8 +1,8 @@ -# 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/net-libs/libgadu/libgadu-1.11.2.ebuild,v 1.1 2012/08/05 21:56:01 reavertm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgadu/libgadu-1.11.2.ebuild,v 1.2 2013/04/08 21:48:13 reavertm Exp $ -EAPI="4" +EAPI="5" MY_P="${P/_/-}" diff --git a/net-libs/libgrss/Manifest b/net-libs/libgrss/Manifest index 408fef7a3b18..46d94e3c997a 100644 --- a/net-libs/libgrss/Manifest +++ b/net-libs/libgrss/Manifest @@ -1,2 +1,2 @@ -DIST libgrss-0.3.0.tar.gz 394855 SHA256 7531a6d71c685db658e50d430a3ac56e11d619b98fb0d0dbb943ad6b96b1962a +DIST libgrss-0.3.0.tar.gz 394855 SHA256 7531a6d71c685db658e50d430a3ac56e11d619b98fb0d0dbb943ad6b96b1962a SHA512 af55201cf0033c24d67d9169dda32feccbe555484e4af4635a49806aa0d3af75a859cddf82074270d89ccdeb73d4f33944084582faf3c22a6777459c8ec13e81 WHIRLPOOL 01bde0f6ab80d1d75d17134d0637431072f7546bfb0816e731255b6002e1527cc75d43e23dff1066c1bcaf9027b916a99c3659e3370979bfa87ed4f17686c8ce DIST libgrss-0.5.0.tar.gz 439634 SHA256 a0b5d9cc18b90891c20b3645567b31edda1e6f61e6a4c2f314ac77490bb767b1 SHA512 189c49b7bdf029160e72d3d89c6779e193373e5a3af7f810041bf325d0b5543bb87b414d833a13e028a589b96a4d53bb223e88667d18d2c53f610d6086bb60ea WHIRLPOOL 5fe0b4c53e3d66ac95fdb7d9032454d62c80fd8640c5af48574e10eff15f997d767fa821fb16b4fd4eda8ede1563411ae821c9f2980f9861f3c93131fe7a130c diff --git a/net-libs/libgrss/files/libgrss-0.3.0-fix-slotting.patch b/net-libs/libgrss/files/libgrss-0.3.0-fix-slotting.patch new file mode 100644 index 000000000000..a63ebb393bed --- /dev/null +++ b/net-libs/libgrss/files/libgrss-0.3.0-fix-slotting.patch @@ -0,0 +1,125 @@ +From 3023bfdf7a8b6a1df13b8b937c60ee7c4bd1d9ae Mon Sep 17 00:00:00 2001 +From: Gilles Dartiguelongue +Date: Mon, 1 Apr 2013 16:07:21 +0200 +Subject: [PATCH] Fix parallel installation for API version 0 + +--- + Makefile.am | 6 ++++-- + configure.ac | 3 +++ + doc/reference/Makefile.am | 4 ++-- + libgrss.pc.in | 4 ++-- + src/Makefile.am | 12 ++++++------ + 5 files changed, 17 insertions(+), 12 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index effacb1..b4a53e1 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,11 +1,13 @@ + ACLOCAL_AMFLAGS = -I m4 + SUBDIRS = src doc + EXTRA_DIST = autogen.sh ++CLEANFILES = libgrss-$(LIBGRSS_API_VERSION).pc + + pcfiledir = $(libdir)/pkgconfig +-pcfile_DATA = libgrss-0.pc ++ ++pcfile_DATA = libgrss-$(LIBGRSS_API_VERSION).pc + + DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc + +-libgrss-0.pc: libgrss.pc ++libgrss-$(LIBGRSS_API_VERSION).pc: libgrss.pc + @cp -f $< $@ +diff --git a/configure.ac b/configure.ac +index 64fe542..e036df6 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1,6 +1,7 @@ + m4_define([libgrss_major_version], [0]) + m4_define([libgrss_minor_version], [3]) + m4_define([libgrss_micro_version], [0]) ++m4_define([libgrss_api_version], [0]) + + m4_define([libgrss_version], + [libgrss_major_version.libgrss_minor_version.libgrss_micro_version]) +@@ -46,10 +47,12 @@ AC_CHECK_FUNCS([strptime localtime_r]) + LIBGRSS_MAJOR_VERSION=libgrss_major_version + LIBGRSS_MINOR_VERSION=libgrss_minor_version + LIBGRSS_MICRO_VERSION=libgrss_micro_version ++LIBGRSS_API_VERSION=libgrss_api_version + LIBGRSS_VERSION=libgrss_version + AC_SUBST(LIBGRSS_MAJOR_VERSION) + AC_SUBST(LIBGRSS_MICRO_VERSION) + AC_SUBST(LIBGRSS_MINOR_VERSION) ++AC_SUBST(LIBGRSS_API_VERSION) + AC_SUBST(LIBGRSS_VERSION) + + dnl libgrss checks +diff --git a/doc/reference/Makefile.am b/doc/reference/Makefile.am +index 644642d..eafbc65 100644 +--- a/doc/reference/Makefile.am ++++ b/doc/reference/Makefile.am +@@ -7,7 +7,7 @@ AUTOMAKE_OPTIONS = 1.6 + # of using the various options. + + # The name of the module, e.g. 'glib'. +-DOC_MODULE=libgrss ++DOC_MODULE=libgrss-@LIBGRSS_API_VERSION@ + + # The top-level SGML file. You can change this if you want to. + DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml +@@ -71,7 +71,7 @@ expand_content_files= + # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) + + INCLUDES=-I$(top_srcdir) $(LIBGRSS_CFLAGS) +-GTKDOC_LIBS=$(top_builddir)/src/libgrss-1.0.la $(LIBGRSS_LIBS) ++GTKDOC_LIBS=$(top_builddir)/src/libgrss-@LIBGRSS_API_VERSION@.la $(LIBGRSS_LIBS) + + # This includes the standard gtk-doc make rules, copied by gtkdocize. + include $(top_srcdir)/gtk-doc.make +diff --git a/libgrss.pc.in b/libgrss.pc.in +index 2ce65c9..5d4e1b0 100644 +--- a/libgrss.pc.in ++++ b/libgrss.pc.in +@@ -6,6 +6,6 @@ includedir=${exec_prefix}/include + Name: libgrss + Description: GObject RSS handling library + Version: @VERSION@ +-Libs: -L${libdir} -lgrss-1.0 +-Cflags: -I${includedir}/libgrss ++Libs: -L${libdir} -lgrss-@LIBGRSS_API_VERSION@ ++Cflags: -I${includedir}/libgrss-@LIBGRSS_API_VERSION@ + Requires: gobject-2.0 libxml-2.0 libsoup-2.4 +diff --git a/src/Makefile.am b/src/Makefile.am +index 93c9be7..ee48a16 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -56,18 +56,18 @@ feed-marshal.c: feed-marshal.list + echo "#include \"feed-marshal.h\"" > $@ && \ + $(GLIB_GENMARSHAL) $< --prefix=feed_marshal --body >> $@ + +-lib_LTLIBRARIES = libgrss-1.0.la ++lib_LTLIBRARIES = libgrss-0.la + +-libgrss_1_0_la_LIBADD = $(LIBGRSS_LIBS) +-libgrss_1_0_la_SOURCES = \ ++libgrss_0_la_LIBADD = $(LIBGRSS_LIBS) ++libgrss_0_la_SOURCES = \ + $(sources_public_h) \ + $(sources_private_h) \ + $(sources_c) \ + $(NULL) +-libgrss_1_0_la_LDFLAGS = $(LDADD) ++libgrss_0_la_LDFLAGS = $(LDADD) + +-libgrssincludedir = $(includedir)/libgrss +-libgrssinclude_DATA = $(sources_public_h) ++libgrss_0_ladir = $(includedir)/libgrss-@LIBGRSS_API_VERSION@ ++libgrss_0_la_HEADERS = $(sources_public_h) + + CLEANFILES = $(pcfile_DATA) + +-- +1.8.1.5 + diff --git a/net-libs/libgrss/files/libgrss-0.5.0-fix-slotting.patch b/net-libs/libgrss/files/libgrss-0.5.0-fix-slotting.patch new file mode 100644 index 000000000000..01146aeb0902 --- /dev/null +++ b/net-libs/libgrss/files/libgrss-0.5.0-fix-slotting.patch @@ -0,0 +1,124 @@ +From 4b93347fee20ea18196cab9f702be88ecd23f54e Mon Sep 17 00:00:00 2001 +From: Gilles Dartiguelongue +Date: Mon, 1 Apr 2013 16:07:21 +0200 +Subject: [PATCH 1/2] Fix parallel installation for API version 0.5 + +--- + Makefile.am | 5 +++-- + configure.ac | 3 +++ + doc/reference/Makefile.am | 4 ++-- + libgrss.pc.in | 4 ++-- + src/Makefile.am | 12 ++++++------ + 5 files changed, 16 insertions(+), 12 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index 8547d3b..a13acf4 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,11 +1,12 @@ + ACLOCAL_AMFLAGS = -I m4 + SUBDIRS = src doc + EXTRA_DIST = autogen.sh ++CLEANFILES = libgrss-$(LIBGRSS_API_VERSION).pc + + pcfiledir = $(libdir)/pkgconfig +-pcfile_DATA = libgrss-0.5.pc ++pcfile_DATA = libgrss-$(LIBGRSS_API_VERSION).pc + + DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc + +-libgrss-0.5.pc: libgrss.pc ++libgrss-$(LIBGRSS_API_VERSION).pc: libgrss.pc + @cp -f $< $@ +diff --git a/configure.ac b/configure.ac +index 61effa3..443140b 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -1,6 +1,7 @@ + m4_define([libgrss_major_version], [0]) + m4_define([libgrss_minor_version], [5]) + m4_define([libgrss_micro_version], [0]) ++m4_define([libgrss_api_version], [0.5]) + + m4_define([libgrss_version], + [libgrss_major_version.libgrss_minor_version.libgrss_micro_version]) +@@ -46,10 +47,12 @@ AC_CHECK_FUNCS([strptime localtime_r]) + LIBGRSS_MAJOR_VERSION=libgrss_major_version + LIBGRSS_MINOR_VERSION=libgrss_minor_version + LIBGRSS_MICRO_VERSION=libgrss_micro_version ++LIBGRSS_API_VERSION=libgrss_api_version + LIBGRSS_VERSION=libgrss_version + AC_SUBST(LIBGRSS_MAJOR_VERSION) + AC_SUBST(LIBGRSS_MICRO_VERSION) + AC_SUBST(LIBGRSS_MINOR_VERSION) ++AC_SUBST(LIBGRSS_API_VERSION) + AC_SUBST(LIBGRSS_VERSION) + + dnl libgrss checks +diff --git a/doc/reference/Makefile.am b/doc/reference/Makefile.am +index 644642d..eafbc65 100644 +--- a/doc/reference/Makefile.am ++++ b/doc/reference/Makefile.am +@@ -7,7 +7,7 @@ AUTOMAKE_OPTIONS = 1.6 + # of using the various options. + + # The name of the module, e.g. 'glib'. +-DOC_MODULE=libgrss ++DOC_MODULE=libgrss-@LIBGRSS_API_VERSION@ + + # The top-level SGML file. You can change this if you want to. + DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml +@@ -71,7 +71,7 @@ expand_content_files= + # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib) + + INCLUDES=-I$(top_srcdir) $(LIBGRSS_CFLAGS) +-GTKDOC_LIBS=$(top_builddir)/src/libgrss-1.0.la $(LIBGRSS_LIBS) ++GTKDOC_LIBS=$(top_builddir)/src/libgrss-@LIBGRSS_API_VERSION@.la $(LIBGRSS_LIBS) + + # This includes the standard gtk-doc make rules, copied by gtkdocize. + include $(top_srcdir)/gtk-doc.make +diff --git a/libgrss.pc.in b/libgrss.pc.in +index cdd0f6f..3d75924 100644 +--- a/libgrss.pc.in ++++ b/libgrss.pc.in +@@ -6,6 +6,6 @@ includedir=@includedir@ + Name: libgrss + Description: GObject RSS handling library + Version: @VERSION@ +-Libs: -L${libdir} -lgrss-1.0 +-Cflags: -I${includedir}/libgrss ++Libs: -L${libdir} -lgrss-@LIBGRSS_API_VERSION@ ++Cflags: -I${includedir}/libgrss-@LIBGRSS_API_VERSION@ + Requires: gobject-2.0 libxml-2.0 libsoup-2.4 +diff --git a/src/Makefile.am b/src/Makefile.am +index 8587d73..8e0bb5c 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -74,18 +74,18 @@ feed-marshal.c: feed-marshal.list + echo "#include \"feed-marshal.h\"" > $@ && \ + $(GLIB_GENMARSHAL) $< --prefix=feed_marshal --body >> $@ + +-lib_LTLIBRARIES = libgrss-1.0.la ++lib_LTLIBRARIES = libgrss-0.5.la + +-libgrss_1_0_la_LIBADD = $(LIBGRSS_LIBS) +-libgrss_1_0_la_SOURCES = \ ++libgrss_0_5_la_LIBADD = $(LIBGRSS_LIBS) ++libgrss_0_5_la_SOURCES = \ + $(sources_public_h) \ + $(sources_private_h) \ + $(sources_c) \ + $(NULL) +-libgrss_1_0_la_LDFLAGS = $(LDADD) ++libgrss_0_5_la_LDFLAGS = $(LDADD) + +-libgrssincludedir = $(includedir)/libgrss +-libgrssinclude_DATA = $(sources_public_h) ++libgrss_0_5_ladir = $(includedir)/libgrss-@LIBGRSS_API_VERSION@ ++libgrss_0_5_la_HEADERS = $(sources_public_h) + + CLEANFILES = $(pcfile_DATA) + +-- +1.8.1.5 + diff --git a/net-libs/libgrss/libgrss-0.3.0.ebuild b/net-libs/libgrss/libgrss-0.3.0.ebuild index 61b00bd563e5..8abac5320ac4 100644 --- a/net-libs/libgrss/libgrss-0.3.0.ebuild +++ b/net-libs/libgrss/libgrss-0.3.0.ebuild @@ -1,10 +1,11 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgrss/libgrss-0.3.0.ebuild,v 1.6 2013/02/02 23:04:18 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgrss/libgrss-0.3.0.ebuild,v 1.7 2013/04/09 18:21:12 eva Exp $ -EAPI=3 +EAPI="5" +GCONF_DEBUG="yes" -inherit gnome2 +inherit autotools eutils gnome2 DESCRIPTION="LibGRSS is a library for easy management of RSS/Atom/Pie feeds" HOMEPAGE="http://live.gnome.org/Libgrss" @@ -15,28 +16,31 @@ SRC_URI="http://gtk.mplat.es/libgrss/tarballs/${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="doc examples" +IUSE="examples" -RDEPEND=">=dev-libs/glib-2.22.2:2 +RDEPEND=" + >=dev-libs/glib-2.22.2:2 >=dev-libs/libxml2-2.7.4:2 - >=net-libs/libsoup-2.28.1:2.4" + >=net-libs/libsoup-2.28.1:2.4 +" DEPEND="${RDEPEND} - virtual/pkgconfig - sys-devel/gettext + app-text/gnome-doc-utils + >=dev-util/gtk-doc-am-1.10 dev-util/intltool - doc? ( dev-util/gtk-doc ) - gnome-base/gnome-common - sys-devel/autoconf:2.5 - sys-devel/automake:1.10 - sys-devel/libtool" + sys-devel/gettext + virtual/pkgconfig +" -src_install() { - DOCS="AUTHORS ChangeLog NEWS README" - gnome2_src_install +src_prepare() { + # Fix soname/.pc + epatch "${FILESDIR}"/${P}-fix-slotting.patch - rm "${D}"/usr/lib*/*.la || die "removing .la files failed" + eautoreconf + gnome2_src_prepare +} - rm -rf "${D}/var" || die "removing empty dir failed" +src_install() { + gnome2_src_install if use examples ; then insinto /usr/share/doc/${PF} diff --git a/net-libs/libgrss/libgrss-0.5.0.ebuild b/net-libs/libgrss/libgrss-0.5.0.ebuild index d4915be56eb1..91f7e138d89f 100644 --- a/net-libs/libgrss/libgrss-0.5.0.ebuild +++ b/net-libs/libgrss/libgrss-0.5.0.ebuild @@ -1,37 +1,44 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libgrss/libgrss-0.5.0.ebuild,v 1.1 2013/03/28 23:14:50 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libgrss/libgrss-0.5.0.ebuild,v 1.2 2013/04/09 18:21:12 eva Exp $ -EAPI=5 +EAPI="5" GCONF_DEBUG="yes" -inherit gnome2 +inherit autotools eutils gnome2 DESCRIPTION="LibGRSS is a library for easy management of RSS/Atom/Pie feeds" HOMEPAGE="http://live.gnome.org/Libgrss" SRC_URI="http://gtk.mplat.es/libgrss/tarballs/${P}.tar.gz" LICENSE="LGPL-3" -SLOT="0" +SLOT="0.5" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="doc examples" +IUSE="examples" -RDEPEND=">=dev-libs/glib-2.30.2:2 +RDEPEND=" + >=dev-libs/glib-2.30.2:2 >=dev-libs/libxml2-2.7.8:2 - >=net-libs/libsoup-2.36.1:2.4" + >=net-libs/libsoup-2.36.1:2.4 +" DEPEND="${RDEPEND} - virtual/pkgconfig - sys-devel/gettext + app-text/gnome-doc-utils + >=dev-util/gtk-doc-am-1.10 dev-util/intltool - doc? ( dev-util/gtk-doc ) - gnome-base/gnome-common - sys-devel/autoconf:2.5 - sys-devel/automake:1.10 - sys-devel/libtool" + sys-devel/gettext + virtual/pkgconfig +" + +src_prepare() { + # Fix soname/.pc + epatch "${FILESDIR}"/${P}-fix-slotting.patch + + eautoreconf + gnome2_src_prepare +} src_install() { gnome2_src_install - rm -rf "${D}/var" || die "removing empty dir failed" if use examples ; then insinto /usr/share/doc/${PF} diff --git a/net-libs/libnet/Manifest b/net-libs/libnet/Manifest index 1da2571d10bf..f0708d449a9f 100644 --- a/net-libs/libnet/Manifest +++ b/net-libs/libnet/Manifest @@ -1,3 +1,3 @@ DIST libnet-1.0.2a.tar.gz 140191 SHA256 7c7f2e8ccb47bb47072c5cd583fea5e90ab892c75889b625346b60d10464459a SHA512 2e9a73bd767e1f46eea92e18ddd83cc3179144c8cc5b1a22b4dba50fee16173c951be4dd647a247bd7067c33b9e33489a6efb313ce1ea0c61c4a06009c3c4d95 WHIRLPOOL 9b3748fe93191643a01cab0ce76283aa11079960efca5daaf52d7a0aa830c3791a200711c9d4b4634739328282bbc4f73b24a15406b4bf5353838ef24c19afcc DIST libnet-1.1.6.tar.gz 1202970 SHA256 d392bb5825c4b6b672fc93a0268433c86dc964e1500c279dc6d0711ea6ec467a SHA512 a67e502b0e6957ca590e47cb50b0472dd83d622d84c62818d665d771616df91b5a8fa8fcf1040d13b7860aaabaf338152ef40f66ab97c3fc9502edb08cea0bb6 WHIRLPOOL eb0596d8d6d1b0434ce8d1ec7069826e326effa5ad215e607dc7afc495ae0bdee443f6661deb5b54c8564abd8fa0ccbf4f509726d3caa81767d80f4f5079b379 -DIST libnet-1.2-rc1.tar.gz 671331 SHA256 abc9c3a3c1b1d20dfa52649cdb73eea2f824e96c7f67a8e4d00e9a31daf42ae9 SHA512 b96c35d224be7b1efaaa0c05f7a291932a5d81a5e2f6ff3acb10db5043f2b145a2f5f6fce64d35850450464a042783f8b67b44d68943c03aa7e9d8f861bfd082 WHIRLPOOL f24704a306cfc5a03b55478fe809e13dd0f9f0bc278059153f42e545a16b89205a0f8ad451e40510bd4b075391da316b3440654389aa8356a1ab243c9954cd37 +DIST libnet-1.2-rc2.tar.gz 669933 SHA256 e7ab610e9b175d6da62972e386abc95979c28e641af8d724dcfca834d02587dd SHA512 96eb5a83fe8cc19ad24c4e8d0202a66469474d10c1d4e9ce031bf6c6956b17ca7545ba6fd0d892574f7689a8e1a87232de0b124832dc2df26ca750605b9ba438 WHIRLPOOL d95340e3764c2afe46135e60a916e4f28475f2427ff9c4069091abe4253bb74cadc2fb3cad515189f754c2a161068786e5cb91a264eed9ade2ef2f3aa4f4dffa diff --git a/net-libs/libnet/files/libnet-1.2-rc.patch b/net-libs/libnet/files/libnet-1.2-rc.patch index c6babe06c758..9b13e8f4a96d 100644 --- a/net-libs/libnet/files/libnet-1.2-rc.patch +++ b/net-libs/libnet/files/libnet-1.2-rc.patch @@ -4,7 +4,7 @@ dnl dnl Process this file with autoconf to produce a configure script. --AC_INIT([libnet],[1.2-rc1]) +-AC_INIT([libnet],[1.2-rc2]) +AC_INIT([libnet],[1.2]) AC_MSG_RESULT(beginning autoconfiguration process for libnet-${PACKAGE_VERSION} ...) AC_CANONICAL_TARGET diff --git a/net-libs/libnet/libnet-1.2_rc1-r1.ebuild b/net-libs/libnet/libnet-1.2_rc2.ebuild similarity index 95% rename from net-libs/libnet/libnet-1.2_rc1-r1.ebuild rename to net-libs/libnet/libnet-1.2_rc2.ebuild index de1fbf7aadb3..f5e8b5ed8311 100644 --- a/net-libs/libnet/libnet-1.2_rc1-r1.ebuild +++ b/net-libs/libnet/libnet-1.2_rc2.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/libnet/libnet-1.2_rc1-r1.ebuild,v 1.1 2013/03/27 20:28:17 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnet/libnet-1.2_rc2.ebuild,v 1.1 2013/04/10 17:20:00 jer Exp $ EAPI=5 inherit autotools eutils diff --git a/net-libs/liboauth/files/liboauth-1.0.1-doxygen-out-of-tree.patch b/net-libs/liboauth/files/liboauth-1.0.1-doxygen-out-of-tree.patch new file mode 100644 index 000000000000..3ed37ec266cc --- /dev/null +++ b/net-libs/liboauth/files/liboauth-1.0.1-doxygen-out-of-tree.patch @@ -0,0 +1,50 @@ +diff -urp liboauth-1.0.1-orig/Doxyfile.in liboauth-1.0.1/Doxyfile.in +--- liboauth-1.0.1-orig/Doxyfile.in 2012-11-01 04:34:49.000000000 +0000 ++++ liboauth-1.0.1/Doxyfile.in 2013-03-14 14:25:11.000000000 +0000 +@@ -45,7 +45,7 @@ PROJECT_BRIEF = + # exceed 55 pixels and the maximum width should not exceed 200 pixels. + # Doxygen will copy the logo to the output directory. + +-PROJECT_LOGO = doc/libOAuth.png ++PROJECT_LOGO = @top_srcdir@/doc/libOAuth.png + + # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) + # base path where the generated documentation will be put. +@@ -130,7 +130,7 @@ FULL_PATH_NAMES = YES + # relative paths, which will be relative from the directory where doxygen is + # started. + +-STRIP_FROM_PATH = src/ ++STRIP_FROM_PATH = @top_srcdir@/src/ + + # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of + # the path mentioned in the documentation of a class, which tells +@@ -661,8 +661,8 @@ WARN_LOGFILE = + # directories like "/usr/src/myproject". Separate the files or directories + # with spaces. + +-INPUT = src/oauth.h \ +- doc/mainpage.dox ++INPUT = @top_srcdir@/src/oauth.h \ ++ @top_srcdir@/doc/mainpage.dox + + # This tag can be used to specify the character encoding of the source files + # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +@@ -722,7 +722,7 @@ EXCLUDE_SYMBOLS = + # directories that contain example code fragments that are included (see + # the \include command). + +-EXAMPLE_PATH = tests/ ++EXAMPLE_PATH = @top_srcdir@/tests/ + + # If the value of the EXAMPLE_PATH tag contains directories, you can use the + # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp +@@ -742,7 +742,7 @@ EXAMPLE_RECURSIVE = NO + # directories that contain image that are included in the documentation (see + # the \image command). + +-IMAGE_PATH = doc/ ++IMAGE_PATH = @top_srcdir@/doc/ + + # The INPUT_FILTER tag can be used to specify a program that doxygen should + # invoke to filter for each input file. Doxygen will invoke the filter program diff --git a/net-libs/liboauth/liboauth-1.0.1.ebuild b/net-libs/liboauth/liboauth-1.0.1.ebuild index 621f637aef9b..b65e0901812c 100644 --- a/net-libs/liboauth/liboauth-1.0.1.ebuild +++ b/net-libs/liboauth/liboauth-1.0.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-libs/liboauth/liboauth-1.0.1.ebuild,v 1.1 2013/03/09 13:51:23 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/liboauth/liboauth-1.0.1.ebuild,v 1.2 2013/04/10 04:09:59 patrick Exp $ EAPI=5 @@ -15,6 +15,7 @@ SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x64-macos" IUSE="curl doc bindist +nss" +PATCHES=( "${FILESDIR}"/${P}-doxygen-out-of-tree.patch ) REQUIRED_USE="bindist? ( nss )" CDEPEND=" @@ -56,14 +57,14 @@ src_compile() { if use doc ; then # make sure fonts are found export DOTFONTPATH="${EPREFIX}"/usr/share/fonts/freefont-ttf - emake dox + autotools-utils_src_compile dox fi } DOCS=( AUTHORS ChangeLog LICENSE.OpenSSL README ) src_install() { - use doc && HTML_DOCS=("${BUILD_DIR}"/doc/html) + use doc && HTML_DOCS=("${BUILD_DIR}"/doc/html/) autotools-utils_src_install } diff --git a/net-libs/libotr/Manifest b/net-libs/libotr/Manifest index d07d92c79c5f..116adaf10aa5 100644 --- a/net-libs/libotr/Manifest +++ b/net-libs/libotr/Manifest @@ -1,3 +1,4 @@ DIST libotr-3.1.0.tar.gz 428444 SHA256 721560bba21ec7e54c75925de26fe7b59ecdaf9c9b81613a052a3d86b72d7ef4 DIST libotr-3.2.0.tar.gz 430299 SHA256 d83b9d20e36e2a4a55e5336f15d1d218d627bc0af7af94e3835bdc8b6d8b6693 SHA512 1f2b3b986128e51f771b80b40593e1b88abd6268b65f94b489548a8355632b860bbce53609aacdcc5b354ba7deaf98ac02f47d9827af82cfbf62d1c6b689d61f WHIRLPOOL 9e1c5868305f545b90112400790cb730835f8cc4ea2087c5bb8cc6b3d4a41b3071eb872b0cea69b26421b9332d207570d1681cb80204daf97a84712f16fae289 +DIST libotr-3.2.1.tar.gz 414684 SHA256 d428eaa584984baa09450cca07742e0ac8fc62401f3a1c556e3025023369cdf4 SHA512 7dfac85cb7dd1a95481330ecf3bfe54477a9de7e20370919386e8aa9553e374a2d3587d7b4bb654d1a30bd1c47e41c577f7b78f4007c5cb97f2f6a2c63078899 WHIRLPOOL 96593df2cc3f5e5e606e14170c3706b1dc17f2142821d827d2e5ae1473b923eacc95909f489f18a700539e07de2042e39df36157f724ba79916591c8ccca594b DIST libotr-4.0.0.tar.gz 441441 SHA256 3f911994409898e74527730745ef35ed75c352c695a1822a677a34b2cf0293b4 SHA512 3f0a549bb615d6ff486db0efcc82fc6ad17c5860740c760315d5c81d298b00648d11f9da69c65b9859111d2150e4d10062aeb8611810f11e1da1ce62f07f02b6 WHIRLPOOL 29614fd709358d5363b2204c38e5fc6984acb56c880ae05706b464bddb7832f0a6e9af03a689135423909e26cdaecb2ca1a13f9c02c21a4477149432dfcd6aef diff --git a/net-libs/libotr/libotr-3.2.1.ebuild b/net-libs/libotr/libotr-3.2.1.ebuild new file mode 100644 index 000000000000..d3bb45647852 --- /dev/null +++ b/net-libs/libotr/libotr-3.2.1.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/net-libs/libotr/libotr-3.2.1.ebuild,v 1.3 2013/04/08 19:03:26 jer Exp $ + +EAPI=5 + +DESCRIPTION="(OTR) Messaging allows you to have private conversations over instant messaging" +HOMEPAGE="http://www.cypherpunks.ca/otr/" +SRC_URI="http://www.cypherpunks.ca/otr/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x86-macos" + +RDEPEND=">=dev-libs/libgcrypt-1.2 + dev-libs/libgpg-error" +DEPEND="${RDEPEND}" + +DOCS=( AUTHORS ChangeLog NEWS README UPGRADING ) diff --git a/net-libs/nodejs/Manifest b/net-libs/nodejs/Manifest index d17ae2525f88..6e79865da864 100644 --- a/net-libs/nodejs/Manifest +++ b/net-libs/nodejs/Manifest @@ -1,4 +1,6 @@ DIST node-v0.10.1.tar.gz 12790341 SHA256 2628dbf42fb3ec3927e595dc66f2f96e3c23455990dea690e300296d92afe4d3 SHA512 552223c7e8664e199574affb77f504ad5d4f4f092edb12df10fa013ac6af5a9a45e30f334e0255a256eb0a9604bc697f74b039e9e4e6f7453ea3f0c781c03fbe WHIRLPOOL f5dda85c10e04ef7999882bb76c0e6ea36198cc551bfcdb8a2079145e626442aabcb18440cf5fdbabac30ff066f24ecca0f1010606b13e6b1cdc803d4c73cafe DIST node-v0.10.2.tar.gz 12813547 SHA256 4eb642897fdb945b49720f2604afc493587aec7a9ff1537e882df659e4dd8aa2 SHA512 88615b4450ff10e70f4f53ec159518c1385da747e44dfb6c42dcf386c41b62048a9b77838036cf620202da1812c60893809f6aca2202e90b20158eb0f00aa60a WHIRLPOOL d46c2b11d98b32872fe40e748cdabba365afa754e5108b1ee9fecc0990e9f3878a47558a66e4b909e10792e162fcbb7ddff9a380042eb49b93f8a18534df9f35 DIST node-v0.10.3.tar.gz 12818307 SHA256 bc8796ff6414231fa0603e0383404f14648dfd2fe9fb0fa4d4a6043dfddbb328 SHA512 7b6720346acd576fa03359a4f630502bc3b18f91c61d1d25d74cfac1e62b5fe370a064530aee02ac2b78523529a0b3f850d88fdc8c7eb1a93fcf2e8ca4e363da WHIRLPOOL 95348e727f40ecb69ec7023bb36eb9d7e0d22d9ef54d1b5796b8179779ec1c6d7c180ce4a73297430ca2c81fa061d92faf4e71435fca4e8204417ef1d134330d +DIST node-v0.11.0.tar.gz 12956118 SHA256 a1887957fd6f0091379d1317f1daeb791bbf4301e58d693d17ad1d0fdbfa7898 SHA512 1c3d3445edf8600a1bf60b7be69e22bbfc74c3c076b92bcd71168c0f830aa42ba0ef7a0a63d9663b35e480d2da9694b8620e3db11be1c1f7e78a24a90bf3f20e WHIRLPOOL 7378e8b0d695425b475c5711b7f4ba2b8bbe72e4317c5a18f8ccf6386d51f61718c6b3ee68d64c2e95552dccd5ca86a8b8ca96c279e9cae2899c9cbf8e18eac7 DIST node-v0.8.21.tar.gz 12191813 SHA256 e526f56d22bb2ebee5a607bd1e7a16dcc8530b916e3a372192e6cd5fa97d08e6 SHA512 10a305d5d798703144a4d4a29878b261be516f29a0bfe349e73879b81e16db89a6fabfce43a6b1abef2f085aa2cf884bde310b9feeb377083c43f674492f5d99 WHIRLPOOL f44085bb6710289adc85653f39073d17527bbe2bd27d9a998376a3eeab9fea462fb8f9d0f3baab4bda28d3046d3920a58ab14cfaa9eb1d20bb66cfdc1c71cc72 +DIST node-v0.8.23.tar.gz 12630347 SHA256 382432638aedc25495e655dda338adcf41c6fa1d35f355936d659784c1deed9d SHA512 d5dbd3eebf8c1b09af4ff437f2368ffaeb4db6127d99893db6181d39e3f5b176f1ec39519ed0fe536f4fce75852c149792a89fcb0947331969ce40a2503039b4 WHIRLPOOL 14a47c9ba868312ed3f2e61a69d03b841da385fc059c0706d05a0430721fdbb7581e398d495cdc4fe3050670295e448e9c6eeeaa80b01b2e9c6aa0120b6d7e3a diff --git a/net-libs/nodejs/nodejs-0.11.0.ebuild b/net-libs/nodejs/nodejs-0.11.0.ebuild new file mode 100644 index 000000000000..91954c3d04ed --- /dev/null +++ b/net-libs/nodejs/nodejs-0.11.0.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/nodejs-0.11.0.ebuild,v 1.1 2013/04/09 04:02:13 patrick Exp $ + +EAPI=5 + +# has known failures. sigh. +RESTRICT="test" + +PYTHON_COMPAT=( python2_{5,6,7} ) + +inherit python-any-r1 pax-utils + +DESCRIPTION="Evented IO for V8 Javascript" +HOMEPAGE="http://nodejs.org/" +SRC_URI="http://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz" + +LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~x64-macos" +IUSE="" + +RDEPEND="dev-libs/openssl" +DEPEND="${RDEPEND} + virtual/python-json" + +S=${WORKDIR}/node-v${PV} + +src_prepare() { + # fix compilation on Darwin + # http://code.google.com/p/gyp/issues/detail?id=260 + sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || die + + # make sure we use python2.* while using gyp + sed -i -e "s/python/python2/" deps/npm/node_modules/node-gyp/gyp/gyp || die + + # less verbose install output (stating the same as portage, basically) + sed -i -e "/print/d" tools/install.py || die +} + +src_configure() { + "${PYTHON}" configure --prefix="${EPREFIX}"/usr --openssl-use-sys --shared-zlib || die +} + +src_compile() { + emake out/Makefile + emake -C out mksnapshot + pax-mark m out/Release/mksnapshot + emake +} + +src_install() { + "${PYTHON}" tools/install.py install "${ED}" + + dohtml -r "${ED}"/usr/lib/node_modules/npm/html/* + rm -rf "${ED}"/usr/lib/node_modules/npm/doc "${ED}"/usr/lib/node_modules/npm/html + rm -rf "${ED}"/usr/lib/dtrace + + pax-mark -m "${ED}"/usr/bin/node +} + +src_test() { + "${PYTHON}" tools/test.py --mode=release simple message || die +} diff --git a/net-libs/nodejs/nodejs-0.8.23.ebuild b/net-libs/nodejs/nodejs-0.8.23.ebuild new file mode 100644 index 000000000000..5bf2f0f6b309 --- /dev/null +++ b/net-libs/nodejs/nodejs-0.8.23.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/nodejs-0.8.23.ebuild,v 1.1 2013/04/09 03:46:36 patrick Exp $ + +EAPI=5 + +PYTHON_DEPEND="2" + +inherit python eutils multilib pax-utils + +# omgwtf +RESTRICT="test" + +DESCRIPTION="Evented IO for V8 Javascript" +HOMEPAGE="http://nodejs.org/" +SRC_URI="http://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~x64-macos" +IUSE="" + +DEPEND="dev-libs/openssl" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/node-v${PV} + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_prepare() { + # fix compilation on Darwin + # http://code.google.com/p/gyp/issues/detail?id=260 + sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || die + python_convert_shebangs 2 tools/node-waf || die +} + +src_configure() { + # this is an autotools lookalike confuserator + ./configure --prefix="${EPREFIX}"/usr --openssl-use-sys --shared-zlib || die +} + +src_compile() { + emake || die +} + +src_install() { + local MYLIB=$(get_libdir) + mkdir -p "${ED}"/usr/include/node + mkdir -p "${ED}"/usr/bin + mkdir -p "${ED}"/usr/"${MYLIB}"/node_modules/npm + mkdir -p "${ED}"/usr/"${MYLIB}"/node + cp 'src/eio-emul.h' 'src/ev-emul.h' 'src/node.h' 'src/node_buffer.h' 'src/node_object_wrap.h' 'src/node_version.h' "${ED}"/usr/include/node || die "Failed to copy stuff" + cp -R deps/uv/include/* "${ED}"/usr/include/node || die "Failed to copy stuff" + cp -R deps/v8/include/* "${ED}"/usr/include/node || die "Failed to copy stuff" + cp 'out/Release/node' "${ED}"/usr/bin/node || die "Failed to copy stuff" + cp -R deps/npm/* "${ED}"/usr/"${MYLIB}"/node_modules/npm || die "Failed to copy stuff" + cp -R tools/wafadmin "${ED}"/usr/"${MYLIB}"/node/ || die "Failed to copy stuff" + cp 'tools/node-waf' "${ED}"/usr/bin/ || die "Failed to copy stuff" + + # now add some extra stupid just because we can + # needs to be a symlink because of hardcoded paths ... no es bueno! + dosym /usr/"${MYLIB}"/node_modules/npm/bin/npm-cli.js /usr/bin/npm + pax-mark -m "${ED}"/usr/bin/node +} + +src_test() { + emake test || die +} diff --git a/net-libs/telepathy-logger-qt/Manifest b/net-libs/telepathy-logger-qt/Manifest index 02218d33125e..a1ec0fb11a3f 100644 --- a/net-libs/telepathy-logger-qt/Manifest +++ b/net-libs/telepathy-logger-qt/Manifest @@ -1,3 +1 @@ -DIST telepathy-logger-qt-0.4.1.tar.bz2 98297 SHA256 1d38691096a6e59629b4dd772e38012f4e11e5eb62da79437f9392ee01b92207 SHA512 e4070048df882cf850e2a60be53883b10f66b3fbfb756b7f9322395c1b03b771c929039f98a69d22e1ea9006ddbfa4c0b74470d842c5be6c60f3af1206231603 WHIRLPOOL 376da6d8232a762db3f6405a0caeee3fe436edaf8ee933a67e7da2291433d1edaabccb8a06cdfead3e8e3f2dffa9c21a42117343c7d72fce12f8fe0b8c686a42 -DIST telepathy-logger-qt-0.5.0.tar.bz2 98286 SHA256 9648569f735aa2024977fc5c07d07618f24ff681b32c39356a500e5b1c9aa1ce SHA512 5a6fb1033a7e1b9223dc7184c18aa2a6903d2b99710d969225608a24b0ec1a91aee918fecc816f23880092d917ee83b1607d5e92ff50d3b9dec174a7bf9e931f WHIRLPOOL 35b4dcbd5d7b3d400aad4bac3d6d88b2850e8bc38a555d35d1531034a2bd39a6443429f3ae414084ca17a463faa2e6e73e04a75fc865db37a8a76eff461793d2 DIST telepathy-logger-qt-0.5.1.tar.bz2 98325 SHA256 81b1d6e469559dd75292f186167d21fa21acb14903901e18197ff04fcadef449 SHA512 36f24a6b13c1264e785c413a314df80f7f211c71dc00a3d1ed8db1fb99280e39a7460ec179901d0e441fad68d1782e48ed9131fba647b8104059c7a9a2692281 WHIRLPOOL 4a05c9f37769de76e3593e1687ed7d77d1d16a3673bbfebc226c4e3479580ec196d702f4e1746128b9165f74689fa6850aeeba5c457123f8ce85ac7664378118 diff --git a/net-libs/telepathy-logger-qt/telepathy-logger-qt-0.4.1.ebuild b/net-libs/telepathy-logger-qt/telepathy-logger-qt-0.4.1.ebuild deleted file mode 100644 index 3acd6541a0ec..000000000000 --- a/net-libs/telepathy-logger-qt/telepathy-logger-qt-0.4.1.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/telepathy-logger-qt/telepathy-logger-qt-0.4.1.ebuild,v 1.2 2012/08/09 09:31:49 johu Exp $ - -EAPI=4 - -KDE_SCM="git" -inherit kde4-base python - -DESCRIPTION="Qt4 bindings for the Telepathy logger" -HOMEPAGE="https://projects.kde.org/projects/kdereview/telepathy-logger-qt" -if [[ ${PV} != *9999* ]]; then - SRC_URI="mirror://kde/unstable/kde-telepathy/${PV}/src/${P}.tar.bz2" - KEYWORDS="~amd64 ~x86" -else - KEYWORDS="" -fi - -LICENSE="LGPL-2.1" -SLOT="0" -IUSE="debug" - -RDEPEND=" - media-libs/qt-gstreamer - >=net-im/telepathy-logger-0.2.12-r1 - >=net-libs/telepathy-qt-0.9.1 -" -DEPEND="${RDEPEND} - get_browser; +- $b .= " \"$url\"" unless $b =~ s/\%s/"$url"/; +- exec($b) or warn "unable to launch browser\n"; ++ my @b = split(' ', Yarssr::Config->get_browser); ++ if (grep(/\%s/, @b)) ++ { ++ map {grep(s/\%s/$url/, $_) => $_} @b; ++ } ++ else { ++ push(@b, $url); ++ } ++ exec(@b) or warn "unable to launch browser\n"; + exit; + } + } diff --git a/net-news/yarssr/yarssr-0.2.2-r2.ebuild b/net-news/yarssr/yarssr-0.2.2-r2.ebuild new file mode 100644 index 000000000000..5349c6c266f9 --- /dev/null +++ b/net-news/yarssr/yarssr-0.2.2-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-news/yarssr/yarssr-0.2.2-r2.ebuild,v 1.1 2013/04/08 15:12:38 kensington Exp $ + +EAPI=5 + +inherit eutils + +DESCRIPTION="Yet Another RSS Reader - A KDE/Gnome system tray rss aggregator" +HOMEPAGE="http://yarssr.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +RDEPEND="dev-perl/Locale-gettext + dev-perl/XML-RSS + dev-perl/gtk2-trayicon + dev-perl/gtk2-gladexml + dev-perl/gnome2-vfs-perl + >=dev-perl/gnome2-perl-0.94" + +DOCS=( ChangeLog TODO README ) + +src_prepare() { + epatch "${FILESDIR}"/${P}-makefile.patch + epatch "${FILESDIR}"/${P}-cve-2007-5837.patch +} diff --git a/net-print/cups/cups-1.6.2-r1.ebuild b/net-print/cups/cups-1.6.2-r2.ebuild similarity index 95% rename from net-print/cups/cups-1.6.2-r1.ebuild rename to net-print/cups/cups-1.6.2-r2.ebuild index edd99a2ec78c..c9daaf21c99b 100644 --- a/net-print/cups/cups-1.6.2-r1.ebuild +++ b/net-print/cups/cups-1.6.2-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/net-print/cups/cups-1.6.2-r1.ebuild,v 1.2 2013/04/01 22:49:57 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/cups/cups-1.6.2-r2.ebuild,v 1.1 2013/04/10 16:39:19 lxnay Exp $ EAPI=5 @@ -26,7 +26,7 @@ HOMEPAGE="http://www.cups.org/" LICENSE="GPL-2" SLOT="0" IUSE="acl dbus debug +filters gnutls java kerberos pam - python selinux +ssl static-libs systemd +threads usb X xinetd zeroconf" + python selinux +ssl static-libs +threads usb X xinetd zeroconf" LANGS="ca es fr ja ru" for X in ${LANGS} ; do @@ -53,7 +53,6 @@ RDEPEND=" ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) - systemd? ( sys-apps/systemd ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) @@ -82,7 +81,7 @@ PATCHES=( "${FILESDIR}/${PN}-1.6.0-dont-compress-manpages.patch" "${FILESDIR}/${PN}-1.6.0-fix-install-perms.patch" "${FILESDIR}/${PN}-1.4.4-nostrip.patch" - "${FILESDIR}/${PN}-1.5.0-systemd-socket.patch" # systemd support + "${FILESDIR}/${PN}-1.5.0-systemd-socket-2.patch" # systemd support "${FILESDIR}/${PN}-1.6.2-statedir.patch" ) @@ -184,7 +183,7 @@ src_configure() { $(use_with python) \ $(use_with xinetd xinetd /etc/xinetd.d) \ --enable-libpaper \ - $(use_with systemd systemdsystemunitdir "$(systemd_get_unitdir)") \ + --with-systemdsystemunitdir="$(systemd_get_unitdir)" \ ${myconf} # install in /usr/libexec always, instead of using /usr/lib/cups, as that diff --git a/net-print/cups/cups-9999.ebuild b/net-print/cups/cups-9999.ebuild index 0a2eb4202ef7..10630017144f 100644 --- a/net-print/cups/cups-9999.ebuild +++ b/net-print/cups/cups-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-print/cups/cups-9999.ebuild,v 1.28 2013/04/01 22:49:57 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/cups/cups-9999.ebuild,v 1.29 2013/04/10 16:39:19 lxnay Exp $ EAPI=5 @@ -26,7 +26,7 @@ HOMEPAGE="http://www.cups.org/" LICENSE="GPL-2" SLOT="0" IUSE="acl dbus debug +filters gnutls java kerberos pam - python selinux +ssl static-libs systemd +threads usb X xinetd zeroconf" + python selinux +ssl static-libs +threads usb X xinetd zeroconf" LANGS="ca es fr ja ru" for X in ${LANGS} ; do @@ -53,7 +53,6 @@ RDEPEND=" ) !gnutls? ( >=dev-libs/openssl-0.9.8g ) ) - systemd? ( sys-apps/systemd ) usb? ( virtual/libusb:0 ) X? ( x11-misc/xdg-utils ) xinetd? ( sys-apps/xinetd ) @@ -82,7 +81,7 @@ PATCHES=( "${FILESDIR}/${PN}-1.6.0-dont-compress-manpages.patch" "${FILESDIR}/${PN}-1.6.0-fix-install-perms.patch" "${FILESDIR}/${PN}-1.4.4-nostrip.patch" - "${FILESDIR}/${PN}-1.5.0-systemd-socket.patch" # systemd support + "${FILESDIR}/${PN}-1.5.0-systemd-socket-2.patch" # systemd support "${FILESDIR}/${PN}-1.6.2-statedir.patch" ) @@ -184,7 +183,7 @@ src_configure() { $(use_with python) \ $(use_with xinetd xinetd /etc/xinetd.d) \ --enable-libpaper \ - $(use_with systemd systemdsystemunitdir "$(systemd_get_unitdir)") \ + --with-systemdsystemunitdir="$(systemd_get_unitdir)" \ ${myconf} # install in /usr/libexec always, instead of using /usr/lib/cups, as that diff --git a/net-print/cups/files/cups-1.5.0-systemd-socket-2.patch b/net-print/cups/files/cups-1.5.0-systemd-socket-2.patch new file mode 100644 index 000000000000..d24489f0a0d5 --- /dev/null +++ b/net-print/cups/files/cups-1.5.0-systemd-socket-2.patch @@ -0,0 +1,400 @@ +diff -up cups-1.5.0/config.h.in.systemd-socket cups-1.5.0/config.h.in +--- cups-1.5.0/config.h.in.systemd-socket 2011-10-18 15:32:40.741672460 +0100 ++++ cups-1.5.0/config.h.in 2011-10-18 15:32:40.843670530 +0100 +@@ -503,6 +503,13 @@ + + + /* ++ * Do we have systemd support? ++ */ ++ ++#undef HAVE_SYSTEMD ++ ++ ++/* + * Various scripting languages... + */ + +diff -up cups-1.5.0/config-scripts/cups-systemd.m4.systemd-socket cups-1.5.0/config-scripts/cups-systemd.m4 +--- cups-1.5.0/config-scripts/cups-systemd.m4.systemd-socket 2011-10-18 15:32:40.844670511 +0100 ++++ cups-1.5.0/config-scripts/cups-systemd.m4 2011-10-18 15:33:16.861989058 +0100 +@@ -0,0 +1,36 @@ ++dnl ++dnl "$Id: cups-1.5.0-systemd-socket-2.patch,v 1.1 2013/04/10 16:39:19 lxnay Exp $" ++dnl ++dnl systemd stuff for CUPS. ++ ++dnl Find whether systemd is available ++ ++SDLIBS="" ++AC_ARG_WITH([systemdsystemunitdir], ++ AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]), ++ [], [with_systemdsystemunitdir=$($PKGCONFIG --variable=systemdsystemunitdir systemd)]) ++if test "x$with_systemdsystemunitdir" != xno; then ++ AC_MSG_CHECKING(for libsystemd-daemon) ++ if $PKGCONFIG --exists libsystemd-daemon; then ++ AC_MSG_RESULT(yes) ++ SDCFLAGS=`$PKGCONFIG --cflags libsystemd-daemon` ++ SDLIBS=`$PKGCONFIG --libs libsystemd-daemon` ++ AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir]) ++ AC_DEFINE(HAVE_SYSTEMD) ++ else ++ AC_MSG_RESULT(no) ++ fi ++fi ++ ++if test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ; then ++ SYSTEMD_UNITS="cups.service cups.socket cups.path" ++else ++ SYSTEMD_UNITS="" ++fi ++ ++AC_SUBST(SYSTEMD_UNITS) ++AC_SUBST(SDLIBS) ++ ++dnl ++dnl "$Id: cups-1.5.0-systemd-socket-2.patch,v 1.1 2013/04/10 16:39:19 lxnay Exp $" ++dnl +diff -up cups-1.5.0/configure.in.systemd-socket cups-1.5.0/configure.in +--- cups-1.5.0/configure.in.systemd-socket 2010-11-20 01:03:46.000000000 +0000 ++++ cups-1.5.0/configure.in 2011-10-18 15:32:40.844670511 +0100 +@@ -37,6 +37,7 @@ sinclude(config-scripts/cups-pam.m4) + sinclude(config-scripts/cups-largefile.m4) + sinclude(config-scripts/cups-dnssd.m4) + sinclude(config-scripts/cups-launchd.m4) ++sinclude(config-scripts/cups-systemd.m4) + sinclude(config-scripts/cups-defaults.m4) + sinclude(config-scripts/cups-pdf.m4) + sinclude(config-scripts/cups-scripting.m4) +@@ -71,6 +72,9 @@ AC_OUTPUT(Makedefs + conf/snmp.conf + cups-config + data/testprint ++ data/cups.service ++ data/cups.socket ++ data/cups.path + desktop/cups.desktop + doc/help/ref-cupsd-conf.html + doc/help/standard.html +diff -up cups-1.5.0/cups/usersys.c.systemd-socket cups-1.5.0/cups/usersys.c +--- cups-1.5.0/cups/usersys.c.systemd-socket 2011-10-18 15:32:40.645674277 +0100 ++++ cups-1.5.0/cups/usersys.c 2011-10-18 15:32:40.845670492 +0100 +@@ -770,7 +770,7 @@ cups_read_client_conf( + struct stat sockinfo; /* Domain socket information */ + + if (!stat(CUPS_DEFAULT_DOMAINSOCKET, &sockinfo) && +- (sockinfo.st_mode & S_IRWXO) == S_IRWXO) ++ (sockinfo.st_mode & (S_IROTH | S_IWOTH)) == (S_IROTH | S_IWOTH)) + cups_server = CUPS_DEFAULT_DOMAINSOCKET; + else + #endif /* CUPS_DEFAULT_DOMAINSOCKET */ +diff -up cups-1.5.0/data/cups.path.in.systemd-socket cups-1.5.0/data/cups.path.in +--- cups-1.5.0/data/cups.path.in.systemd-socket 2011-10-18 15:32:40.846670473 +0100 ++++ cups-1.5.0/data/cups.path.in 2011-10-18 15:32:40.846670473 +0100 +@@ -0,0 +1,8 @@ ++[Unit] ++Description=CUPS Printer Service Spool ++ ++[Path] ++PathExistsGlob=@CUPS_REQUESTS@/d* ++ ++[Install] ++WantedBy=multi-user.target +diff -up cups-1.5.0/data/cups.service.in.systemd-socket cups-1.5.0/data/cups.service.in +--- cups-1.5.0/data/cups.service.in.systemd-socket 2011-10-18 15:32:40.846670473 +0100 ++++ cups-1.5.0/data/cups.service.in 2011-10-18 15:32:40.846670473 +0100 +@@ -0,0 +1,9 @@ ++[Unit] ++Description=CUPS Printing Service ++ ++[Service] ++ExecStart=@sbindir@/cupsd -f ++ ++[Install] ++Also=cups.socket cups.path ++WantedBy=printer.target +diff -up cups-1.5.0/data/cups.socket.in.systemd-socket cups-1.5.0/data/cups.socket.in +--- cups-1.5.0/data/cups.socket.in.systemd-socket 2011-10-18 15:32:40.847670454 +0100 ++++ cups-1.5.0/data/cups.socket.in 2011-10-18 15:32:40.847670454 +0100 +@@ -0,0 +1,10 @@ ++[Unit] ++Description=CUPS Printing Service Sockets ++ ++[Socket] ++ListenStream=@CUPS_DEFAULT_DOMAINSOCKET@ ++ListenStream=631 ++BindIPv6Only=ipv6-only ++ ++[Install] ++WantedBy=sockets.target +diff -up cups-1.5.0/data/Makefile.systemd-socket cups-1.5.0/data/Makefile +--- cups-1.5.0/data/Makefile.systemd-socket 2011-05-12 06:21:56.000000000 +0100 ++++ cups-1.5.0/data/Makefile 2011-10-18 15:32:40.847670454 +0100 +@@ -112,6 +112,12 @@ install-data: + $(INSTALL_DATA) $$file $(DATADIR)/ppdc; \ + done + $(INSTALL_DIR) -m 755 $(DATADIR)/profiles ++ if test "x$(SYSTEMD_UNITS)" != "x" ; then \ ++ $(INSTALL_DIR) -m 755 $(SYSTEMDUNITDIR); \ ++ for file in $(SYSTEMD_UNITS); do \ ++ $(INSTALL_DATA) $$file $(SYSTEMDUNITDIR); \ ++ done; \ ++ fi + + + # +@@ -159,6 +165,9 @@ uninstall: + -$(RMDIR) $(DATADIR)/charsets + -$(RMDIR) $(DATADIR)/banners + -$(RMDIR) $(DATADIR) ++ for file in $(SYSTEMD_UNITS); do \ ++ $(RM) $(SYSTEMDUNITDIR)/$$file; \ ++ done + + + # +diff -up cups-1.5.0/Makedefs.in.systemd-socket cups-1.5.0/Makedefs.in +--- cups-1.5.0/Makedefs.in.systemd-socket 2011-10-18 15:32:40.719672876 +0100 ++++ cups-1.5.0/Makedefs.in 2011-10-18 15:32:40.848670435 +0100 +@@ -143,6 +143,7 @@ CXXFLAGS = @CPPFLAGS@ @CXXFLAGS@ + CXXLIBS = @CXXLIBS@ + DBUS_NOTIFIER = @DBUS_NOTIFIER@ + DBUS_NOTIFIERLIBS = @DBUS_NOTIFIERLIBS@ ++SYSTEMD_UNITS = @SYSTEMD_UNITS@ + DNSSD_BACKEND = @DNSSD_BACKEND@ + DSOFLAGS = -L../cups @DSOFLAGS@ + DSOLIBS = @DSOLIBS@ $(COMMONLIBS) +@@ -151,6 +152,7 @@ FONTS = @FONTS@ + IMGLIBS = @IMGLIBS@ + IMGFILTERS = @IMGFILTERS@ + LAUNCHDLIBS = @LAUNCHDLIBS@ ++SDLIBS = @SDLIBS@ + LDFLAGS = -L../cgi-bin -L../cups -L../filter -L../ppdc \ + -L../scheduler @LDARCHFLAGS@ \ + @LDFLAGS@ @RELROFLAGS@ @PIEFLAGS@ $(OPTIM) +@@ -267,6 +269,7 @@ PAMFILE = @PAMFILE@ + + DEFAULT_LAUNCHD_CONF = @DEFAULT_LAUNCHD_CONF@ + DBUSDIR = @DBUSDIR@ ++SYSTEMDUNITDIR = $(BUILDROOT)@systemdsystemunitdir@ + + + # +diff -up cups-1.5.0/scheduler/client.h.systemd-socket cups-1.5.0/scheduler/client.h +--- cups-1.5.0/scheduler/client.h.systemd-socket 2011-03-25 21:25:38.000000000 +0000 ++++ cups-1.5.0/scheduler/client.h 2011-10-18 15:32:40.848670435 +0100 +@@ -75,6 +75,9 @@ typedef struct + int fd; /* File descriptor for this server */ + http_addr_t address; /* Bind address of socket */ + http_encryption_t encryption; /* To encrypt or not to encrypt... */ ++#ifdef HAVE_SYSTEMD ++ int is_systemd; /* Is this a systemd socket? */ ++#endif /* HAVE_SYSTEMD */ + } cupsd_listener_t; + + +diff -up cups-1.5.0/scheduler/listen.c.systemd-socket cups-1.5.0/scheduler/listen.c +--- cups-1.5.0/scheduler/listen.c.systemd-socket 2011-04-16 00:38:13.000000000 +0100 ++++ cups-1.5.0/scheduler/listen.c 2011-10-18 15:32:40.849670416 +0100 +@@ -401,7 +401,11 @@ cupsdStopListening(void) + lis; + lis = (cupsd_listener_t *)cupsArrayNext(Listeners)) + { +- if (lis->fd != -1) ++ if (lis->fd != -1 ++#ifdef HAVE_SYSTEMD ++ && !lis->is_systemd ++#endif /* HAVE_SYSTEMD */ ++ ) + { + #ifdef WIN32 + closesocket(lis->fd); +diff -up cups-1.5.0/scheduler/main.c.systemd-socket cups-1.5.0/scheduler/main.c +--- cups-1.5.0/scheduler/main.c.systemd-socket 2011-10-18 15:32:40.802671306 +0100 ++++ cups-1.5.0/scheduler/main.c 2011-10-18 15:32:40.851670379 +0100 +@@ -26,6 +26,8 @@ + * launchd_checkin() - Check-in with launchd and collect the listening + * fds. + * launchd_checkout() - Update the launchd KeepAlive file as needed. ++ * systemd_checkin() - Check-in with systemd and collect the ++ * listening fds. + * parent_handler() - Catch USR1/CHLD signals... + * process_children() - Process all dead children... + * select_timeout() - Calculate the select timeout value. +@@ -62,6 +64,10 @@ + # endif /* !LAUNCH_JOBKEY_SERVICEIPC */ + #endif /* HAVE_LAUNCH_H */ + ++#ifdef HAVE_SYSTEMD ++#include ++#endif /* HAVE_SYSTEMD */ ++ + #if defined(HAVE_MALLOC_H) && defined(HAVE_MALLINFO) + # include + #endif /* HAVE_MALLOC_H && HAVE_MALLINFO */ +@@ -83,6 +89,9 @@ + static void launchd_checkin(void); + static void launchd_checkout(void); + #endif /* HAVE_LAUNCHD */ ++#ifdef HAVE_SYSTEMD ++static int systemd_checkin(void); ++#endif /* HAVE_SYSTEMD */ + static void parent_handler(int sig); + static void process_children(void); + static void sigchld_handler(int sig); +@@ -571,6 +580,14 @@ main(int argc, /* I - Number of comm + } + #endif /* HAVE_LAUNCHD */ + ++#ifdef HAVE_SYSTEMD ++ /* ++ * If we were started by systemd get the listen sockets file descriptors... ++ */ ++ if (systemd_checkin() < 0) ++ exit(EXIT_FAILURE); ++#endif /* HAVE_SYSTEMD */ ++ + /* + * Startup the server... + */ +@@ -781,6 +798,16 @@ main(int argc, /* I - Number of comm + } + #endif /* HAVE_LAUNCHD */ + ++#ifdef HAVE_SYSTEMD ++ /* ++ * If we were started by systemd get the listen sockets file ++ * descriptors... ++ */ ++ ++ if (systemd_checkin() < 0) ++ exit(EXIT_FAILURE); ++#endif /* HAVE_SYSTEMD */ ++ + /* + * Startup the server... + */ +@@ -1542,6 +1569,102 @@ launchd_checkout(void) + } + #endif /* HAVE_LAUNCHD */ + ++#ifdef HAVE_SYSTEMD ++static int ++systemd_checkin(void) ++{ ++ int n, fd; ++ ++ n = sd_listen_fds(0); ++ if (n < 0) ++ { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Failed to acquire sockets " ++ "from systemd - %s -- skipping systemd activation", ++ strerror(-n)); ++ return (1); ++ } ++ ++ if (n == 0) ++ return (0); ++ ++ for (fd = SD_LISTEN_FDS_START; fd < SD_LISTEN_FDS_START + n; fd ++) ++ { ++ http_addr_t addr; ++ socklen_t addrlen = sizeof (addr); ++ int r; ++ cupsd_listener_t *lis; ++ char s[256]; ++ ++ r = sd_is_socket(fd, AF_UNSPEC, SOCK_STREAM, 1); ++ if (r < 0) { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Unable to verify socket type - %s", ++ strerror(-r)); ++ continue; ++ } ++ ++ if (!r) { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Socket not of the right type"); ++ continue; ++ } ++ ++ if (getsockname(fd, (struct sockaddr*) &addr, &addrlen)) ++ { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Unable to get local address - %s", ++ strerror(errno)); ++ continue; ++ } ++ ++ /* ++ * Try to match the systemd socket address to one of the listeners... ++ */ ++ ++ for (lis = (cupsd_listener_t *)cupsArrayFirst(Listeners); ++ lis; ++ lis = (cupsd_listener_t *)cupsArrayNext(Listeners)) ++ if (httpAddrEqual(&lis->address, &addr)) ++ break; ++ ++ if (lis) ++ { ++ cupsdLogMessage(CUPSD_LOG_DEBUG, ++ "systemd_checkin: Matched existing listener %s with fd %d...", ++ httpAddrString(&(lis->address), s, sizeof(s)), fd); ++ } ++ else ++ { ++ cupsdLogMessage(CUPSD_LOG_DEBUG, ++ "systemd_checkin: Adding new listener %s with fd %d...", ++ httpAddrString(&addr, s, sizeof(s)), fd); ++ ++ if ((lis = calloc(1, sizeof(cupsd_listener_t))) == NULL) ++ { ++ cupsdLogMessage(CUPSD_LOG_ERROR, ++ "systemd_checkin: Unable to allocate listener - " ++ "%s.", strerror(errno)); ++ return (-ENOMEM); ++ } ++ ++ cupsArrayAdd(Listeners, lis); ++ ++ memcpy(&lis->address, &addr, sizeof(lis->address)); ++ } ++ ++ lis->fd = fd; ++ lis->is_systemd = 1; ++ ++# ifdef HAVE_SSL ++ if (_httpAddrPort(&(lis->address)) == 443) ++ lis->encryption = HTTP_ENCRYPT_ALWAYS; ++# endif /* HAVE_SSL */ ++ } ++ ++ return (0); ++} ++#endif /* HAVE_SYSTEMD */ + + /* + * 'parent_handler()' - Catch USR1/CHLD signals... +diff -up cups-1.5.0/scheduler/Makefile.systemd-socket cups-1.5.0/scheduler/Makefile +--- cups-1.5.0/scheduler/Makefile.systemd-socket 2011-10-18 15:32:40.817671022 +0100 ++++ cups-1.5.0/scheduler/Makefile 2011-10-18 15:32:40.852670360 +0100 +@@ -382,7 +382,7 @@ cupsd: $(CUPSDOBJS) $(LIBCUPSMIME) ../cu + $(CC) $(LDFLAGS) -o cupsd $(CUPSDOBJS) -L. -lcupsmime \ + $(LIBZ) $(SSLLIBS) $(LIBSLP) $(LIBLDAP) $(PAMLIBS) \ + $(LIBPAPER) $(LIBMALLOC) $(SERVERLIBS) $(DNSSDLIBS) $(LIBS) \ +- $(LIBGSSAPI) $(LIBWRAP) ++ $(LIBGSSAPI) $(LIBWRAP) $(SDLIBS) + + cupsd-static: $(CUPSDOBJS) libcupsmime.a ../cups/$(LIBCUPSSTATIC) + echo Linking $@... +@@ -390,7 +390,7 @@ cupsd-static: $(CUPSDOBJS) libcupsmime.a + $(LIBZ) $(SSLLIBS) $(LIBSLP) $(LIBLDAP) $(PAMLIBS) \ + ../cups/$(LIBCUPSSTATIC) $(COMMONLIBS) $(LIBZ) $(LIBPAPER) \ + $(LIBMALLOC) $(SERVERLIBS) $(DNSSDLIBS) $(LIBGSSAPI) \ +- $(LIBWRAP) ++ $(LIBWRAP) $(SDLIBS) + + + # diff --git a/net-print/libgnomecups/libgnomecups-0.2.3-r3.ebuild b/net-print/libgnomecups/libgnomecups-0.2.3-r3.ebuild index 1c84389948be..acdc0fd8700e 100644 --- a/net-print/libgnomecups/libgnomecups-0.2.3-r3.ebuild +++ b/net-print/libgnomecups/libgnomecups-0.2.3-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/net-print/libgnomecups/libgnomecups-0.2.3-r3.ebuild,v 1.9 2013/04/01 18:25:33 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/libgnomecups/libgnomecups-0.2.3-r3.ebuild,v 1.10 2013/04/09 16:44:20 ago Exp $ EAPI="4" GCONF_DEBUG="yes" @@ -14,7 +14,7 @@ HOMEPAGE="http://www.gnome.org/" LICENSE="GPL-2 LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd" +KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd" IUSE="" RDEPEND=">=dev-libs/glib-2:2 diff --git a/net-proxy/dansguardian/Manifest b/net-proxy/dansguardian/Manifest index d4da3f5597b0..c7fd65c61c0d 100644 --- a/net-proxy/dansguardian/Manifest +++ b/net-proxy/dansguardian/Manifest @@ -1,3 +1,2 @@ DIST dansguardian-2.10.0.3.tar.gz 512695 SHA256 419be86f472ad0a69a8a15857a646271ac9739d29bd836be9159f2d955e5b963 -DIST dansguardian-2.10.1.1.tar.gz 516800 SHA256 c245d58cf37f79f8a8e50b684d62b797a9f6ce1bb775e140969002dff7e11f92 DIST dansguardian-2.12.0.3.tar.bz2 577701 SHA256 c74e9a32b97f9a9a056fced3da23fe48fca2bc6aa9af670afe9a53dc819414f5 SHA512 37155ef4f1a6dd6bdd87f79c7199b77de49746e4bff0631c239a569c21bf26240cbc9eae5a2436653bfc3d170a664710af9d80c4cfac3082a0620caeaac6740b WHIRLPOOL 64f64161a3dbf48c122fbf341ac8a7b4892be2049d1ac05948e9aa8c4cb927efa6ce929404b60c43f67457268f3c432b0ff109fb333ffe8ab84bba0b528b52eb diff --git a/net-proxy/dansguardian/dansguardian-2.10.1.1.ebuild b/net-proxy/dansguardian/dansguardian-2.10.0.3-r1.ebuild similarity index 92% rename from net-proxy/dansguardian/dansguardian-2.10.1.1.ebuild rename to net-proxy/dansguardian/dansguardian-2.10.0.3-r1.ebuild index 9bcfa3ab1c1e..2338bf359124 100644 --- a/net-proxy/dansguardian/dansguardian-2.10.1.1.ebuild +++ b/net-proxy/dansguardian/dansguardian-2.10.0.3-r1.ebuild @@ -1,8 +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/net-proxy/dansguardian/dansguardian-2.10.1.1.ebuild,v 1.2 2012/05/03 04:35:53 jdhore Exp $ - -EAPI="2" +# $Header: /var/cvsroot/gentoo-x86/net-proxy/dansguardian/dansguardian-2.10.0.3-r1.ebuild,v 1.1 2013/04/09 18:36:01 tomwij Exp $ inherit eutils @@ -16,7 +14,7 @@ KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" IUSE="clamav kaspersky debug ntlm pcre" RDEPEND="sys-libs/zlib - pcre? ( dev-libs/libpcre ) + pcre? ( >=dev-libs/libpcre-8.32 ) clamav? ( >=app-antivirus/clamav-0.93 )" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -40,18 +38,19 @@ pkg_setup() { fi } -src_prepare() { +src_unpack() { + unpack ${A} + epatch "${FILESDIR}"/${P}-gcc44.patch } -src_configure() { +src_compile() { local myconf="--with-logdir=/var/log/dansguardian --with-piddir=/var/run --docdir=/usr/share/doc/${PF} --htmldir=/usr/share/doc/${PF}/html $(use_enable pcre) $(use_enable ntlm) - --enable-orig-ip --enable-fancydm --enable-email" if use clamav; then @@ -68,14 +67,12 @@ src_configure() { fi econf ${myconf} || die "configure failed" -} -src_compile() { emake OPTIMISE="${CFLAGS}" || die "emake failed" } src_install() { - emake "DESTDIR=${D}" install || die "emake install failed" + make "DESTDIR=${D}" install || die "make install failed" # Move html documents to html dir mkdir "${D}"/usr/share/doc/${PF}/html \ diff --git a/net-proxy/dansguardian/dansguardian-2.10.1.1-r1.ebuild b/net-proxy/dansguardian/dansguardian-2.10.1.1-r1.ebuild deleted file mode 100644 index 5bd8ad2acef4..000000000000 --- a/net-proxy/dansguardian/dansguardian-2.10.1.1-r1.ebuild +++ /dev/null @@ -1,129 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/dansguardian/dansguardian-2.10.1.1-r1.ebuild,v 1.2 2012/05/03 04:35:53 jdhore Exp $ - -EAPI="2" - -inherit eutils - -DESCRIPTION="Web content filtering via proxy" -HOMEPAGE="http://dansguardian.org" -SRC_URI="http://dansguardian.org/downloads/2/Stable/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="clamav kaspersky debug ntlm pcre" - -RDEPEND="sys-libs/zlib - pcre? ( dev-libs/libpcre ) - clamav? ( >=app-antivirus/clamav-0.93 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_setup() { - if has_version "<${CATEGORY}/${PN}-2.9" ; then - ewarn "This version introduces brand new USE flags:" - ewarn " clamav kaspersky ntlm pcre" - echo - - local f="${ROOT}/etc/dansguardian" - f=${f//\/\///} - if [ -d "${f}" ] ; then - eerror "The structure of ${f} has changed in this version!" - eerror "For avoiding confusion, you must either move or delete the old ${f}," - eerror "then continue with the upgrade:" - eerror " mv '${f}' '${f}.old'" - eerror " emerge --resume" - die "Obsolete config files detected" - fi - fi - - if ! use clamav; then - enewgroup dansguardian - enewuser dansguardian -1 -1 /dev/null dansguardian - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc44.patch -} - -src_configure() { - local myconf="--with-logdir=/var/log/dansguardian - --with-piddir=/var/run - --docdir=/usr/share/doc/${PF} - --htmldir=/usr/share/doc/${PF}/html - $(use_enable pcre) - $(use_enable ntlm) - --enable-orig-ip - --enable-fancydm - --enable-email" - if use clamav; then - # readd --enable-clamav in the next version if it works with >=clamav-0.95 (#264820) - myconf="${myconf} --enable-clamd - --with-proxyuser=clamav - --with-proxygroup=clamav" - else - myconf="${myconf} - --with-proxyuser=dansguardian - --with-proxygroup=dansguardian" - fi - if use kaspersky; then - myconf="${myconf} --enable-kavd" - fi - if use debug; then - myconf="${myconf} --with-dgdebug=on" - fi - - econf ${myconf} || die "configure failed" -} - -src_compile() { - emake OPTIMISE="${CFLAGS}" || die "emake failed" -} - -src_install() { - emake "DESTDIR=${D}" install || die "emake install failed" - - # Move html documents to html dir - mkdir "${D}"/usr/share/doc/${PF}/html \ - && mv "${D}"/usr/share/doc/${PF}/*.html "${D}"/usr/share/doc/${PF}/html \ - || die "no html docs found in docdir" - - # Copying init script - newinitd "${FILESDIR}/dansguardian.init" dansguardian - - if use clamav; then - sed -r -i -e 's/[ \t]+use dns/& clamd/' "${D}/etc/init.d/dansguardian" - sed -r -i -e 's/^#( *contentscanner *=.*clamdscan[.]conf.*)/\1/' "${D}/etc/dansguardian/dansguardian.conf" - sed -r -i -e 's/^#( *clamdudsfile *=.*)/\1/' "${D}/etc/dansguardian/contentscanners/clamdscan.conf" - elif use kaspersky; then - sed -r -i -e 's/^#( *contentscanner *=.*kavdscan[.]conf.*)/\1/' "${D}/etc/dansguardian/dansguardian.conf" - fi - - # Copying logrotation file - insinto /etc/logrotate.d - newins "${FILESDIR}/dansguardian.logrotate" dansguardian - - keepdir /var/log/dansguardian - fperms o-rwx /var/log/dansguardian -} - -pkg_postinst() { - local runas="dansguardian:dansguardian" - if use clamav ; then - runas="clamav:clamav" - else - elog "dansguardian runs as a dedicated user now" - elog "You may need to remove old ipc files or adjust their ownership." - elog "By default, those files are /tmp/.dguardianipc" - elog "and /tmp/.dguardianurlipc" - fi - einfo "The dansguardian daemon will run by default as ${runas}" - - if [ -d "${ROOT}/var/log/dansguardian" ] ; then - chown -R ${runas} "${ROOT}/var/log/dansguardian" - chmod o-rwx "${ROOT}/var/log/dansguardian" - fi -} diff --git a/net-proxy/dansguardian/dansguardian-2.10.1.1-r2.ebuild b/net-proxy/dansguardian/dansguardian-2.10.1.1-r2.ebuild deleted file mode 100644 index 4a06acd79809..000000000000 --- a/net-proxy/dansguardian/dansguardian-2.10.1.1-r2.ebuild +++ /dev/null @@ -1,130 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-proxy/dansguardian/dansguardian-2.10.1.1-r2.ebuild,v 1.2 2013/03/04 12:13:11 tomwij Exp $ - -EAPI="2" - -inherit eutils - -DESCRIPTION="Web content filtering via proxy" -HOMEPAGE="http://dansguardian.org" -SRC_URI="http://dansguardian.org/downloads/2/Stable/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="clamav kaspersky debug ntlm pcre" - -RDEPEND="sys-libs/zlib - pcre? ( dev-libs/libpcre ) - clamav? ( >=app-antivirus/clamav-0.93 )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -pkg_setup() { - if has_version "<${CATEGORY}/${PN}-2.9" ; then - ewarn "This version introduces brand new USE flags:" - ewarn " clamav kaspersky ntlm pcre" - echo - - local f="${ROOT}/etc/dansguardian" - f=${f//\/\///} - if [ -d "${f}" ] ; then - eerror "The structure of ${f} has changed in this version!" - eerror "For avoiding confusion, you must either move or delete the old ${f}," - eerror "then continue with the upgrade:" - eerror " mv '${f}' '${f}.old'" - eerror " emerge --resume" - die "Obsolete config files detected" - fi - fi - - if ! use clamav; then - enewgroup dansguardian - enewuser dansguardian -1 -1 /dev/null dansguardian - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-gcc44.patch - epatch "${FILESDIR}"/${P}-pcre830.patch -} - -src_configure() { - local myconf="--with-logdir=/var/log/dansguardian - --with-piddir=/var/run - --docdir=/usr/share/doc/${PF} - --htmldir=/usr/share/doc/${PF}/html - $(use_enable pcre) - $(use_enable ntlm) - --enable-orig-ip - --enable-fancydm - --enable-email" - if use clamav; then - # readd --enable-clamav in the next version if it works with >=clamav-0.95 (#264820) - myconf="${myconf} --enable-clamd - --with-proxyuser=clamav - --with-proxygroup=clamav" - else - myconf="${myconf} - --with-proxyuser=dansguardian - --with-proxygroup=dansguardian" - fi - if use kaspersky; then - myconf="${myconf} --enable-kavd" - fi - if use debug; then - myconf="${myconf} --with-dgdebug=on" - fi - - econf ${myconf} || die "configure failed" -} - -src_compile() { - emake OPTIMISE="${CFLAGS}" || die "emake failed" -} - -src_install() { - emake "DESTDIR=${D}" install || die "emake install failed" - - # Move html documents to html dir - mkdir "${D}"/usr/share/doc/${PF}/html \ - && mv "${D}"/usr/share/doc/${PF}/*.html "${D}"/usr/share/doc/${PF}/html \ - || die "no html docs found in docdir" - - # Copying init script - newinitd "${FILESDIR}/dansguardian.init" dansguardian - - if use clamav; then - sed -r -i -e 's/[ \t]+use dns/& clamd/' "${D}/etc/init.d/dansguardian" - sed -r -i -e 's/^#( *contentscanner *=.*clamdscan[.]conf.*)/\1/' "${D}/etc/dansguardian/dansguardian.conf" - sed -r -i -e 's/^#( *clamdudsfile *=.*)/\1/' "${D}/etc/dansguardian/contentscanners/clamdscan.conf" - elif use kaspersky; then - sed -r -i -e 's/^#( *contentscanner *=.*kavdscan[.]conf.*)/\1/' "${D}/etc/dansguardian/dansguardian.conf" - fi - - # Copying logrotation file - insinto /etc/logrotate.d - newins "${FILESDIR}/dansguardian.logrotate" dansguardian - - keepdir /var/log/dansguardian - fperms o-rwx /var/log/dansguardian -} - -pkg_postinst() { - local runas="dansguardian:dansguardian" - if use clamav ; then - runas="clamav:clamav" - else - elog "dansguardian runs as a dedicated user now" - elog "You may need to remove old ipc files or adjust their ownership." - elog "By default, those files are /tmp/.dguardianipc" - elog "and /tmp/.dguardianurlipc" - fi - einfo "The dansguardian daemon will run by default as ${runas}" - - if [ -d "${ROOT}/var/log/dansguardian" ] ; then - chown -R ${runas} "${ROOT}/var/log/dansguardian" - chmod o-rwx "${ROOT}/var/log/dansguardian" - fi -} diff --git a/net-proxy/dansguardian/dansguardian-2.12.0.3.ebuild b/net-proxy/dansguardian/dansguardian-2.12.0.3-r2.ebuild similarity index 93% rename from net-proxy/dansguardian/dansguardian-2.12.0.3.ebuild rename to net-proxy/dansguardian/dansguardian-2.12.0.3-r2.ebuild index 5a064160694a..58a2dcd3cf50 100644 --- a/net-proxy/dansguardian/dansguardian-2.12.0.3.ebuild +++ b/net-proxy/dansguardian/dansguardian-2.12.0.3-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/net-proxy/dansguardian/dansguardian-2.12.0.3.ebuild,v 1.1 2013/03/04 12:13:11 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/dansguardian/dansguardian-2.12.0.3-r2.ebuild,v 1.1 2013/04/09 18:36:01 tomwij Exp $ EAPI="5" @@ -19,7 +19,7 @@ RDEPEND="sys-libs/zlib clamav? ( app-antivirus/clamav ) logrotate? ( app-admin/logrotate ) ntlm? ( virtual/libiconv ) - pcre? ( dev-libs/libpcre )" + pcre? ( >=dev-libs/libpcre-8.32 )" DEPEND="${RDEPEND} virtual/pkgconfig" @@ -31,12 +31,17 @@ pkg_setup() { } src_configure() { + local debug + if use debug ; then + debug="$(use_with debug dgdebug)" + fi + econf \ $(use_enable avast avastd) \ $(use_enable backtrace segv-backtrace) \ $(use_enable clamav clamd) \ $(use_enable commandline) \ - $(use_with debug dgdebug) \ + ${debug} \ $(use_enable email) \ $(use_enable fancydm) \ $(use_enable icap) \ diff --git a/net-proxy/dante/Manifest b/net-proxy/dante/Manifest index addbba1a84fb..92cc24e23798 100644 --- a/net-proxy/dante/Manifest +++ b/net-proxy/dante/Manifest @@ -1,3 +1,3 @@ DIST dante-1.1.19.tar.gz 895713 SHA256 b49f0936282a14c41a03cd70158d1a11e6af3564a18d4b3337f291fb6dae0936 -DIST dante-1.3.2.tar.gz 949049 SHA256 6b736f32ec58b899c24cf14be02491a0631a778e385314370d5dea4baf482efb +DIST dante-1.3.2.tar.gz 949049 SHA256 6b736f32ec58b899c24cf14be02491a0631a778e385314370d5dea4baf482efb SHA512 ee6214ffcb48904cbb361b275e78af5d4a5e0281a3fab6eb5a6913219f4cfebda2d2a7509a88c561e315f9061102c954339ad495cdecf2125e266f85d7e49ca3 WHIRLPOOL e98d31f0bf725d3961582c540cb4180535e1abfdc3138b04663e478dd228e7e642103fd707fa59b904fce8ccd7762ff975fa4310f82669975a042e4bbcf4f8b0 DIST dante-1.4.0-pre1.tar.gz 1021746 SHA256 57f450bbb428648bdc9c096166a0a26eb8f8fea0800945976b4370eae1f387df SHA512 d76e1433bdaf5a177b1b596aafd14978a723fa753809df5da263f978b18c70abb1775b28d86f3e134ef77d23e4c178205a471e1570b3ffc362447f0380dde7bb WHIRLPOOL 267c944b7154bdd90358e80807d9a7478d6bcc16289dbfdd8626ebe0bc9950d69e141a6b5d6941677a17b30c790b8a624b2f47f1bcff1f55cac3d6831af25984 diff --git a/net-proxy/dante/dante-1.1.19-r4.ebuild b/net-proxy/dante/dante-1.1.19-r4.ebuild index e288d3c86a7e..ed50f8e45ce0 100644 --- a/net-proxy/dante/dante-1.1.19-r4.ebuild +++ b/net-proxy/dante/dante-1.1.19-r4.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/net-proxy/dante/dante-1.1.19-r4.ebuild,v 1.9 2012/03/13 12:07:02 phajdan.jr Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/dante-1.1.19-r4.ebuild,v 1.10 2013/04/09 18:09:40 tomwij Exp $ inherit eutils autotools @@ -8,7 +8,7 @@ DESCRIPTION="A free socks4,5 and msproxy implementation" HOMEPAGE="http://www.inet.no/dante/" SRC_URI="ftp://ftp.inet.no/pub/socks/${P}.tar.gz" -LICENSE="BSD" +LICENSE="BSD GPL-2" SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd" IUSE="tcpd debug selinux pam" diff --git a/net-proxy/dante/dante-1.3.2-r1.ebuild b/net-proxy/dante/dante-1.3.2-r1.ebuild new file mode 100644 index 000000000000..9bdb31456ab6 --- /dev/null +++ b/net-proxy/dante/dante-1.3.2-r1.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/net-proxy/dante/dante-1.3.2-r1.ebuild,v 1.1 2013/04/09 18:09:40 tomwij Exp $ + +EAPI="5" + +inherit autotools eutils + +DESCRIPTION="A free socks4,5 and msproxy implementation" +HOMEPAGE="http://www.inet.no/dante/" +SRC_URI="ftp://ftp.inet.no/pub/socks/${P}.tar.gz" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="debug kerberos pam selinux static-libs tcpd" + +RDEPEND="pam? ( virtual/pam ) + kerberos? ( virtual/krb5 ) + selinux? ( sec-policy/selinux-dante ) + tcpd? ( sys-apps/tcp-wrappers ) + userland_GNU? ( virtual/shadow )" +DEPEND="${RDEPEND} + sys-devel/flex + sys-devel/bison" + +DOCS="BUGS CREDITS NEWS README SUPPORT doc/README* doc/*.txt doc/SOCKS4.protocol" + +src_prepare() { + epatch \ + "${FILESDIR}"/${PN}-1.3.0-socksify.patch \ + "${FILESDIR}"/${PN}-1.3.1-flags.patch + + sed -i \ + -e 's:/etc/socks\.conf:"${EPREFIX}"/etc/socks/socks.conf:' \ + -e 's:/etc/sockd\.conf:"${EPREFIX}"/etc/socks/sockd.conf:' \ + doc/{socksify.1,socks.conf.5,sockd.conf.5,sockd.8} \ + || die + eautoreconf +} + +src_configure() { + econf \ + --with-socks-conf="${EPREFIX}"/etc/socks/socks.conf \ + --with-sockd-conf="${EPREFIX}"/etc/socks/sockd.conf \ + --without-upnp \ + $(use_enable debug) \ + $(use_with kerberos gssapi) \ + $(use_with pam) \ + $(use_enable static-libs static) \ + $(use_enable tcpd libwrap) +} + +src_install() { + default + + # default configuration files + insinto /etc/socks + doins "${FILESDIR}"/sock?.conf + pushd "${ED}/etc/socks" > /dev/null + use pam && epatch "${FILESDIR}/sockd.conf-with-pam.patch" + use tcpd && epatch "${FILESDIR}/sockd.conf-with-libwrap.patch" + popd > /dev/null + + # init script + newinitd "${FILESDIR}/${P}-sockd-init" dante-sockd + newconfd "${FILESDIR}/dante-sockd-conf" dante-sockd + + # example configuration files + docinto examples + dodoc example/*.conf + + use static-libs || find "${ED}" -name '*.la' -exec rm '{}' + +} + +pkg_postinst() { + enewuser sockd -1 -1 /etc/socks daemon +} diff --git a/net-proxy/dante/dante-1.3.2.ebuild b/net-proxy/dante/dante-1.3.2.ebuild index 994b1d59e725..d990a5a12910 100644 --- a/net-proxy/dante/dante-1.3.2.ebuild +++ b/net-proxy/dante/dante-1.3.2.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/net-proxy/dante/dante-1.3.2.ebuild,v 1.4 2012/04/26 16:53:40 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/dante-1.3.2.ebuild,v 1.5 2013/04/09 18:09:40 tomwij Exp $ EAPI="4" @@ -10,7 +10,7 @@ DESCRIPTION="A free socks4,5 and msproxy implementation" HOMEPAGE="http://www.inet.no/dante/" SRC_URI="ftp://ftp.inet.no/pub/socks/${P}.tar.gz" -LICENSE="BSD" +LICENSE="BSD GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" IUSE="debug kerberos pam selinux static-libs tcpd" diff --git a/net-proxy/dante/dante-1.4.0_pre1-r1.ebuild b/net-proxy/dante/dante-1.4.0_pre1-r1.ebuild new file mode 100644 index 000000000000..4d3cac389847 --- /dev/null +++ b/net-proxy/dante/dante-1.4.0_pre1-r1.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/dante-1.4.0_pre1-r1.ebuild,v 1.1 2013/04/09 18:09:40 tomwij Exp $ + +EAPI="5" + +inherit autotools eutils + +DESCRIPTION="A free socks4,5 and msproxy implementation" +HOMEPAGE="http://www.inet.no/dante/" +MY_P="${P/_/-}" +SRC_URI="ftp://ftp.inet.no/pub/socks/${MY_P}.tar.gz" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="debug kerberos pam selinux static-libs tcpd" + +RDEPEND="pam? ( virtual/pam ) + kerberos? ( virtual/krb5 ) + selinux? ( sec-policy/selinux-dante ) + tcpd? ( sys-apps/tcp-wrappers ) + userland_GNU? ( virtual/shadow )" +DEPEND="${RDEPEND} + sys-devel/flex + sys-devel/bison" + +DOCS="BUGS CREDITS NEWS README SUPPORT doc/README* doc/*.txt doc/SOCKS4.protocol" + +S="${WORKDIR}/${MY_P}" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.3.0-socksify.patch \ + "${FILESDIR}"/${PN}-1.4.0-osdep-format-macro.patch + + sed -i \ + -e 's:/etc/socks\.conf:"${EPREFIX}"/etc/socks/socks.conf:' \ + -e 's:/etc/sockd\.conf:"${EPREFIX}"/etc/socks/sockd.conf:' \ + doc/{socksify.1,socks.conf.5,sockd.conf.5,sockd.8} \ + || die + eautoreconf +} + +src_configure() { + econf \ + --with-socks-conf="${EPREFIX}"/etc/socks/socks.conf \ + --with-sockd-conf="${EPREFIX}"/etc/socks/sockd.conf \ + --without-upnp \ + $(use_enable debug) \ + $(use_with kerberos gssapi) \ + $(use_with pam) \ + $(use_enable static-libs static) \ + $(use_enable tcpd libwrap) +} + +src_install() { + default + + # default configuration files + insinto /etc/socks + doins "${FILESDIR}"/sock?.conf + pushd "${ED}/etc/socks" > /dev/null + use pam && epatch "${FILESDIR}/sockd.conf-with-pam.patch" + use tcpd && epatch "${FILESDIR}/sockd.conf-with-libwrap.patch" + popd > /dev/null + + # init script + newinitd "${FILESDIR}/${PN}-1.3.2-sockd-init" dante-sockd + newconfd "${FILESDIR}/dante-sockd-conf" dante-sockd + + # example configuration files + docinto examples + dodoc example/*.conf + + use static-libs || find "${ED}" -name '*.la' -exec rm '{}' + +} + +pkg_postinst() { + enewuser sockd -1 -1 /etc/socks daemon +} diff --git a/net-proxy/dante/dante-1.4.0_pre1.ebuild b/net-proxy/dante/dante-1.4.0_pre1.ebuild index f26a14682e3a..919078a93e64 100644 --- a/net-proxy/dante/dante-1.4.0_pre1.ebuild +++ b/net-proxy/dante/dante-1.4.0_pre1.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-proxy/dante/dante-1.4.0_pre1.ebuild,v 1.2 2013/03/06 06:17:37 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/dante-1.4.0_pre1.ebuild,v 1.3 2013/04/09 18:09:40 tomwij Exp $ EAPI="5" @@ -11,7 +11,7 @@ HOMEPAGE="http://www.inet.no/dante/" MY_P="${P/_/-}" SRC_URI="ftp://ftp.inet.no/pub/socks/${MY_P}.tar.gz" -LICENSE="BSD" +LICENSE="BSD GPL-2" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" IUSE="debug kerberos pam selinux static-libs tcpd" diff --git a/net-proxy/dante/files/dante-1.3.2-sockd-init b/net-proxy/dante/files/dante-1.3.2-sockd-init new file mode 100644 index 000000000000..7be9f3b265af --- /dev/null +++ b/net-proxy/dante/files/dante-1.3.2-sockd-init @@ -0,0 +1,57 @@ +#!/sbin/runscript +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-proxy/dante/files/dante-1.3.2-sockd-init,v 1.1 2013/04/09 18:09:40 tomwij Exp $ + +SOCKD_OPT="" +[ "${SOCKD_FORKDEPTH:-1}" -gt 1 ] && SOCKD_OPT="${SOCKD_OPT} -N ${SOCKD_FORKDEPTH}" +[ "${SOCKD_DEBUG:-0}" -eq 1 ] && SOCKD_OPT="${SOCKD_OPT} -d" +[ "${SOCKD_DISABLE_KEEPALIVE:-0}" -eq 1 ] && SOCKD_OPT="${SOCKD_OPT} -n" +PIDFILE=/var/run/sockd.pid +SOCKDIR=/var/lock/dante-sockd/ + +depend() { + need net +} + +checkconfig() { + # first check that it exists + if [ ! -f /etc/socks/sockd.conf ] ; then + eerror "You need to setup /etc/socks/sockd.conf first" + eerror "Examples are in /usr/share/doc/dante[version]/example" + eerror "for more info, see: man sockd.conf" + return 1 + fi + + /usr/sbin/sockd -V >/tmp/dante-sockd.checkconf 2>&1 + if [ $? -ne 0 ]; then + cat /tmp/dante-sockd.checkconf + eerror "Something is wrong with your configuration file" + eerror "for more info, see: man sockd.conf" + return 1 + fi + rm /tmp/dante-sockd.checkconf + + DAEMON_UID=`sed -e '/^[ \t]*user[.]notprivileged[ \t]*:/{s/.*:[ \t]*//;q};d' /etc/socks/sockd.conf` + if [ -n "$DAEMON_UID" ]; then + [ ! -d $SOCKDIR ] && mkdir $SOCKDIR && chown $DAEMON_UID $SOCKDIR + [ ! -f $SOCKDIR/.keep ] && touch $SOCKDIR/.keep + fi + + return 0 +} + +start() { + checkconfig || return 1 + ebegin "Starting dante sockd" + start-stop-daemon --start --quiet \ + --background --pidfile $PIDFILE --make-pidfile --env TMPDIR=$SOCKDIR \ + --exec /usr/sbin/sockd -- ${SOCKD_OPT} >/dev/null 2>&1 + eend $? "Failed to start sockd" +} + +stop() { + ebegin "Stopping dante sockd" + start-stop-daemon --stop --quiet --pidfile $PIDFILE + eend $? "Failed to stop sockd" +} diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults index d19b201c5f53..b4b3e2029b6a 100644 --- a/profiles/base/make.defaults +++ b/profiles/base/make.defaults @@ -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/profiles/base/make.defaults,v 1.93 2013/03/23 10:23:25 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/base/make.defaults,v 1.94 2013/04/10 03:05:17 zerochaos Exp $ # # System-wide defaults for the Portage system # See portage(5) manpage @@ -122,7 +122,9 @@ PYTHONDONTWRITEBYTECODE="1" # Jorge Manuel B. S. Vicetto (16 Nov 2011) # Add default USE value for bootstrap and rename it from STAGE1_USE to BOOTSTRAP_USE -BOOTSTRAP_USE="cxx unicode" +# Add in expanded PYTHON_TARGETS or stage1 builds break because of USE="-* ${BOOTSTRAP_USE}" +# This MUST be kept in sync with the PYTHON_TARGETS below +BOOTSTRAP_USE="cxx unicode python_targets_python3_2 python_targets_python2_7" # Mike Gilbert (15 May 2012) # Default target(s) for python-r1.eclass diff --git a/profiles/hardened/linux/amd64/package.mask b/profiles/hardened/linux/amd64/package.mask index 60a4b1f855ea..eb787d48f00d 100644 --- a/profiles/hardened/linux/amd64/package.mask +++ b/profiles/hardened/linux/amd64/package.mask @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/amd64/package.mask,v 1.4 2012/11/20 04:18:17 zorry Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/amd64/package.mask,v 1.5 2013/04/09 23:02:50 zorry Exp $ # Magnus Granberg (20 Nov 2012) # Newer then 300.00 is patched but we still have RWX in the libs. @@ -8,8 +8,9 @@ # hell will rule. # Bug 433121 <=x11-drivers/nvidia-drivers-300.00 -#media-video/nvidia-settings #dev-util/nvidia-cuda-sdk +# Need X +media-video/nvidia-settings # Depends on x11-drivers/nvidia-drivers #dev-python/pyopencl diff --git a/profiles/hardened/linux/x86/package.mask b/profiles/hardened/linux/x86/package.mask index 025195089dd5..ff27b6e1e6fe 100644 --- a/profiles/hardened/linux/x86/package.mask +++ b/profiles/hardened/linux/x86/package.mask @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/x86/package.mask,v 1.8 2012/11/27 01:20:13 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/hardened/linux/x86/package.mask,v 1.9 2013/04/09 23:02:50 zorry Exp $ # Rick Farina (26 Nov 2012) # Newer then 300.00 is patched but we still have RWX in the libs. @@ -8,8 +8,9 @@ # hell will rule. Propogating change from amd64. # Bug 433121 <=x11-drivers/nvidia-drivers-300.00 -#media-video/nvidia-settings #dev-util/nvidia-cuda-sdk +# Need X +media-video/nvidia-settings # Depends on x11-drivers/nvidia-drivers #dev-python/pyopencl diff --git a/profiles/license_groups b/profiles/license_groups index d82c5bfa6d56..acb9e9daa22d 100644 --- a/profiles/license_groups +++ b/profiles/license_groups @@ -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/profiles/license_groups,v 1.201 2013/03/21 21:47:22 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/license_groups,v 1.202 2013/04/09 18:46:58 ulm Exp $ # Please report bugs or other requests at bugs.gentoo.org and assign to # licenses@gentoo.org @@ -30,7 +30,7 @@ OSI-APPROVED AFL-3.0 AGPL-3 Apache-1.1 Apache-2.0 APL-1.0 APSL-2 Artistic Artist # TODO: maybe add a category for BSD-alike MISC-FREE licenses for easy # separation? # BSD-4 alikes: dom4j FastCGI icu JDOM -MISC-FREE ACE Allegro alternate ANTLR bea.ri.jsr173 BEER-WARE boehm-gc BSD-1 BSD-with-attribution buddy bufexplorer.vim BZIP2 CDDL-Schily CeCILL-C CFS CMake CPL-0.5 CRACKLIB cryptopp czyborra DES docbook dom4j eGenixPublic-1.1 ElementTree Emacs ErlPL-1.1 FastCGI feh Flashpix FLEX flexmock FLTK freemarker FVWM gd gnuplot gsm HTML-Tidy htmlc iASL IBPP-1.1 icu IDPL IJG imagemagick Info-ZIP inner-net ipadic ipx-utils Ispell JasPer2.0 JDOM JNIC JOVE keynote LIBGLOSS libmng libodialog libpng libtiff LLGPL-2.1 LPPL-1.3 LPPL-1.3b lsof mapm-4.9.5 matplotlib md2k7-asyouwish minpack MIT-with-advertising mm mpich2 nap NCSA-HDF netcat NEWLIB ngrep noweb npm Old-MIT openafs-krb5-a OpenSoftware Openwall otter PCRE perforce photopc PHP-2.02 PIZZA-WARE pngcrush pngnq Princeton psutils pysqlite qmail-nelson rc regexp-UofT RSA rwpng Sendmail shrimp skype-4.0.0.7-third-party_attributions.txt SMAIL SNIA SSLeay Subversion SVFL tablelist tcltk tcp_wrappers_license TermReadKey TeX TeX-other-free Time-modules tm-align URT w3m wxWinLL-3 x2x xbatt xboing XC Xdebug xtrs xvt YaTeX zpaq ZSH +MISC-FREE ACE Allegro alternate ANTLR bea.ri.jsr173 BEER-WARE boehm-gc BSD-1 BSD-with-attribution buddy bufexplorer.vim BZIP2 CDDL-Schily CeCILL-C CFS CMake CPL-0.5 CRACKLIB cryptopp czyborra DES docbook dom4j eGenixPublic-1.1 ElementTree Emacs ErlPL-1.1 FastCGI feh Flashpix FLEX flexmock FLTK freemarker FVWM gd gnuplot gsm HTML-Tidy htmlc iASL IBPP-1.1 icu IDPL IJG imagemagick Info-ZIP inner-net ipadic ipx-utils Ispell JasPer2.0 JDOM JNIC JOVE keynote LambdaMOO LIBGLOSS libmng libodialog libpng libtiff LLGPL-2.1 LPPL-1.3 LPPL-1.3b lsof mapm-4.9.5 matplotlib md2k7-asyouwish minpack MIT-with-advertising mm mpich2 nap NCSA-HDF netcat NEWLIB ngrep noweb npm Old-MIT openafs-krb5-a OpenSoftware Openwall otter PCRE perforce photopc PHP-2.02 PIZZA-WARE pngcrush pngnq Princeton psutils pysqlite qmail-nelson rc regexp-UofT RSA rwpng Sendmail shrimp skype-4.0.0.7-third-party_attributions.txt SMAIL SNIA SSLeay Subversion SVFL tablelist tcltk tcp_wrappers_license TermReadKey TeX TeX-other-free Time-modules tm-align URT w3m wxWinLL-3 x2x xbatt xboing XC Xdebug xtrs xvt YaTeX zpaq ZSH # The following are NOT valid in @MISC-FREE: # arj - usage restrictions # freedist - Doesn't grant the right to do modifications. diff --git a/profiles/package.mask b/profiles/package.mask index a194c227a59a..55581c6ade13 100644 --- a/profiles/package.mask +++ b/profiles/package.mask @@ -1,5 +1,5 @@ #################################################################### -# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.14640 2013/04/08 12:21:36 olemarkus Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/package.mask,v 1.14648 2013/04/10 14:37:43 jer 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,30 @@ #--- END OF EXAMPLES --- +# Jeroen Roovers (10 Apr 2013) +# Mask beta Nvidia driver +>x11-drivers/nvidia-drivers-319 + +# Samuli Suominen (09 Apr 2013) +# Broken. Should be bumped to 0.13.0 but needs a dedicated +# maintainer to look after it. See bug #465244. +# Removal in 30 days. Use dracut or genkernel instead. + (09 Apr 2013) +# Fails to build (bug #449860), abandoned by upstream. +# Removal in 30 days. +mail-client/postler + +# Justin Lecher (09 Apr 2013) +# Fetch fails and mirroring is restricted #465144 +=sci-chemistry/talos+-1.2009.1013.14 + +# Patrick Lauer (09 Apr 2013) +# Masked to get 0.10 tested +=net-libs/nodejs-0.11* + # Mike Gilbert (07 Apr 2013) # Masked for testing. =dev-lang/python-2.7.4 @@ -362,15 +386,6 @@ sys-kernel/linuxwacom-module # Removal in 30 days x11-drivers/xf86-input-citron -# Samuli Suominen (11 Mar 2013) -# Too many blockers with current stable, incompatible -# with current udev for example. -# Should be redudant in favour of the device-mapper -# packaged in sys-fs/lvm2. -# See, http://bugs.gentoo.org/show_bug.cgi?id=461382 -# Removal in 30 days -sys-fs/device-mapper - # Julian Ospald (10 Mar 2013) # Depends on maked dev-lang/python:3.3 =media-gfx/blender-2.66 @@ -388,10 +403,9 @@ sys-fs/device-mapper # Samuli Suominen (07 Mar 2013) # Remove redudant version of udev now that 197-r8 will # work down to Linux 2.6.32.60 on most arches. -# Removal in 90 days. +# Removal in 60 days. ~sys-fs/udev-171 ~virtual/udev-171 - (07 Mar 2013) # Masked in favour of sys-apps/kmod. Now is the time to file @@ -405,6 +419,7 @@ sys-apps/module-init-tools # wrt bugs 411443 and 413753 # Masked temporarily until fixed =media-libs/libcaca-0.99_beta18 +=app-misc/toilet-0.3 # Robin H. Johnson (04 Mar 2013) # MySQL 5.6 is not yet GA. diff --git a/profiles/updates/2Q-2013 b/profiles/updates/2Q-2013 index 66b2c415048b..501efb4ba57b 100644 --- a/profiles/updates/2Q-2013 +++ b/profiles/updates/2Q-2013 @@ -7,3 +7,4 @@ slotmove =dev-haskell/gtk-0.12* 0 2 slotmove =dev-haskell/gtk2hs-buildtools-0.12* 0 2 slotmove =dev-haskell/pango-0.12* 0 2 slotmove =media-sound/ardour-2.8* 0 2 +slotmove =net-libs/libgrss-0.5.0* 0 0.5 diff --git a/profiles/use.local.desc b/profiles/use.local.desc index c0549989856b..3616efd6c939 100644 --- a/profiles/use.local.desc +++ b/profiles/use.local.desc @@ -982,6 +982,7 @@ app-text/libwpg:tools - Build miscellaneous tools app-text/lodgeit:vim - Install a vim plugin allowing to paste and download from within vim app-text/mathtex:png - Generate png images by default instead of gif app-text/pandoc:embed_data_files - Embed data files in binary for relocatable executable. +app-text/pastebinit:crypt - Install pbputs for gpg-encrypted pastes app-text/pdf2djvu:graphicsmagick - Enable media-gfx/graphicsmagick support app-text/pdfgrep:unac - Removing accents and ligatures before search app-text/pdftk:nodrm - Decrypt a document with the user_pw even if it has an owner_pw set @@ -2750,6 +2751,7 @@ media-gfx/darktable:opencl - Enable opencl support media-gfx/darktable:pax_kernel - Triggers paxmarking of main darktable binary media-gfx/darktable:rawspeed - Enable the rawspeed backend media-gfx/darktable:slideshow - Build the opengl slideshow viewer +media-gfx/darktable:web-services - Add support for uploading photos to facebook and picasa media-gfx/digikam:addressbook - Add support for kdepim media-gfx/digikam:linguas_ha - Hausa translation media-gfx/digikam:linguas_mi - Maori translation @@ -2954,6 +2956,7 @@ media-libs/libvpx:sse3 - Enable optimization for SSE3 capable chips media-libs/libvpx:sse4_1 - Enable optimization for SSE4_1 capable processors (Intel Core 2 Penryn and later chips) media-libs/libvpx:ssse3 - faster floating point optimization for SSSE3 capable chips (Intel Core 2 and later chips) media-libs/libwebp:experimental - Build with -DWEBP_EXPERIMENTAL_FEATURES +media-libs/libwebp:swap-16bit-csp - Enable byte swapping for 16 bit colorspace media-libs/lilv:dyn-manifest - Add LV2 Dynamic Manifest support. See http://lv2plug.in/ns/ext/dynmanifest/ media-libs/lv2:plugins - Enables examples plugins. media-libs/mash:introspection - Use dev-libs/gobject-introspection for introspection @@ -4092,6 +4095,7 @@ net-ftp/proftpd:ctrls - Enable support for the mod_ctrls and mod_ctrls_admin mod net-ftp/proftpd:deflate - Enable support for the mod_deflate module net-ftp/proftpd:diskuse - Enable support for the mod_diskuse module net-ftp/proftpd:dso - Enable support for the mod_dso module +net-ftp/proftpd:dynmasq - Enable support for the mod_dynmasq module, for dynamically updating MasqueradeAddress for dyndns-like scenarios) net-ftp/proftpd:exec - Enable support for the mod_exec module. WARNING: this could be a security risk net-ftp/proftpd:ident - Enable support for the mod_ident module net-ftp/proftpd:ifsession - Enable support for the ifsession module @@ -4102,6 +4106,7 @@ net-ftp/proftpd:linguas_it_IT - Language support for it_IT net-ftp/proftpd:linguas_ja_JP - Language support for ja_JP net-ftp/proftpd:linguas_ru_RU - Language support for ru_RU net-ftp/proftpd:memcache - Enable support for the mod_memcache module, for using memcached servers +net-ftp/proftpd:msg - Enable support for the mod_msg module, allows system users to send messages to connected clients via the ftpdctl program. net-ftp/proftpd:openssl - Enable dev-libs/openssl support net-ftp/proftpd:qos - Enable support for the mod_qos module net-ftp/proftpd:ratio - Enable support for the mod_ratio module @@ -5294,7 +5299,6 @@ sci-libs/acml:gfortran - Fetch and install acml compiled with GNU gfortran sci-libs/acml:ifc - Fetch and install acml compiled with Intel Fortran Compiler (dev-lang/ifc) sci-libs/acml:int64 - Install the 64 bits integer library sci-libs/adolc:sparse - Add support for sparse matrix algebra with sci-libs/colpack -sci-libs/armadillo:atlas - Link with ATLAS libraries for cblas and clapack (needs sci-libs/lapack-atlas) sci-libs/arprec:fma - Use the Fused Multiply Add instruction set sci-libs/arprec:qd - Use sci-libs/qd for quad-double datatype sci-libs/ceres-solver:gflags - Use dev-cpp/gflags for flag parsing @@ -5686,16 +5690,16 @@ sys-block/gparted:xfs - Include XFS support (sys-fs/xfsprogs, sys-fs/xfsdump) sys-block/open-iscsi:modules - Build the open-iscsi kernel modules sys-block/open-iscsi:utils - Build the open-iscsi utilities sys-block/parted:debug - Enable debugging as encouraged by upstream: [The default configuration] includes --enable-debug (by default), which contains many assertions. Obviously, these "waste" space, but in the past, they have caught potentially dangerous bugs before they would have done damage, so we think it's worth it. Also, it means we get more bug reports ;) -sys-block/parted:device-mapper - Enable sys-fs/device-mapper support in parted +sys-block/parted:device-mapper - Enable device-mapper support from sys-fs/lvm2 in parted sys-block/partimage:nologin - Do not include login support when connecting partimaged sys-block/tgt:fcoe - Add support for FCoE protocol sys-block/tgt:fcp - Add support for new FC protocol sys-block/tgt:ibmvio - Add support for IBM Virtual I/O -sys-boot/grub:device-mapper - Enable support for sys-fs/device-mapper +sys-boot/grub:device-mapper - Enable support for device-mapper from sys-fs/lvm2 sys-boot/grub:efiemu - Build and install the efiemu runtimes sys-boot/grub:libzfs - Enable support for sys-fs/zfs sys-boot/grub:mount - Build and install the grub-mount utility -sys-boot/lilo:device-mapper - Enable support for sys-fs/device-mapper +sys-boot/lilo:device-mapper - Enable support for device-mapper from sys-fs/lvm2 sys-boot/lilo:minimal - Do not install the dolilo helper script sys-boot/lilo:pxeserial - Avoid character echo on PXE serial console sys-boot/plymouth:gdm - Enables smooth transition to GDM @@ -5883,7 +5887,6 @@ sys-fs/loop-aes:padlock - Use VIA padlock instructions, detected at run time, co sys-fs/lvm2:clvm - Allow users to build clustered lvm2 sys-fs/lvm2:cman - Cman support for clustered lvm sys-fs/lvm2:lvm1 - Allow users to build lvm2 with lvm1 support -sys-fs/lvm2:nolvmstatic - Allow users to build lvm2 dynamically sys-fs/lvm2:thin - Support for thin volumes sys-fs/mtpfs:mad - Enable handling of MP3's metadata sys-fs/ntfs3g:crypt - Add support for encrypted NTFS drives/partitions. @@ -5975,6 +5978,7 @@ sys-libs/gdbm:exporter - enable gdbmexport binary for exporting data from gdbm-1 sys-libs/glibc:gd - build memusage and memusagestat tools sys-libs/glibc:linuxthreads - Build linuxthreads support (only for kernels older than linux-2.6) sys-libs/glibc:nscd - Build, and enable support for, the Name Service Cache Daemon +sys-libs/glibc:suid - Make internal pt_chown helper setuid -- not needed if using Linux and have /dev/pts mounted with gid=5 sys-libs/glibc:systemtap - enable systemtap static probe points sys-libs/gwenhywfar:fox - Use x11-libs/fox graphical toolkit sys-libs/libosinfo:introspection - Use dev-libs/gobject-introspection for introspection diff --git a/sci-chemistry/gabedit/Manifest b/sci-chemistry/gabedit/Manifest index 21ca09e5c2ac..90cbc7368dbe 100644 --- a/sci-chemistry/gabedit/Manifest +++ b/sci-chemistry/gabedit/Manifest @@ -3,3 +3,4 @@ DIST GabeditSrc240.tar.gz 2005689 SHA256 dc5b008be44e4462d09475fcee4c93289845a3d DIST GabeditSrc242.tar.gz 2018984 SHA256 a868bb528be9286c10aa193d8be71e99a7f4b2a8237e258d572d755a8f1ff020 DIST GabeditSrc243.tar.gz 1927710 SHA256 cba474cfcd1b92e6589ffc21e4262cddafb5f5868a6759fe2eea59dc02d9a51b SHA512 3fb099f178493ebf3fa174480b3b0d92348b5ba03bede5c0871eacae5a68b1a1f8178079542e3ec856966cd3cee672240c5e9c13517c28244ee8c24d807a40de WHIRLPOOL 17efb3e0d822ea7e3f1f9f0343991ac35ef4dfcef915084b54cf003b876f9001dfa8afe060f98ce15c78e793ca936aa968c5657a904b19ec672c0e2e83fde54f DIST GabeditSrc245.tar.gz 2014340 SHA256 db6e8581f597b1799aaf0ab65590fb40dc46f73840968b5cf9d5459823a31077 SHA512 c18f7b713b59860131bf7a6cb6e617830f3dd69225b67eca429930317695daaddcd448654ae4d517d08314cff88ffd12c9166ed8017d51d29c7545195f2805d6 WHIRLPOOL fc01a49546cbdc3590eb748377feebf82ede5f99c7548864591e25e91ec2ac08b5d55759953fcd8e7ac4d89c84b460e9c3c0965c243b7821b268a9a08c0a8af4 +DIST GabeditSrc246.tar.gz 1964406 SHA256 3881df1f2d4788d4b3660e7d8af0f7318223dd50194fd9ed0072dd58a6beaa12 SHA512 fbd92ff532ce21e97dcc2d012927fb0d19f4634956e88122a8e9a41e9484592ede455c3a88670cbd1c6387a4d0916425f897d2ade1957ebf4b25b89c7365a076 WHIRLPOOL 12be8d5299e6adcb63e4c989542f2fae02136a18bf515ded7ce8f7b3ab4e69f9fb085778be0bd5589b9ae42b7fd80c5ea7fa451a24377e5feedeb09ddff7a6b7 diff --git a/sci-chemistry/gabedit/gabedit-2.4.6.ebuild b/sci-chemistry/gabedit/gabedit-2.4.6.ebuild new file mode 100644 index 000000000000..770cdec55aa8 --- /dev/null +++ b/sci-chemistry/gabedit/gabedit-2.4.6.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gabedit/gabedit-2.4.6.ebuild,v 1.1 2013/04/09 06:22:18 jlec Exp $ + +EAPI=5 + +inherit eutils toolchain-funcs versionator + +MY_PN=${PN/g/G} +MY_PV=$(delete_all_version_separators) +MY_P="${MY_PN}Src${MY_PV}" + +DESCRIPTION="GUI for computational chemistry packages" +HOMEPAGE="http://gabedit.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="openmp" + +RDEPEND=" + dev-libs/glib:2 + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:2 + x11-libs/gtkglext + x11-libs/gl2ps + x11-libs/pango + virtual/opengl + virtual/glu" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/${MY_P} + +src_prepare() { + sed -i "/rmdir tmp/d" "${S}"/Makefile || die + sed \ + -e "/GTK_DISABLE_DEPRECATED/s:define:undef:g" \ + -i "${S}/Config.h" || die + sed -e 's:-g::g' -i Makefile || die + cp "${FILESDIR}"/CONFIG.Gentoo "${S}"/CONFIG + + if use openmp && tc-has-openmp; then + cat <<- EOF >> "${S}/CONFIG" + OMPLIB=-fopenmp + OMPCFLAGS=-DENABLE_OMP -fopenmp + EOF + fi + echo "COMMONCFLAGS = ${CFLAGS} -DENABLE_DEPRECATED \$(OMPCFLAGS) \$(DRAWGEOMGL)" >> CONFIG + + tc-export CC +} + +src_compile() { + emake clean + emake external_gl2ps=1 +} + +src_install() { + local size + dobin ${PN} + dodoc ChangeLog + for size in 16 24 32 48; do + doicon -s ${size} icons/Gabedit${size}.* + done +} diff --git a/sci-chemistry/gabedit/metadata.xml b/sci-chemistry/gabedit/metadata.xml index a96fa5cdc0be..a6208270db01 100644 --- a/sci-chemistry/gabedit/metadata.xml +++ b/sci-chemistry/gabedit/metadata.xml @@ -1,9 +1,9 @@ - sci-chemistry - - jlec@gentoo.org - Tree Proxy for Max - + sci-chemistry + + jlec@gentoo.org + Tree Proxy for Max + diff --git a/sci-chemistry/theseus/Manifest b/sci-chemistry/theseus/Manifest index 9b1bf7ce1a6b..c027f0030873 100644 --- a/sci-chemistry/theseus/Manifest +++ b/sci-chemistry/theseus/Manifest @@ -1 +1,2 @@ -DIST theseus_1.6.2.tar.gz 1214732 RMD160 94d041766eeb0394317be6626244ce97dd9ea8ee SHA1 1ef5e560a0ca27627437564cf72e28dd5fbb9cc4 SHA256 2e23f19e8417b3ddf700168c387a9b927b1372f20ba9e983ad2880da7e43be82 +DIST theseus_1.6.2.tar.gz 1214732 SHA256 2e23f19e8417b3ddf700168c387a9b927b1372f20ba9e983ad2880da7e43be82 SHA512 5c678fee39fd75be62c7d1f9c88da9d9eb8b34f8fc7626605aaa8fb61c8bdcd615621c088aa4eb335c2a1f607b6d2bac1c30460025bcede31fc1cbff2c1b56b0 WHIRLPOOL b4de91945ebde0a63452516c9a563dfa5fa51e80447672425bfb8a63ba2d50f669bfd273aa981d386b2d03b718e3fd65f8d66aaa21e7c409563ceba4eee6a55b +DIST theseus_2.0.1.tar.gz 1227936 SHA256 7b726121332223065c8e291a0a527a16ccf7ce57e44adcce2eea742e74336f94 SHA512 fa425b2adfaeae098283f84e4c10d29ad83a580196b41bf2c651f626e05df8fc6025aa4e66ec95b44e0943cf824c1cd4b77391dcadca7062cecdf5ec78d67fac WHIRLPOOL 13de3bd194224a26f36f69d5321fcf31dac79f934844fd2ec79c6bf43b03a0cda07a6e5a7f4ea97857ea1565a3adc26bba9a0c3a118f6b00dc23c53f9ef6e622 diff --git a/sci-chemistry/theseus/metadata.xml b/sci-chemistry/theseus/metadata.xml index dde7ca88a50f..ae9ec7c5f6a4 100644 --- a/sci-chemistry/theseus/metadata.xml +++ b/sci-chemistry/theseus/metadata.xml @@ -1,8 +1,8 @@ -sci-chemistry - - jlec@gentoo.org - + sci-chemistry + + jlec@gentoo.org + diff --git a/sci-chemistry/theseus/theseus-2.0.1.ebuild b/sci-chemistry/theseus/theseus-2.0.1.ebuild new file mode 100644 index 000000000000..7c84e3da67b6 --- /dev/null +++ b/sci-chemistry/theseus/theseus-2.0.1.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/theseus/theseus-2.0.1.ebuild,v 1.1 2013/04/09 09:57:35 jlec Exp $ + +EAPI=5 + +inherit multilib toolchain-funcs + +DESCRIPTION="maximum likelihood superpositioning and analysis of macromolecular structures" +HOMEPAGE="http://www.theseus3d.org/" +SRC_URI="http://www.theseus3d.org/src/${PN}_${PV}.tar.gz" + +SLOT="0" +LICENSE="GPL-3" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" +IUSE="examples" + +RDEPEND=" + sci-libs/gsl + || ( + sci-biology/probcons + sci-biology/mafft + sci-biology/t-coffee + sci-biology/kalign + sci-biology/clustalw + sci-biology/muscle + )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S="${WORKDIR}"/${PN}_src/ + +src_prepare() { + cat >> make.inc <<- EOF + ARCH = $(tc-getAR) + ARCHFLAGS = -rvs + RANLIB = $(tc-getRANLIB) + LOCALLIBDIR = "${EPREFIX}/usr/$(get_libdir) + SYSLIBS = $(pkg-config --libs gsl) -lpthread + LIBS = -ldistfit -lmsa -ldssplite -ldltmath -lDLTutils -ltheseus + LIBDIR = -L./lib + INSTALLDIR = "${ED}"/usr/bin + OPT = + WARN = + CFLAGS = ${CFLAGS} \$(WARN) + CC = $(tc-getCC) + EOF + + sed \ + -e 's|theseus:|theseus: libs|g' \ + -e '/-o theseus/s:$(CC):$(CC) ${LDFLAGS}:g' \ + -i Makefile || die + + sed \ + -e 's:/usr/local/bin/::g' \ + -e 's:/usr/bin/::g' \ + -i theseus_align || die +} + +src_install() { + dobin theseus theseus_align + dodoc theseus_man.pdf README AUTHORS + use examples && insinto /usr/share/${PN} && doins -r examples +} diff --git a/sci-libs/armadillo/armadillo-3.4.4.ebuild b/sci-libs/armadillo/armadillo-3.4.4.ebuild index 8bd2db2bf79a..afbf4463b04d 100644 --- a/sci-libs/armadillo/armadillo-3.4.4.ebuild +++ b/sci-libs/armadillo/armadillo-3.4.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/sci-libs/armadillo/armadillo-3.4.4.ebuild,v 1.6 2013/01/03 05:33:16 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/armadillo/armadillo-3.4.4.ebuild,v 1.7 2013/04/10 06:04:30 jlec Exp $ EAPI=4 @@ -35,13 +35,13 @@ src_configure() { if use blas; then mycmakeargs+=( -DBLAS_FOUND=ON - -DBLAS_LIBRARIES="$($(tc-getPKGCONFIG) --libs blas)" + -DBLAS_LIBRARIES="$($(tc-getPKG_CONFIG) --libs blas)" ) fi if use lapack; then mycmakeargs+=( -DLAPACK_FOUND=ON - -DLAPACK_LIBRARIES="$($(tc-getPKGCONFIG) --libs lapack)" + -DLAPACK_LIBRARIES="$($(tc-getPKG_CONFIG) --libs lapack)" ) fi cmake-utils_src_configure diff --git a/sci-libs/armadillo/metadata.xml b/sci-libs/armadillo/metadata.xml index c598db146c17..13f3be1f60ae 100644 --- a/sci-libs/armadillo/metadata.xml +++ b/sci-libs/armadillo/metadata.xml @@ -14,7 +14,4 @@ need for temporaries. This is accomplished through recursive templates and template meta-programming. - - Link with ATLAS libraries for cblas and clapack (needs sci-libs/lapack-atlas) - diff --git a/sci-libs/cholmod/cholmod-2.0.1.ebuild b/sci-libs/cholmod/cholmod-2.0.1.ebuild index 17d890d86493..f1ff6dd7389f 100644 --- a/sci-libs/cholmod/cholmod-2.0.1.ebuild +++ b/sci-libs/cholmod/cholmod-2.0.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/cholmod/cholmod-2.0.1.ebuild,v 1.4 2013/01/03 05:26:05 bicatali Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cholmod/cholmod-2.0.1.ebuild,v 1.5 2013/04/10 06:06:12 jlec Exp $ EAPI=4 @@ -39,8 +39,8 @@ src_configure() { local lapack_libs=no local blas_libs=no if use lapack; then - blas_libs=$($(tc-getPKGCONFIG) --libs blas) - lapack_libs=$($(tc-getPKGCONFIG) --libs lapack) + blas_libs=$($(tc-getPKG_CONFIG) --libs blas) + lapack_libs=$($(tc-getPKG_CONFIG) --libs lapack) fi local myeconfargs=( --with-blas="${blas_libs}" diff --git a/sci-mathematics/wxmaxima/metadata.xml b/sci-mathematics/wxmaxima/metadata.xml index 1abfd4dd7951..e7440d19a252 100644 --- a/sci-mathematics/wxmaxima/metadata.xml +++ b/sci-mathematics/wxmaxima/metadata.xml @@ -1,8 +1,8 @@ -sci-mathematics - + sci-mathematics + wxMaxima is a wxWidgets GUI for the computer algebra system maxima. Most of maxima functions are accessible through menus, some have dialogs. The input line has command history (up-key, down-key) and diff --git a/sci-mathematics/wxmaxima/wxmaxima-12.09.0.ebuild b/sci-mathematics/wxmaxima/wxmaxima-12.09.0.ebuild index 890a6a5e7cae..c3784e17a861 100644 --- a/sci-mathematics/wxmaxima/wxmaxima-12.09.0.ebuild +++ b/sci-mathematics/wxmaxima/wxmaxima-12.09.0.ebuild @@ -1,10 +1,12 @@ -# 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/sci-mathematics/wxmaxima/wxmaxima-12.09.0.ebuild,v 1.1 2012/09/16 15:57:30 grozin Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/wxmaxima/wxmaxima-12.09.0.ebuild,v 1.2 2013/04/09 06:40:05 jlec Exp $ + +EAPI=5 -EAPI=4 WX_GTK_VER="2.8" -inherit eutils wxwidgets fdo-mime + +inherit eutils gnome2-utils wxwidgets fdo-mime MYP=wxMaxima-${PV} @@ -15,10 +17,10 @@ SRC_URI="mirror://sourceforge/${PN}/${MYP}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" -IUSE="unicode" -DEPEND="dev-libs/libxml2:2 - x11-libs/wxGTK:2.8" +DEPEND=" + dev-libs/libxml2:2 + x11-libs/wxGTK:${WX_GTK_VER}" RDEPEND="${DEPEND} media-fonts/jsmath sci-visualization/gnuplot[wxwidgets] @@ -27,6 +29,8 @@ RDEPEND="${DEPEND} S="${WORKDIR}/${MYP}" src_prepare() { + local i + # consistent package names sed -e "s:\${datadir}/wxMaxima:\${datadir}/${PN}:g" \ -i Makefile.in data/Makefile.in || die "sed failed" @@ -34,28 +38,43 @@ src_prepare() { sed -e 's:share/wxMaxima:share/wxmaxima:g' \ -i src/wxMaxima.cpp src/wxMaximaFrame.cpp src/Config.cpp \ || die "sed failed" + + # correct gettext behavior + if [[ -n "${LINGUAS+x}" ]] ; then + for i in $(cd "${S}"/locales ; echo *.mo) ; do + if ! has ${i%.mo} ${LINGUAS} ; then + sed -i \ + -e "/^WXMAXIMA_LINGUAS/s# ${i%.mo}##" \ + -e "/^WXWIN_LINGUAS/s# ${i%.mo}##" \ + locales/Makefile.in || die + fi + done + fi } src_configure() { econf \ - --enable-dnd \ --enable-printing \ - --with-wx-config=${WX_CONFIG} \ - $(use_enable unicode unicode-glyphs) + --with-wx-config=${WX_CONFIG} } src_install () { default - doicon data/wxmaxima.png + doicon -s 128 data/wxmaxima.png make_desktop_entry wxmaxima wxMaxima wxmaxima - dodir /usr/share/doc/${PF} dosym /usr/share/${PN}/README /usr/share/doc/${PF}/README } +pkg_preinst() { + gnome2_icon_savelist +} + 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/sci-misc/mendeleydesktop/Manifest b/sci-misc/mendeleydesktop/Manifest index a06903c9f984..1cafdcf14b2d 100644 --- a/sci-misc/mendeleydesktop/Manifest +++ b/sci-misc/mendeleydesktop/Manifest @@ -1,2 +1,2 @@ -DIST mendeleydesktop-1.8.3-linux-i486.tar.bz2 31321903 SHA256 d9172dbf9c840b04d933c34ec31c38350eaa0ba54fa9999e2c0d509ae8abc55a SHA512 2582ed890bddd1c7ea1c8dadc9875d44de3c0c8aba75c2b26a6a4aa6e7c5e6a1aa467b5c5db6d76918016b0424b4f6c4fa9386ec456674f9007944b00021c3dc WHIRLPOOL 92d79beb1b29bc5e251648db5480755feaa5d969a73ff581a13c827c5709e7ef21c3a278c2c785c746a2a38871adf052493e16a1bc0f11753035396d81ff6fa0 -DIST mendeleydesktop-1.8.3-linux-x86_64.tar.bz2 31306230 SHA256 f55050bb482d3880b2ad4afae76aa4ad9affea3357363c44e510fa7341257f66 SHA512 60f37219d708228b79938cd42b6fed6e3c9ded2114ffea106d79f6def08dbfe10c87f90d0b60375371597afbf6ef25246e8ae2381244b46d004e55bfd1727f7d WHIRLPOOL 5ddc62efd12d1d02fbb5417a284fbe2745c6e78e24cf9aa03c51b2db9662c572f87878ee45dfe102eb20e6beb67dcba2c3518c7180c9964a91c4fc24db084da2 +DIST mendeleydesktop-1.8.4-linux-i486.tar.bz2 31267354 SHA256 d0864d33f73f57d1f396e5b36cd86c4d811063c033331f29e2b103ede39ee236 SHA512 9d64b4bdc3638d702f83c91fc08e8c37eb3fc8ec9f8268758b3ee52447bea7330f24672075cf2f28e147b37c9e54bd5b0c353df93a618763f848b8796a3ccaee WHIRLPOOL 09a6c2200819666bf98215da5481f0b8abb8848c43b4b838b0df97762b5abd1ab6cea9875541e244fa1b1244b37e048aac5d6e126c2dbd1e0949375a94a84b10 +DIST mendeleydesktop-1.8.4-linux-x86_64.tar.bz2 31333297 SHA256 9b43e92e6b2b5db9c8d3cd03dfc8ac8fea9b030871f358d48a62c511148dc83a SHA512 6993e2e314413d74abb1ca697e6854639aa96dbcf5987fe69c82cb3e106ff2350f6841cabcb3136d85f35014b53777df473e9fbee2bd1f56bd4b0030c15e5526 WHIRLPOOL f1277947b5739004b7b1ccffdd34d6dfc9dea722d2ad09cb3e9c2fe78194db44ced3b5216355837daf72ea07445ab7789cea2c84b8e35c111da152477de96bb3 diff --git a/sci-misc/mendeleydesktop/mendeleydesktop-1.8.3.ebuild b/sci-misc/mendeleydesktop/mendeleydesktop-1.8.4.ebuild similarity index 97% rename from sci-misc/mendeleydesktop/mendeleydesktop-1.8.3.ebuild rename to sci-misc/mendeleydesktop/mendeleydesktop-1.8.4.ebuild index 4542ce60b1e2..1d05f3823db6 100644 --- a/sci-misc/mendeleydesktop/mendeleydesktop-1.8.3.ebuild +++ b/sci-misc/mendeleydesktop/mendeleydesktop-1.8.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/sci-misc/mendeleydesktop/mendeleydesktop-1.8.3.ebuild,v 1.1 2013/04/03 11:02:18 miknix Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/mendeleydesktop/mendeleydesktop-1.8.4.ebuild,v 1.1 2013/04/09 16:21:55 miknix Exp $ EAPI="4" diff --git a/sys-apps/baselayout-java/Manifest b/sys-apps/baselayout-java/Manifest new file mode 100644 index 000000000000..20e110f50582 --- /dev/null +++ b/sys-apps/baselayout-java/Manifest @@ -0,0 +1 @@ +DIST baselayout-java-0.1.0.tar.gz 72571 SHA256 da5dd2210597e3aa4e2ff437cd25cadc9999fdcfdb31ca459395243695c9e2c7 SHA512 6f5b6ff1ed07406711e15a768f5abdf9f7edef1b31e094760f265863aa8991bf60ff71c8b10003265d8ec1aa7c94a611bede96980d25c819908b705b4d2d1062 WHIRLPOOL 9a3111a64d04bd6f274c13f5ed3c641fa1dbbd8d8cf1ff152df7a55771148d80fdcd3c3dc5a7394675723a58aa51ce680fef20c6209380dde4ec0fe1c18a3fac diff --git a/sys-apps/baselayout-java/baselayout-java-0.1.0.ebuild b/sys-apps/baselayout-java/baselayout-java-0.1.0.ebuild new file mode 100644 index 000000000000..912068218977 --- /dev/null +++ b/sys-apps/baselayout-java/baselayout-java-0.1.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/baselayout-java/baselayout-java-0.1.0.ebuild,v 1.1 2013/04/08 16:38:39 sera Exp $ + +EAPI=5 + +inherit fdo-mime gnome2-utils + +DESCRIPTION="Baselayout for Java" +HOMEPAGE="http://www.gentoo.org/proj/en/java/" +SRC_URI="http://dev.gentoo.org/~sera/distfiles/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="! + + +java + + + diff --git a/sys-apps/bleachbit/Manifest b/sys-apps/bleachbit/Manifest index 62d08df33094..3675a8eed171 100644 --- a/sys-apps/bleachbit/Manifest +++ b/sys-apps/bleachbit/Manifest @@ -1,2 +1 @@ -DIST bleachbit-0.9.4.tar.bz2 327553 SHA256 3d0bf0553ffeaa6115b19b750ace863061114826bb087bdc7fa541b81a84aadf SHA512 c7ef782fd03e35a36fbec49af49bea30e3bb1a13c8201497945863ea9c40102d7278eedf8af745b7d4b65fa2f9de251ab650681528ebecc5f8faebc2d7d68c07 WHIRLPOOL 727de75c4589d53554c3f685fbfbd3561298d88acceec27e0ea1ac64aa749b63758316504632ff5ff3565eda36f6c8bad007916c37e9710776c087b2d7a2c3d1 DIST bleachbit-0.9.5.tar.bz2 338227 SHA256 dd8ecded6f078efb0e421c4d43a0481411e28ef6dac6d25653cd8e3cddf196f7 SHA512 c3c20437f729ba0a56a78936d7d03011adfa8b75eb75d064802092267f562028e2f693bb46b0eca3422d61fc27abaa13c5383e2b79505b8f0c251f57ea34b9c8 WHIRLPOOL 8122d0c280518c6641769981f5a650c28431af36dce095dd282c1db5792c48de200cdbfd049250deaddae5c7778adbc975e85abf2b0f3cb7ad71f5d4613d9586 diff --git a/sys-apps/bleachbit/bleachbit-0.9.4.ebuild b/sys-apps/bleachbit/bleachbit-0.9.4.ebuild deleted file mode 100644 index e0c55ee6d894..000000000000 --- a/sys-apps/bleachbit/bleachbit-0.9.4.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/bleachbit/bleachbit-0.9.4.ebuild,v 1.2 2013/04/01 08:51:09 pinkbyte Exp $ - -EAPI=5 - -PYTHON_DEPEND="2" -PYTHON_USE_WITH="sqlite" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython 2.7-pypy-*" - -inherit distutils eutils - -DESCRIPTION="Clean junk to free disk space and to maintain privacy" -HOMEPAGE="http://bleachbit.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="nls" - -RDEPEND=">=dev-python/pygtk-2" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext )" - -DOCS=( README ) - -src_prepare() { - addpredict /root/.gnome2 #401981 - - python_convert_shebangs 2 ${PN}.py - - # warning: key "Encoding" in group "Desktop Entry" is deprecated - sed -i -e '/Encoding/d' ${PN}.desktop || die - - distutils_src_prepare -} - -src_compile() { - distutils_src_compile - use nls && emake -C po -} - -src_install() { - distutils_src_install - use nls && emake -C po DESTDIR="${D}" install - - # http://bugs.gentoo.org/388999 - insinto /usr/share/${PN}/cleaners - doins cleaners/*.xml - - newbin ${PN}.py ${PN} - - doicon ${PN}.png - domenu ${PN}.desktop -} diff --git a/sys-apps/bleachbit/bleachbit-0.9.5.ebuild b/sys-apps/bleachbit/bleachbit-0.9.5.ebuild index 06dea2149ffe..18f1e3e8f44e 100644 --- a/sys-apps/bleachbit/bleachbit-0.9.5.ebuild +++ b/sys-apps/bleachbit/bleachbit-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/sys-apps/bleachbit/bleachbit-0.9.5.ebuild,v 1.2 2013/04/01 08:51:09 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/bleachbit/bleachbit-0.9.5.ebuild,v 1.3 2013/04/10 08:43:19 pinkbyte Exp $ EAPI=5 @@ -30,6 +30,10 @@ src_prepare() { # warning: key "Encoding" in group "Desktop Entry" is deprecated sed -i -e '/Encoding/d' ${PN}.desktop || die + # choose correct Python implementation, bug #465254 + python_export_best + sed -i -e 's/python/$(PYTHON)/g' po/Makefile || die + distutils-r1_src_prepare } diff --git a/sys-apps/dtc/dtc-1.3.0-r1.ebuild b/sys-apps/dtc/dtc-1.3.0-r1.ebuild index 67b33ab8f794..6006400f2421 100644 --- a/sys-apps/dtc/dtc-1.3.0-r1.ebuild +++ b/sys-apps/dtc/dtc-1.3.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/sys-apps/dtc/dtc-1.3.0-r1.ebuild,v 1.1 2012/11/10 01:52:23 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dtc/dtc-1.3.0-r1.ebuild,v 1.2 2013/04/08 22:09:22 vapier Exp $ EAPI="4" MY_P="${PN}-v${PV}" @@ -11,7 +11,7 @@ if [[ ${PV} == "9999" ]] ; then inherit git-2 else SRC_URI="http://www.jdl.com/software/${MY_P}.tgz" - KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" + KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" fi DESCRIPTION="Open Firmware device-trees compiler" diff --git a/sys-apps/dtc/dtc-1.3.0.ebuild b/sys-apps/dtc/dtc-1.3.0.ebuild index 9f477d0c9285..4199a2a083bb 100644 --- a/sys-apps/dtc/dtc-1.3.0.ebuild +++ b/sys-apps/dtc/dtc-1.3.0.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/sys-apps/dtc/dtc-1.3.0.ebuild,v 1.5 2012/11/10 01:52:23 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/dtc/dtc-1.3.0.ebuild,v 1.6 2013/04/08 22:09:22 vapier Exp $ EAPI=4 inherit toolchain-funcs @@ -13,7 +13,7 @@ SRC_URI="http://www.jdl.com/software/${MY_P}.tgz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" +KEYWORDS="amd64 arm ppc ppc64 x86" IUSE="" RDEPEND="" diff --git a/sys-apps/edac-utils/Manifest b/sys-apps/edac-utils/Manifest index a9da1eb3a094..64f13b635f4e 100644 --- a/sys-apps/edac-utils/Manifest +++ b/sys-apps/edac-utils/Manifest @@ -1,2 +1 @@ -DIST edac-utils-0.12.tar.bz2 198277 RMD160 fda9ae0245e90639a5646cd57bb2f1d6fa6403a3 SHA1 9e334832a0cab4ba03ca87da87d60a3496bcb4ad SHA256 9bd8d88591c79cefb3830a15e4ad28b8826f7ce649b12a46b1140beae548887b -DIST edac-utils-0.16.tar.bz2 199275 RMD160 81913658f586a16460622a64f0b7a695fec756cc SHA1 4bf73132f8d69b50b5900f92c30770203bba2978 SHA256 4e4b4013e356e1c4d3262aae95983d23094a0d16e7be3c563ec7f8c402d42ab6 +DIST edac-utils-0.18.tar.gz 285909 SHA256 2a027dbde6c3095807c9fbfa0025bedad38fc839e9967707c1986089ff4c8750 SHA512 5c81b11c28e8fb3198f2d656171493877393024d9e31233c252d358d8029aa83065e7b66ea87d742518f710466c9ba7dfcf57a1641374ce169cf95fd379101fa WHIRLPOOL e7af26138378e784c36c43d85b0d2449b5d5606d217dc8bc217f0720effb0fd6d5c4ab5b933e3e38cfadd5e5e51b47559d1a947bcc3df2ec8c8138eec7507b58 diff --git a/sys-apps/edac-utils/edac-utils-0.12.ebuild b/sys-apps/edac-utils/edac-utils-0.12.ebuild deleted file mode 100644 index ab854b11e330..000000000000 --- a/sys-apps/edac-utils/edac-utils-0.12.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/edac-utils/edac-utils-0.12.ebuild,v 1.1 2008/04/09 20:53:08 dev-zero Exp $ - -DESCRIPTION="Userspace helper for Linux kernel EDAC drivers" -HOMEPAGE="http://sourceforge.net/projects/edac-utils/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64" -IUSE="debug" - -DEPEND="sys-fs/sysfsutils" -RDEPEND="${DEPEND} - sys-apps/dmidecode" - -src_compile() { - econf $(use_enable debug) - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog DISCLAIMER META NEWS README TODO - - # We don't need this init.d file - # Modules should be loaded by adding them to /etc/conf.d/modules - # The rest is done via the udev-rule - rm "${D}/etc/init.d/edac" -} - -pkg_postinst() { - elog "There must be an entry for your mainboard in /etc/edac/labels.db" - elog "in case you want nice labels in /sys/module/*_edac/" - elog "Run the following command to check whether such an entry is already available:" - elog " edac-ctl --print-labels" -} diff --git a/sys-apps/edac-utils/edac-utils-0.16.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild similarity index 69% rename from sys-apps/edac-utils/edac-utils-0.16.ebuild rename to sys-apps/edac-utils/edac-utils-0.18.ebuild index e7749cc6bd17..1def9455e288 100644 --- a/sys-apps/edac-utils/edac-utils-0.16.ebuild +++ b/sys-apps/edac-utils/edac-utils-0.18.ebuild @@ -1,12 +1,14 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/edac-utils/edac-utils-0.16.ebuild,v 1.1 2009/08/03 17:34:47 dev-zero Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/edac-utils/edac-utils-0.18.ebuild,v 1.1 2013/04/09 12:16:33 dev-zero Exp $ -EAPI="2" +EAPI=5 + +inherit eutils DESCRIPTION="Userspace helper for Linux kernel EDAC drivers" -HOMEPAGE="http://sourceforge.net/projects/edac-utils/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +HOMEPAGE="https://github.com/grondo/edac-utils" +SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" @@ -17,17 +19,20 @@ RDEPEND="${DEPEND} sys-apps/dmidecode" src_configure() { - econf $(use_enable debug) + econf \ + --disable-static \ + $(use_enable debug) } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog DISCLAIMER META NEWS README TODO + default # We don't need this init.d file # Modules should be loaded by adding them to /etc/conf.d/modules # The rest is done via the udev-rule rm -rf "${D}/etc/init.d" + + prune_libtool_files } pkg_postinst() { diff --git a/sys-apps/hwids/hwids-20130329.ebuild b/sys-apps/hwids/hwids-20130329.ebuild index db063e0e6128..3cc5423b2850 100644 --- a/sys-apps/hwids/hwids-20130329.ebuild +++ b/sys-apps/hwids/hwids-20130329.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/hwids/hwids-20130329.ebuild,v 1.9 2013/04/05 18:18:04 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/hwids/hwids-20130329.ebuild,v 1.10 2013/04/09 13:40:03 jer Exp $ EAPI=5 inherit udev eutils @@ -11,7 +11,7 @@ SRC_URI="https://github.com/gentoo/hwids/archive/${P}.tar.gz" LICENSE="|| ( GPL-2 BSD ) public-domain" SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~amd64-linux ~arm-linux ~x86-linux" IUSE="+udev" DEPEND="udev? ( diff --git a/sys-apps/kmod/Manifest b/sys-apps/kmod/Manifest index 306b9e652f5b..35d5f9363775 100644 --- a/sys-apps/kmod/Manifest +++ b/sys-apps/kmod/Manifest @@ -1 +1,2 @@ DIST kmod-12.tar.xz 1275028 SHA256 c6189dd8c5a1e8d9224e8506bd188c0cd5dfa119fd6b7e5869b3640cbe8bf92f SHA512 f24bb25812b1902736f875bd3d7f995fa42a50cb7208b0d79a82fb5915223cf78e41018d5bc2cd1088acad5dc8e3dd737876262f4acde6479936c4e04223b629 WHIRLPOOL cde992a543945670992813ce142aa96bd94cc719f539b4734a7c2251b2918622e60a027531d5b430c872e58f28a153d3d2b4b90babe3e4b0f3c262afb09b7116 +DIST kmod-13.tar.xz 1435864 SHA256 6c36d3abba2f98c84973ae275951c866f8bf304e7356c2fe60633800239d7956 SHA512 6182a043c32944c2dc336101e4d8a9be9ccd0106677f9f7a2e76b83a09ec2fc1333aed9b82773abe09f8adb1771e796690f1610c64b337e21bdabffe76fed434 WHIRLPOOL 95196f4c65fec778727a9b8d0209dcb08e64280b4b5d6e88b5343acb3a360b62c13a0dcf510d3c2080fad4ef1562c5e9fa11f84979d0acee03dab3fac8b3eaac diff --git a/sys-apps/kmod/kmod-13.ebuild b/sys-apps/kmod/kmod-13.ebuild new file mode 100644 index 000000000000..6849662a4703 --- /dev/null +++ b/sys-apps/kmod/kmod-13.ebuild @@ -0,0 +1,108 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-13.ebuild,v 1.2 2013/04/10 03:12:15 williamh Exp $ + +EAPI=5 + +VIRTUAL_MODUTILS=1 + +inherit autotools eutils libtool multilib linux-mod + +if [[ ${PV} == 9999 ]]; then + EGIT_REPO_URI="git://git.kernel.org/pub/scm/utils/kernel/${PN}/${PN}.git" + inherit git-2 +else + SRC_URI="mirror://kernel/linux/utils/kernel/kmod/${P}.tar.xz" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +fi + +DESCRIPTION="library and tools for managing linux kernel modules" +HOMEPAGE="http://git.kernel.org/?p=utils/kernel/kmod/kmod.git" + +LICENSE="LGPL-2" +SLOT="0" +IUSE="debug doc lzma static-libs +tools zlib" + +# Upstream does not support running the test suite with custom configure flags. +# I was also told that the test suite is intended for kmod developers. +# So we have to restrict it. +# See bug #408915. +RESTRICT="test" + +RDEPEND="!sys-apps/module-init-tools + !sys-apps/modutils + lzma? ( >=app-arch/xz-utils-5.0.4-r1 ) + zlib? ( >=sys-libs/zlib-1.2.6 )" #427130 +DEPEND="${RDEPEND} + dev-libs/libxslt + doc? ( dev-util/gtk-doc ) + lzma? ( virtual/pkgconfig ) + zlib? ( virtual/pkgconfig )" + +pkg_setup() { + CONFIG_CHECK="~MODULES ~MODULE_UNLOAD" + + linux-info_pkg_setup +} + +src_prepare() +{ + if [ ! -e configure ]; then + if use doc; then + gtkdocize --copy --docdir libkmod/docs || die + else + touch libkmod/docs/gtk-doc.make + fi + eautoreconf + else + elibtoolize + fi +} + +src_configure() +{ + econf \ + --bindir=/bin \ + --with-rootlibdir=/$(get_libdir) \ + $(use_enable static-libs static) \ + $(use_enable tools) \ + $(use_enable debug) \ + $(use_enable doc gtk-doc) \ + $(use_with lzma xz) \ + $(use_with zlib) +} + +src_install() +{ + default + prune_libtool_files + + if use tools; then + local bincmd sbincmd + for sbincmd in depmod insmod lsmod modinfo modprobe rmmod; do + dosym /bin/kmod /sbin/${sbincmd} + done + + # These are also usable as normal user + for bincmd in lsmod modinfo; do + dosym kmod /bin/${bincmd} + done + fi + + cat <<-EOF > "${T}"/usb-load-ehci-first.conf + softdep uhci_hcd pre: ehci_hcd + softdep ohci_hcd pre: ehci_hcd + EOF + + insinto /lib/modprobe.d + doins "${T}"/usb-load-ehci-first.conf #260139 +} + +pkg_postinst() { + # Upgrade path from sys-apps/module-init-tools + if [[ -d ${ROOT}/lib/modules/${KV_FULL} ]]; then + if [[ -z ${REPLACING_VERSIONS} ]]; then + update_depmod + fi + fi +} diff --git a/sys-apps/kmod/kmod-9999.ebuild b/sys-apps/kmod/kmod-9999.ebuild index 243f0340a0be..00c9114d3712 100644 --- a/sys-apps/kmod/kmod-9999.ebuild +++ b/sys-apps/kmod/kmod-9999.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-9999.ebuild,v 1.52 2013/03/26 08:14:18 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-9999.ebuild,v 1.54 2013/04/10 03:12:15 williamh Exp $ -EAPI=4 +EAPI=5 VIRTUAL_MODUTILS=1 @@ -62,7 +62,6 @@ src_prepare() src_configure() { econf \ - --disable-silent-rules \ --bindir=/bin \ --with-rootlibdir=/$(get_libdir) \ $(use_enable static-libs static) \ diff --git a/sys-apps/texinfo/texinfo-4.13-r2.ebuild b/sys-apps/texinfo/texinfo-4.13-r2.ebuild index 3efed7101e92..9faa8e2d832d 100644 --- a/sys-apps/texinfo/texinfo-4.13-r2.ebuild +++ b/sys-apps/texinfo/texinfo-4.13-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/sys-apps/texinfo/texinfo-4.13-r2.ebuild,v 1.12 2013/04/05 18:13:51 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/texinfo/texinfo-4.13-r2.ebuild,v 1.13 2013/04/09 13:41:46 jer Exp $ EAPI="2" @@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.lzma" LICENSE="GPL-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="nls static" RDEPEND="!=app-text/tetex-2* diff --git a/sys-auth/keystone/Manifest b/sys-auth/keystone/Manifest index 12d0d1e0814a..755d38251ce6 100644 --- a/sys-auth/keystone/Manifest +++ b/sys-auth/keystone/Manifest @@ -1 +1,2 @@ DIST keystone-2012.2.3.tar.gz 550860 SHA256 640349c9319e5eacc60ebdb0fd69239d03fbaf52b4749879d12b66d74678afc8 SHA512 77f5b6cedc9c5b5f6224696e152b2ac5bea9409256857a728dec916cdb70672a4d6a25c5b0e34039977f8efd9c34b02ce1fabd6311ef02c2b78264f36ced4fd0 WHIRLPOOL 5d45e3d56dc3196eb1d8432fa263acef7674a42de27ea826b89c0a39a4f9700ce75a02889930c1d160c24a175b17975dbb64b0d94823e4016f18ea1f0744dd0c +DIST keystone-2013.1.tar.gz 789365 SHA256 34347a3242a40d93b98c3722e6f3fbc112bc1c9ef20c045c3d40637e459b4574 SHA512 2f9d9ecb3cb0b2f282be31d280e0c202a5e818cdcd057919445bf8899827af59856b6e3e75000f83b1a97aefdf3d9454fa0dc16a2d4819a68e8f899c865c2a20 WHIRLPOOL b306ffafe3345225496e6e1505fa691f312b0ef6cea42cc7d78224da7569c2498997e74efe6c5b82d8bb20d2d2653aaeb8ec8c79703db10f97c72b04046153c7 diff --git a/sys-auth/keystone/keystone-2013.1.ebuild b/sys-auth/keystone/keystone-2013.1.ebuild new file mode 100644 index 000000000000..771946de3a2a --- /dev/null +++ b/sys-auth/keystone/keystone-2013.1.ebuild @@ -0,0 +1,89 @@ +# 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.1.ebuild,v 1.1 2013/04/10 16:12:49 prometheanfire Exp $ + +EAPI=5 +#test restricted becaues of bad requirements given (old webob for instance) +RESTRICT="test" +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +DESCRIPTION="Keystone is the Openstack authentication, authorization, and +service catalog written in Python." +HOMEPAGE="https://launchpad.net/keystone" +SRC_URI="http://launchpad.net/${PN}/grizzly/${PV}/+download/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="folsom" +KEYWORDS="~amd64 ~x86" +IUSE="+sqlite mysql postgres ldap" +#IUSE="+sqlite mysql postgres ldap test" +REQUIRED_USE="|| ( ldap mysql postgres sqlite )" + +#todo, seperate out rdepend via use flags +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="${DEPEND} + dev-python/eventlet[${PYTHON_USEDEP}] + dev-python/greenlet[${PYTHON_USEDEP}] + >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}] + >=dev-python/python-keystoneclient-0.2.1[${PYTHON_USEDEP}] + <=dev-python/python-keystoneclient-0.3[${PYTHON_USEDEP}] + dev-python/lxml[${PYTHON_USEDEP}] + >=dev-python/oslo-config-1.1.0[${PYTHON_USEDEP}] + dev-python/passlib[${PYTHON_USEDEP}] + dev-python/paste[${PYTHON_USEDEP}] + dev-python/pastedeploy[${PYTHON_USEDEP}] + dev-python/python-daemon + >=dev-python/python-pam-0.1.4[${PYTHON_USEDEP}] + dev-python/routes[${PYTHON_USEDEP}] + >=dev-python/sqlalchemy-migrate-0.7.2 + =dev-python/webob-1.2.3-r1[${PYTHON_USEDEP}] + virtual/python-argparse[${PYTHON_USEDEP}] + sqlite? ( >=dev-python/sqlalchemy-0.7.8[sqlite] + <=dev-python/sqlalchemy-0.7.9[sqlite] ) + mysql? ( >=dev-python/sqlalchemy-0.7.8[mysql] + <=dev-python/sqlalchemy-0.7.9[mysql] ) + postgres? ( >=dev-python/sqlalchemy-0.7.8[postgres] + <=dev-python/sqlalchemy-0.7.9[postgres] ) + ldap? ( dev-python/python-ldap[${PYTHON_USEDEP}] )" +# test? ( dev-python/Babel +# dev-python/decorator +# dev-python/eventlet +# dev-python/greenlet +# dev-python/httplib2 +# dev-python/iso8601 +# dev-python/lxml +# dev-python/netifaces +# dev-python/nose +# dev-python/nosexcover +# dev-python/passlib +# dev-python/paste +# dev-python/pastedeploy +# dev-python/python-pam +# dev-python/repoze-lru +# dev-python/routes +# dev-python/sphinx +# >=dev-python/sqlalchemy-migrate-0.7 +# dev-python/tempita +# >=dev-python/webob-1.0.8 +# dev-python/webtest +# ) +#PATCHES=( "${FILESDIR}"/keystone_test-requires.patch ) +# +#python_test() { +# "${PYTHON}" setup.py nosetests || die +#} + +python_install() { + distutils-r1_python_install + newconfd "${FILESDIR}/keystone.confd" keystone + newinitd "${FILESDIR}/keystone.initd" keystone + + diropts -m 0750 + dodir /var/run/keystone /var/log/keystone /etc/keystone + keepdir /etc/keystone + insinto /etc/keystone + doins etc/keystone.conf.sample etc/logging.conf.sample + doins etc/default_catalog.templates etc/policy.json +} diff --git a/sys-auth/polkit-kde-agent/polkit-kde-agent-0.99.0.ebuild b/sys-auth/polkit-kde-agent/polkit-kde-agent-0.99.0.ebuild deleted file mode 100644 index 606d42d31b34..000000000000 --- a/sys-auth/polkit-kde-agent/polkit-kde-agent-0.99.0.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-auth/polkit-kde-agent/polkit-kde-agent-0.99.0.ebuild,v 1.9 2013/02/23 17:28:22 ago Exp $ - -EAPI="3" - -if [[ ${PV} = *9999* ]]; then - inherit git - EGIT_REPO_URI="git://anongit.kde.org/polkit-kde-agent-1" - EGIT_PROJECT="polkit-kde-agent-1" -else - MY_P="${P/agent/agent-1}" - SRC_URI="mirror://kde/stable/apps/KDE4.x/admin/${MY_P}.tar.bz2" - KDE_LINGUAS="ca ca@valencia cs da de en_GB eo es et fi fr ga - gl hr hu is it ja km lt nb mai ms nds nl pa pt pt_BR ro ru - sk sr sr@ijekavian sr@ijekavianlatin sr@latin sv th tr uk zh_TW" -fi -inherit kde4-base - -DESCRIPTION="PolKit agent module for KDE." -HOMEPAGE="http://www.kde.org" - -LICENSE="GPL-2" -KEYWORDS="amd64 ~arm ppc ~ppc64 x86" -SLOT="4" -IUSE="debug" - -DEPEND=" - >=sys-auth/polkit-qt-0.98_pre -" -RDEPEND="${DEPEND} - !sys-auth/polkit-kde -" - -[[ ${PV} = *9999* ]] || S="${WORKDIR}/${MY_P}" diff --git a/sys-block/gparted/Manifest b/sys-block/gparted/Manifest index 7986696b5da7..6f71f75d80ce 100644 --- a/sys-block/gparted/Manifest +++ b/sys-block/gparted/Manifest @@ -1,3 +1 @@ -DIST gparted-0.12.0.tar.bz2 1715113 SHA256 2c2f4ac580f322abf5b028092a4316792e3f18ef4de4785c9d97fc9ad12d6a6d SHA512 24721a116912f2d9601c4e5221b76059bb980a6db27d8dcd00c1102ae2b66ebf562670c9a443cc0ab846cbecd5c25da859f442f60977efd7cc6e3de8fff64415 WHIRLPOOL 716baa03ffde677390c2f46dc144a595c3c08c57e566334453f7a3a4338eab774332b4377ec3b6c5488776f1d3d6aaa770019ea7abb935c3937f71e2f1c5fac1 -DIST gparted-0.14.0.tar.bz2 1845309 SHA256 ab82da741ed8af3fca16dd0928da26c92e2665fa02709631634a04b017b60b1b SHA512 db728338c9c38ed384f364b44b51f989f4f442d75ae8ce56e121b33c372303cb980447491f8377ab5ff1b473cdbc3867dd78ad77b7701903a5fed5f05e257379 WHIRLPOOL cf0450f654ec1ae270b9df48e099b579c87a9696a2637193305e56a34fa803c97a52f8d7be9be6b209aed9a3bc6dba9a885f85059b266f62f6a2ba2d2bbe2f84 DIST gparted-0.14.1.tar.bz2 1873316 SHA256 b1b53c5acb37ff908434cff174dd42600e79937ec8cc9590b12ce9d504d62719 SHA512 b73508ad205f5ac048f110100f8cb42d4338f61a3303fbeb12277b7ce07057d83918a6e421dc8de5365bbce3126f78388e9beebdf4f7b901e1f8c8c8502d5e3d WHIRLPOOL 0402717d0aba0621be426d378ae9973d519fc3f529810e825ba72010ee1a29ab445145af77d496f9bbfd49c3c0f8fd2cec392b5cc58d9b70b8a1f5295c910939 diff --git a/sys-block/gparted/gparted-0.12.0.ebuild b/sys-block/gparted/gparted-0.12.0.ebuild deleted file mode 100644 index e814850a202e..000000000000 --- a/sys-block/gparted/gparted-0.12.0.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/gparted/gparted-0.12.0.ebuild,v 1.6 2012/12/02 22:24:40 ssuominen Exp $ - -EAPI=4 -GCONF_DEBUG=no - -inherit gnome2 - -DESCRIPTION="Gnome Partition Editor" -HOMEPAGE="http://gparted.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="btrfs dmraid fat gtk hfs jfs kde mdadm ntfs reiserfs reiser4 xfs" - -# FIXME: add gpart support -COMMON_DEPEND=">=dev-cpp/gtkmm-2.16:2.4 - >=dev-libs/glib-2 - >=sys-block/parted-3" - -RDEPEND="${COMMON_DEPEND} - gtk? ( x11-libs/gksu ) - kde? ( kde-base/kdesu ) - - >=sys-fs/e2fsprogs-1.41 - btrfs? ( sys-fs/btrfs-progs ) - dmraid? ( || ( - >=sys-fs/lvm2-2.02.45 - sys-fs/device-mapper ) - sys-fs/dmraid - sys-fs/multipath-tools ) - fat? ( - sys-fs/dosfstools - sys-fs/mtools ) - hfs? ( - sys-fs/diskdev_cmds - virtual/udev - sys-fs/hfsutils ) - jfs? ( sys-fs/jfsutils ) - mdadm? ( sys-fs/mdadm ) - ntfs? ( >=sys-fs/ntfs3g-2011.4.12[ntfsprogs] ) - reiserfs? ( sys-fs/reiserfsprogs ) - reiser4? ( sys-fs/reiser4progs ) - xfs? ( sys-fs/xfsprogs sys-fs/xfsdump )" - -DEPEND="${COMMON_DEPEND} - app-text/docbook-xml-dtd:4.1.2 - app-text/gnome-doc-utils - app-text/rarian - dev-util/intltool - virtual/pkgconfig" - -pkg_setup() { - DOCS="AUTHORS ChangeLog NEWS README" - G2CONF="--enable-doc - --disable-scrollkeeper - GKSUPROG=$(type -P true)" -} - -src_prepare() { - sed -i -e 's:Exec=@gksuprog@ :Exec=:' gparted.desktop.in.in || die - gnome2_src_prepare -} - -src_install() { - gnome2_src_install - - local _ddir="${D}"/usr/share/applications - - if use kde; then - cp "${_ddir}"/gparted{,-kde}.desktop - sed -i -e 's:Exec=:Exec=kdesu :' "${_ddir}"/gparted-kde.desktop - echo 'OnlyShowIn=KDE;' >> "${_ddir}"/gparted-kde.desktop - fi - - if use gtk; then - sed -i -e 's:Exec=:Exec=gksu :' "${_ddir}"/gparted.desktop - echo 'NotShowIn=KDE;' >> "${_ddir}"/gparted.desktop - else - echo 'OnlyShowIn=X-NeverShowThis;' >> "${_ddir}"/gparted.desktop - fi -} diff --git a/sys-block/gparted/gparted-0.14.0.ebuild b/sys-block/gparted/gparted-0.14.0.ebuild deleted file mode 100644 index de8688b335e0..000000000000 --- a/sys-block/gparted/gparted-0.14.0.ebuild +++ /dev/null @@ -1,94 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-block/gparted/gparted-0.14.0.ebuild,v 1.2 2012/12/02 22:24:40 ssuominen Exp $ - -EAPI="4" -GCONF_DEBUG="no" - -inherit gnome2 - -DESCRIPTION="Gnome Partition Editor" -HOMEPAGE="http://gparted.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="btrfs dmraid fat gtk hfs jfs kde mdadm ntfs policykit reiserfs reiser4 xfs" - -# FIXME: add gpart support -COMMON_DEPEND=">=dev-cpp/gtkmm-2.22:2.4 - >=dev-libs/glib-2 - >=sys-block/parted-3.1" - -RDEPEND="${COMMON_DEPEND} - !policykit? ( - gtk? ( x11-libs/gksu ) - kde? ( kde-base/kdesu ) ) - policykit? ( sys-auth/polkit ) - - >=sys-apps/util-linux-2.20 - >=sys-fs/e2fsprogs-1.41 - btrfs? ( sys-fs/btrfs-progs ) - dmraid? ( || ( - >=sys-fs/lvm2-2.02.45 - sys-fs/device-mapper ) - sys-fs/dmraid - sys-fs/multipath-tools ) - fat? ( - sys-fs/dosfstools - sys-fs/mtools ) - hfs? ( - sys-fs/diskdev_cmds - virtual/udev - sys-fs/hfsutils ) - jfs? ( sys-fs/jfsutils ) - mdadm? ( sys-fs/mdadm ) - ntfs? ( >=sys-fs/ntfs3g-2011.4.12[ntfsprogs] ) - reiserfs? ( sys-fs/reiserfsprogs ) - reiser4? ( sys-fs/reiser4progs ) - xfs? ( sys-fs/xfsprogs sys-fs/xfsdump )" - -DEPEND="${COMMON_DEPEND} - app-text/docbook-xml-dtd:4.1.2 - app-text/gnome-doc-utils - app-text/rarian - dev-util/intltool - virtual/pkgconfig" - -DOCS="AUTHORS ChangeLog NEWS README" - -src_configure() { - G2CONF="${G2CONF} - --enable-doc - GKSUPROG=$(type -P true)" - gnome2_src_configure -} - -src_prepare() { - sed -i -e 's:Exec=@gksuprog@ :Exec=:' gparted.desktop.in.in || die - gnome2_src_prepare -} - -src_install() { - gnome2_src_install - - local _ddir="${D}"/usr/share/applications - - if use policykit; then - sed -i -e 's:Exec=:Exec=pkexec :' "${_ddir}"/gparted.desktop - else - if use kde; then - cp "${_ddir}"/gparted{,-kde}.desktop - sed -i -e 's:Exec=:Exec=kdesu :' "${_ddir}"/gparted-kde.desktop - echo 'OnlyShowIn=KDE;' >> "${_ddir}"/gparted-kde.desktop - fi - - if use gtk; then - sed -i -e 's:Exec=:Exec=gksu :' "${_ddir}"/gparted.desktop - echo 'NotShowIn=KDE;' >> "${_ddir}"/gparted.desktop - else - echo 'OnlyShowIn=X-NeverShowThis;' >> "${_ddir}"/gparted.desktop - fi - fi -} diff --git a/sys-block/gparted/gparted-0.14.1.ebuild b/sys-block/gparted/gparted-0.14.1.ebuild index 5231807b39a1..2bdb65c05aa6 100644 --- a/sys-block/gparted/gparted-0.14.1.ebuild +++ b/sys-block/gparted/gparted-0.14.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/sys-block/gparted/gparted-0.14.1.ebuild,v 1.3 2013/03/25 16:39:44 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/gparted/gparted-0.14.1.ebuild,v 1.4 2013/04/09 09:59:40 ssuominen Exp $ EAPI="5" GCONF_DEBUG="no" @@ -30,9 +30,8 @@ RDEPEND="${COMMON_DEPEND} >=sys-apps/util-linux-2.20 >=sys-fs/e2fsprogs-1.41 btrfs? ( sys-fs/btrfs-progs ) - dmraid? ( || ( - >=sys-fs/lvm2-2.02.45 - sys-fs/device-mapper ) + dmraid? ( + >=sys-fs/lvm2-2.02.45 sys-fs/dmraid sys-fs/multipath-tools ) fat? ( diff --git a/sys-block/parted/metadata.xml b/sys-block/parted/metadata.xml index c05327292557..57a676994422 100644 --- a/sys-block/parted/metadata.xml +++ b/sys-block/parted/metadata.xml @@ -4,7 +4,7 @@ livecd - Enable sys-fs/device-mapper support in parted + Enable device-mapper support from sys-fs/lvm2 in parted Enable debugging as encouraged by upstream: [The default configuration] diff --git a/sys-block/parted/parted-2.3-r1.ebuild b/sys-block/parted/parted-2.3-r1.ebuild index 136d702dccdd..a2d705501515 100644 --- a/sys-block/parted/parted-2.3-r1.ebuild +++ b/sys-block/parted/parted-2.3-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/sys-block/parted/parted-2.3-r1.ebuild,v 1.3 2012/05/03 04:46:47 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-2.3-r1.ebuild,v 1.4 2013/04/09 09:59:44 ssuominen Exp $ EAPI="3" @@ -25,7 +25,7 @@ RDEPEND=" nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) - device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.45 ) " DEPEND=" ${RDEPEND} diff --git a/sys-block/parted/parted-2.3-r2.ebuild b/sys-block/parted/parted-2.3-r2.ebuild index 60fca285b3a5..92698cc67ea1 100644 --- a/sys-block/parted/parted-2.3-r2.ebuild +++ b/sys-block/parted/parted-2.3-r2.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/sys-block/parted/parted-2.3-r2.ebuild,v 1.2 2012/05/03 04:46:47 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-2.3-r2.ebuild,v 1.3 2013/04/09 09:59:44 ssuominen Exp $ EAPI="3" @@ -25,7 +25,7 @@ RDEPEND=" nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) - device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.45 ) " DEPEND=" ${RDEPEND} diff --git a/sys-block/parted/parted-2.3.ebuild b/sys-block/parted/parted-2.3.ebuild index dd5ee6d483c4..f2665e3a34c2 100644 --- a/sys-block/parted/parted-2.3.ebuild +++ b/sys-block/parted/parted-2.3.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/sys-block/parted/parted-2.3.ebuild,v 1.3 2012/05/03 04:46:47 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-2.3.ebuild,v 1.4 2013/04/09 09:59:44 ssuominen Exp $ EAPI="2" @@ -25,7 +25,7 @@ RDEPEND=" nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) - device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.45 ) " DEPEND=" ${RDEPEND} diff --git a/sys-block/parted/parted-2.4.ebuild b/sys-block/parted/parted-2.4.ebuild index b3205f782371..23496e090bfc 100644 --- a/sys-block/parted/parted-2.4.ebuild +++ b/sys-block/parted/parted-2.4.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/sys-block/parted/parted-2.4.ebuild,v 1.2 2012/05/03 04:46:47 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-2.4.ebuild,v 1.3 2013/04/09 09:59:44 ssuominen Exp $ EAPI="3" @@ -25,7 +25,7 @@ RDEPEND=" nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) - device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.45 ) " DEPEND=" ${RDEPEND} diff --git a/sys-block/parted/parted-3.0.ebuild b/sys-block/parted/parted-3.0.ebuild index 481ecfc71680..023ca4813e9c 100644 --- a/sys-block/parted/parted-3.0.ebuild +++ b/sys-block/parted/parted-3.0.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/sys-block/parted/parted-3.0.ebuild,v 1.9 2012/05/03 04:46:47 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.0.ebuild,v 1.10 2013/04/09 09:59:44 ssuominen Exp $ EAPI="3" @@ -25,7 +25,7 @@ RDEPEND=" nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) - device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.45 ) " DEPEND=" ${RDEPEND} diff --git a/sys-block/parted/parted-3.1-r1.ebuild b/sys-block/parted/parted-3.1-r1.ebuild index b957f40eb9f9..ac98d7d035d5 100644 --- a/sys-block/parted/parted-3.1-r1.ebuild +++ b/sys-block/parted/parted-3.1-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/sys-block/parted/parted-3.1-r1.ebuild,v 1.4 2012/12/16 19:32:29 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.1-r1.ebuild,v 1.5 2013/04/09 09:59:44 ssuominen Exp $ EAPI="4" @@ -25,7 +25,7 @@ RDEPEND=" nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) - device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.45 ) " DEPEND=" ${RDEPEND} diff --git a/sys-block/parted/parted-3.1.ebuild b/sys-block/parted/parted-3.1.ebuild index 4ec5dd7eed31..df3bfee3e63e 100644 --- a/sys-block/parted/parted-3.1.ebuild +++ b/sys-block/parted/parted-3.1.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/sys-block/parted/parted-3.1.ebuild,v 1.8 2012/06/17 16:20:52 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-block/parted/parted-3.1.ebuild,v 1.9 2013/04/09 09:59:44 ssuominen Exp $ EAPI="4" @@ -25,7 +25,7 @@ RDEPEND=" nls? ( >=sys-devel/gettext-0.12.1-r2 ) readline? ( >=sys-libs/readline-5.2 ) selinux? ( sys-libs/libselinux ) - device-mapper? ( || ( >=sys-fs/lvm2-2.02.45 sys-fs/device-mapper ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.45 ) " DEPEND=" ${RDEPEND} diff --git a/sys-boot/grub/metadata.xml b/sys-boot/grub/metadata.xml index 2cf8c3a38a43..86409b549406 100644 --- a/sys-boot/grub/metadata.xml +++ b/sys-boot/grub/metadata.xml @@ -11,7 +11,7 @@ - Enable support for sys-fs/device-mapper + Enable support for device-mapper from sys-fs/lvm2 Build and install the efiemu runtimes diff --git a/sys-boot/lilo/lilo-22.8-r2.ebuild b/sys-boot/lilo/lilo-22.8-r2.ebuild index a21892c23eca..9422208ee99a 100644 --- a/sys-boot/lilo/lilo-22.8-r2.ebuild +++ b/sys-boot/lilo/lilo-22.8-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/sys-boot/lilo/lilo-22.8-r2.ebuild,v 1.6 2013/02/24 12:12:35 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/lilo/lilo-22.8-r2.ebuild,v 1.7 2013/04/09 10:05:19 ssuominen Exp $ inherit eutils flag-o-matic toolchain-funcs @@ -22,9 +22,7 @@ LICENSE="BSD GPL-2" KEYWORDS="-* amd64 x86" DEPEND=">=sys-devel/bin86-0.15.5" -RDEPEND="device-mapper? ( || ( - >=sys-fs/lvm2-2.02.45 - >=sys-fs/device-mapper-1.02.12 ) )" +RDEPEND="device-mapper? ( >=sys-fs/lvm2-2.02.45 )" src_unpack() { unpack ${MY_P}.tar.gz diff --git a/sys-boot/lilo/lilo-23.2-r1.ebuild b/sys-boot/lilo/lilo-23.2-r1.ebuild index be7ac62bdc03..4bc1d8619b69 100644 --- a/sys-boot/lilo/lilo-23.2-r1.ebuild +++ b/sys-boot/lilo/lilo-23.2-r1.ebuild @@ -1,6 +1,6 @@ -# 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/sys-boot/lilo/lilo-23.2-r1.ebuild,v 1.3 2011/04/25 01:44:37 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/lilo/lilo-23.2-r1.ebuild,v 1.4 2013/04/09 10:05:19 ssuominen Exp $ EAPI="2" @@ -23,9 +23,7 @@ LICENSE="BSD GPL-2" KEYWORDS="-* ~amd64 ~x86" DEPEND=">=sys-devel/bin86-0.15.5" -RDEPEND="device-mapper? ( || ( - >=sys-fs/lvm2-2.02.45 - >=sys-fs/device-mapper-1.02.12 ) )" +RDEPEND="device-mapper? ( >=sys-fs/lvm2-2.02.45 )" src_prepare() { # this patch is needed when booting PXE and the device you're using diff --git a/sys-boot/lilo/lilo-23.2-r2.ebuild b/sys-boot/lilo/lilo-23.2-r2.ebuild index eb4b85add3ea..3ecaa38a03f9 100644 --- a/sys-boot/lilo/lilo-23.2-r2.ebuild +++ b/sys-boot/lilo/lilo-23.2-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/sys-boot/lilo/lilo-23.2-r2.ebuild,v 1.3 2013/03/04 17:04:17 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/lilo/lilo-23.2-r2.ebuild,v 1.4 2013/04/09 10:05:19 ssuominen Exp $ EAPI="2" @@ -23,9 +23,7 @@ LICENSE="BSD GPL-2" KEYWORDS="-* amd64 x86" DEPEND=">=sys-devel/bin86-0.15.5" -RDEPEND="device-mapper? ( || ( - >=sys-fs/lvm2-2.02.45 - >=sys-fs/device-mapper-1.02.12 ) )" +RDEPEND="device-mapper? ( >=sys-fs/lvm2-2.02.45 )" src_prepare() { # this patch is needed when booting PXE and the device you're using diff --git a/sys-boot/lilo/metadata.xml b/sys-boot/lilo/metadata.xml index 5d67132037ba..22eebf8deace 100644 --- a/sys-boot/lilo/metadata.xml +++ b/sys-boot/lilo/metadata.xml @@ -3,8 +3,7 @@ base-system - Enable support for - sys-fs/device-mapper + Enable support for device-mapper from sys-fs/lvm2 Do not install the dolilo helper script Avoid character echo on PXE serial console diff --git a/sys-cluster/cinder/Manifest b/sys-cluster/cinder/Manifest index 81329cd20f83..7f7f854e4add 100644 --- a/sys-cluster/cinder/Manifest +++ b/sys-cluster/cinder/Manifest @@ -1 +1,2 @@ DIST cinder-2012.2.3.tar.gz 3593130 SHA256 d30b01282c291637cfcb97d3d6b7deb7494a882510a60696005ea0cd12552285 SHA512 b529bed354cf252af9047e8a5d53a5e6ccf8fd4e022757fcf6652201ba581568665f9cd0636ce00ec142beddd063795cfa6aee91667a86eb3f7aa6b82bc7c401 WHIRLPOOL 4193dafccee86559212019d385b23f15db73e375ac0f6c865965cce449c6d49b7f648115cb4e2dde50596903887ea4cb2cb8c4b78a2d8c53a9ab7d82cafbc17b +DIST cinder-2013.1.tar.gz 1679453 SHA256 067a1d5b4bf92635a93422815c0d0b42f39b6af604d368b041c2211e56095095 SHA512 96b5ad0cb7297ca4da824632c462b7ba4b91e4762313fa2fd22b0c9b49f66f675f869be9cad2a9b1fcfe3732c136151a354f4e8a9f5b732823470dc0a3066116 WHIRLPOOL 983186cbcb3624daa5eee00c48cf7961222051df7134a8febff8a9a6e77944437c2d64cbfc62955539d7a414d215d407685d8182708745a8d1ad465cf33a3235 diff --git a/sys-cluster/cinder/cinder-2013.1.ebuild b/sys-cluster/cinder/cinder-2013.1.ebuild new file mode 100644 index 000000000000..f8145c1590aa --- /dev/null +++ b/sys-cluster/cinder/cinder-2013.1.ebuild @@ -0,0 +1,64 @@ +# 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.1.ebuild,v 1.1 2013/04/10 16:53:03 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 eutils + +DESCRIPTION="Cinder is the OpenStack Block storage service. This is a spin out +of nova-volumes." +HOMEPAGE="https://launchpad.net/cinder" +SRC_URI="http://launchpad.net/${PN}/grizzly/${PV}/+download/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +RDEPEND="=dev-python/amqplib-0.6.1 + >=dev-python/anyjson-0.2.4[${PYTHON_USEDEP}] + >=dev-python/eventlet-0.9.17[${PYTHON_USEDEP}] + >=dev-python/kombu-1.0.4[${PYTHON_USEDEP}] + >=dev-python/lockfile-0.8 + >=dev-python/lxml-2.3[${PYTHON_USEDEP}] + >=dev-python/routes-1.12.3[${PYTHON_USEDEP}] + =dev-python/webob-1.2.3 + >=dev-python/greenlet-0.3.1[${PYTHON_USEDEP}] + >=dev-python/pastedeploy-1.5.0[${PYTHON_USEDEP}] + dev-python/paste[${PYTHON_USEDEP}] + >=dev-python/sqlalchemy-0.7.3 + <=dev-python/sqlalchemy-0.7.9 + >=dev-python/sqlalchemy-migrate-0.7.2 + >=dev-python/stevedore-0.8 + >=dev-python/suds-0.4 + dev-python/paramiko[${PYTHON_USEDEP}] + >=dev-python/Babel-0.9.6[${PYTHON_USEDEP}] + >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}] + >=dev-python/setuptools-git-0.4[${PYTHON_USEDEP}] + >=dev-python/python-glanceclient-0.5.0 + =dev-python/python-keystoneclient-0.2.0 + dev-python/python-swiftclient[${PYTHON_USEDEP}] + >=dev-python/oslo-config-1.1.0[${PYTHON_USEDEP}] + virtual/python-argparse[${PYTHON_USEDEP}]" + +PATCHES=( ) + +python_install() { + distutils-r1_python_install + keepdir /etc/cinder + keepdir /etc/cinder/rootwrap.d + insinto /etc/cinder + + newins "${S}/etc/cinder/cinder.conf.sample" "cinder.conf" + newins "${S}/etc/cinder/api-paste.ini" "api-paste.ini" + newins "${S}/etc/cinder/logging_sample.conf" "logging_sample.conf" + newins "${S}/etc/cinder/policy.json" "policy.json" + newins "${S}/etc/cinder/rootwrap.conf" "rootwrap.conf" + insinto /etc/cinder/rootwrap.d + newins "${S}/etc/cinder/rootwrap.d/volume.filters" "volume.filters" +} diff --git a/sys-cluster/nova/Manifest b/sys-cluster/nova/Manifest index 3a69c27ef889..80c0a3e97824 100644 --- a/sys-cluster/nova/Manifest +++ b/sys-cluster/nova/Manifest @@ -1 +1,2 @@ DIST nova-2012.2.3.tar.gz 6260067 SHA256 e9640d89e84d3feaa537b1faa3945c708beb2cffd8a114ff83484ea151406994 SHA512 bbbbb140ff09d508a44d6b5dc9817b4d6e277ddc45ae1b70b45915c3e8c6873cffaf670a2a745381bbf63b4d5869fab6a524c7d2816fafe0aa4fe73a6ffca15d WHIRLPOOL da4cc6033426fb5268bff67a18574c8d2de4dbbc528df6982e2b87e8b3a92f2df999c8d6bf0b6fb3de1397feccdd906e064b78e3f7bab7fee679eee2437e3185 +DIST nova-2013.1.tar.gz 5713369 SHA256 db7f5259d848358bf14105d5833869ec145f643312e6bc0adef0050120fe3e07 SHA512 d23c121ad2f041bab823d231d6708b991d80db18e9529eb9a06b7854204069a398ac9ce3bd7e83aa872db877ffcd9934422b76ca3a4d176c6728b3c8fda50e0a WHIRLPOOL c4225b29e20c377aecb14454725344ce5458e009f05387b3c4d1c0695c54997cb58dcc0218a6722f9ca78658485055c5140b052535aa676d9eb280477a6aaceb diff --git a/sys-cluster/nova/nova-2013.1.ebuild b/sys-cluster/nova/nova-2013.1.ebuild new file mode 100644 index 000000000000..5d1773450de3 --- /dev/null +++ b/sys-cluster/nova/nova-2013.1.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/nova/nova-2013.1.ebuild,v 1.1 2013/04/10 17:34:19 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 eutils + +DESCRIPTION="Nova is a cloud computing fabric controller (main part of an +IaaS system). It is written in Python." +HOMEPAGE="https://launchpad.net/nova" +SRC_URI="http://launchpad.net/${PN}/grizzly/${PV}/+download/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" + +RDEPEND=">=dev-python/amqplib-0.6.1[${PYTHON_USEDEP}] + >=dev-python/anyjson-0.2.4[${PYTHON_USEDEP}] + >=dev-python/cheetah-2.4.4 + >=dev-python/sqlalchemy-0.7.8 + <=dev-python/sqlalchemy-0.7.99 + dev-python/boto[${PYTHON_USEDEP}] + >=dev-python/eventlet-0.9.17[${PYTHON_USEDEP}] + >=dev-python/kombu-1.0.4-r1[${PYTHON_USEDEP}] + >=dev-python/routes-1.12.3-r1[${PYTHON_USEDEP}] + =dev-python/webob-1.2.3 + >=dev-python/greenlet-0.3.1[${PYTHON_USEDEP}] + >=dev-python/pastedeploy-1.5.0-r1[${PYTHON_USEDEP}] + dev-python/paste[${PYTHON_USEDEP}] + >=dev-python/sqlalchemy-migrate-0.7.2 + dev-python/netaddr + >=dev-python/suds-0.4 + dev-python/paramiko[${PYTHON_USEDEP}] + dev-python/pyasn1[${PYTHON_USEDEP}] + >=dev-python/Babel-0.9.6[${PYTHON_USEDEP}] + >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}] + dev-python/httplib2[${PYTHON_USEDEP}] + >=dev-python/setuptools-git-0.4[${PYTHON_USEDEP}] + >=dev-python/python-cinderclient-1.0.1[${PYTHON_USEDEP}] + >=dev-python/python-glanceclient-0.5.0[${PYTHON_USEDEP}] + =dev-python/python-quantumclient-2.2.0[${PYTHON_USEDEP}] + <=dev-python/python-quantumclient-3.0.0[${PYTHON_USEDEP}] + >=dev-python/python-keystoneclient-0.2.0[${PYTHON_USEDEP}] + >=dev-python/stevedore-0.7 + >dev-python/websockify-0.4[${PYTHON_USEDEP}] + >=dev-python/oslo-config-1.1.0[${PYTHON_USEDEP}] + virtual/python-argparse[${PYTHON_USEDEP}]" + +PATCHES=( +) + +python_install() { + distutils-r1_python_install + keepdir /etc/nova + insinto /etc/nova + + newins "etc/nova/nova.conf.sample" "nova.conf" + newins "etc/nova/api-paste.ini" "api-paste.ini" + newins "etc/nova/logging_sample.conf" "logging_sample.conf" + newins "etc/nova/policy.json" "policy.json" + newins "etc/nova/rootwrap.conf" "rootwrap.conf" + insinto /etc/nova/rootwrap.d + doins "etc/nova/rootwrap.d/api-metadata.filters" + doins "etc/nova/rootwrap.d/compute.filters" + doins "etc/nova/rootwrap.d/network.filters" +} diff --git a/sys-cluster/quantum/Manifest b/sys-cluster/quantum/Manifest index 0c54d5dffa69..00b6afb9207f 100644 --- a/sys-cluster/quantum/Manifest +++ b/sys-cluster/quantum/Manifest @@ -1 +1,2 @@ DIST quantum-2012.2.3.tar.gz 774143 SHA256 c1788b006c0c2a19da05f64a1f2b244c629bfe32b5e7d870fdda4e7cfb364dd0 SHA512 e0de76c6ab16fb0efff3e6a37b4ef4d6ca74133ee8b1ad59adbbc50862c7fc0f1a9a06e01d0019049a2805e19791c8f3ba0799574aef61430ca0260b337cb9ab WHIRLPOOL eb0267e6528813d9d1e69fa0560851156b65a3025f1a91e8c22bb106a33d9fbf824934d4ee303c15842b51cbb95881b297f084153583e4062a9259bf2e7f0747 +DIST quantum-2013.1.tar.gz 1143813 SHA256 edae19fe45849168bc9cace82b63a11a3b9d2292ba733d4c536657c1c722e61e SHA512 2c2731ffb1f760d56e51b87b3e9fa3aed16d4d00f6342381c7ee87149c31b140944aa21292f5df2b8962200baca1862bedc42cc090ae688a6f277d0ea9ef4d06 WHIRLPOOL 9c538191d78ee208b90a15a134f1c6e2cebf187718d909a2248153b0a6c4b6af24b4ed854b2ab4cf8fc61e248aeb931bb503aadfa4a546c69d68c4ccc88fa794 diff --git a/sys-cluster/quantum/quantum-2013.1.ebuild b/sys-cluster/quantum/quantum-2013.1.ebuild new file mode 100644 index 000000000000..e8f604dcca6d --- /dev/null +++ b/sys-cluster/quantum/quantum-2013.1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/quantum/quantum-2013.1.ebuild,v 1.1 2013/04/10 17:07:17 prometheanfire Exp $ + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) + +inherit distutils-r1 + +#restricted due to packages missing and bad depends in the test ==webob-1.0.8 +RESTRICT="test" +DESCRIPTION="Quantum is a virtual network service for Openstack." +HOMEPAGE="https://launchpad.net/quantum" +SRC_URI="http://launchpad.net/${PN}/grizzly/${PV}/+download/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( dev-python/cliff[${PYTHON_USEDEP}] + dev-python/configobj[${PYTHON_USEDEP}] ) + dev-python/coverage[${PYTHON_USEDEP}] + >=dev-python/mock-1.0[${PYTHON_USEDEP}] + =dev-python/mox-0.5.3-r1[${PYTHON_USEDEP}] + dev-python/nose[${PYTHON_USEDEP}] + dev-python/nosehtmloutput[${PYTHON_USEDEP}] + dev-python/nosexcover + dev-python/openstack-nose-plugin[${PYTHON_USEDEP}] + =dev-python/pep8-1.3.3 + >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] + =dev-python/webtest-1.3.3 + virtual/python-unittest2[${PYTHON_USEDEP}]" +RDEPEND=">=dev-python/pastedeploy-1.5.0-r1[${PYTHON_USEDEP}] + >=dev-python/alembic-0.4.1[${PYTHON_USEDEP}] + dev-python/paste[${PYTHON_USEDEP}] + >=dev-python/routes-1.12.3[${PYTHON_USEDEP}] + =dev-python/amqplib-0.6.1 + >=dev-python/anyjson-0.2.4[${PYTHON_USEDEP}] + >=dev-python/eventlet-0.9.17[${PYTHON_USEDEP}] + >=dev-python/greenlet-0.3.1[${PYTHON_USEDEP}] + dev-python/httplib2[${PYTHON_USEDEP}] + >=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}] + =dev-python/kombu-1.0.4-r1[${PYTHON_USEDEP}] + dev-python/netaddr + >=dev-python/python-keystoneclient-0.2.0[${PYTHON_USEDEP}] + dev-python/python-novaclient[${PYTHON_USEDEP}] + >=dev-python/python-quantumclient-2.2.0[${PYTHON_USEDEP}] + <=dev-python/python-quantumclient-3.0.0[${PYTHON_USEDEP}] + dev-python/pyudev + >dev-python/sqlalchemy-0.7.8 + <=dev-python/sqlalchemy-0.7.99 + >=dev-python/webob-1.2[${PYTHON_USEDEP}] + >=dev-python/oslo-config-1.1.0[${PYTHON_USEDEP}] + virtual/python-argparse[${PYTHON_USEDEP}]" + +python_install() { + distutils-r1_python_install + keepdir /etc/quantum + insinto /etc/quantum + + doins "etc/api-paste.ini" + doins "etc/dhcp_agent.ini" + doins "etc/l3_agent.ini" + doins "etc/policy.json" + doins "etc/quantum.conf" + doins "etc/rootwrap.conf" + insinto /etc + doins -r "etc/quantum/" + + #remove the etc stuff from usr... + rm -R "${D}/usr/etc/" +} diff --git a/sys-cluster/swift/Manifest b/sys-cluster/swift/Manifest index 4af5c883f137..833466501130 100644 --- a/sys-cluster/swift/Manifest +++ b/sys-cluster/swift/Manifest @@ -1,2 +1,2 @@ -DIST swift-1.7.4.tar.gz 461286 SHA256 5c927cfd6aeba38689c1b8e0d1b6fd697999ad56012f6a4aff011d6018d55cd2 SHA512 c7527593beaede09a70e92b85823eb4661992a568377aea6254c7470dddf9ab64238361c84298b1c046c05abb781507bd7634fdff05d30c1e35e465d7f86cf78 WHIRLPOOL f78325e57a02a34e3f4a052778604115df71f2225861b6b4e9516c25d9b83d7bec7251de34da98f34618b7b586eaac747948192822f2998f3ddeb23fc12f999a DIST swift-1.7.6.tar.gz 503775 SHA256 cf108786ecd0fbf1d2b7e422824d78210e17e93ec4a85c2be01c611092f95c14 SHA512 c549bafb25fac590dd76c5f17873e0921532dfc8542c450594788294e2c75253414ab2a5150d191b5b61b2c9b745bab4e30146d71c6b0c35714a8e3005dcd016 WHIRLPOOL ae8d6c0d6657473f2715f2ab70d823fe69e64dcc4d7b7b910d4f978df01ca7e0d14450cde297499a0b9f090c40ccfea82059cb12a4c888a5fbf09291cfdcb8a2 +DIST swift-1.8.0.tar.gz 556736 SHA256 613185473e0c6f11c77bdc6b65efee195303268117afd9024fee82ebde6ed8a3 SHA512 c7eb92b7b6c952633ccc519f0b9125d1f95db548885c3ccdeaf872f1729797dde1525bcd6f87a8b094cf54c256e472d8d2b11e52954391b1636dc3c966152d37 WHIRLPOOL af4a841829e1d3c2ba85fae97cd2364bb16697f7bccc32a5c419a15946950dc32c95fb86fab40b35ae96f8b3203e450e93c9b8806df265522ac67667ebf5a75a diff --git a/sys-cluster/swift/swift-1.7.4.ebuild b/sys-cluster/swift/swift-1.8.0.ebuild similarity index 75% rename from sys-cluster/swift/swift-1.7.4.ebuild rename to sys-cluster/swift/swift-1.8.0.ebuild index 45f3509a8b30..c5efc6846816 100644 --- a/sys-cluster/swift/swift-1.7.4.ebuild +++ b/sys-cluster/swift/swift-1.8.0.ebuild @@ -1,15 +1,15 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/swift/swift-1.7.4.ebuild,v 1.2 2013/01/11 22:29:38 prometheanfire Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/swift/swift-1.8.0.ebuild,v 1.1 2013/04/10 16:24:16 prometheanfire Exp $ EAPI=5 -PYTHON_COMPAT=( python2_5 python2_6 python2_7 ) +PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 eutils linux-info DESCRIPTION="A highly available, distributed, eventually consistent object/blob store" HOMEPAGE="https://launchpad.net/swift" -SRC_URI="http://launchpad.net/${PN}/folsom/${PV}/+download/${P}.tar.gz" +SRC_URI="http://launchpad.net/${PN}/grizzly/${PV}/+download/${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" @@ -17,24 +17,25 @@ KEYWORDS="~amd64 ~x86" IUSE="proxy account container object test +memcache" DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] - test? ( dev-python/nose - dev-python/coverage + test? ( dev-python/nose[${PYTHON_USEDEP}] + dev-python/coverage[${PYTHON_USEDEP}] dev-python/nosexcover - dev-python/pep8 - dev-python/mock - >=dev-python/sphinx-1.1.2 )" - -RDEPEND="dev-python/eventlet - dev-python/greenlet + dev-python/openstack-nose-plugin[${PYTHON_USEDEP}] + dev-python/nosehtmloutput[${PYTHON_USEDEP}] + =dev-python/pep8-1.3.3 + >=dev-python/mock-0.8.0[${PYTHON_USEDEP}] + >=dev-python/sphinx-1.1.2[${PYTHON_USEDEP}] )" + +RDEPEND="dev-python/eventlet[${PYTHON_USEDEP}] + dev-python/greenlet[${PYTHON_USEDEP}] dev-python/netifaces - dev-python/pastedeploy + dev-python/pastedeploy[${PYTHON_USEDEP}] dev-python/simplejson[${PYTHON_USEDEP}] - dev-python/pyxattr - dev-python/configobj - dev-python/webob - >=dev-python/webob-1.0.8 - =dev-python/python-swiftclient-1.2.0 + dev-python/pyxattr[${PYTHON_USEDEP}] + dev-python/configobj[${PYTHON_USEDEP}] + >=dev-python/webob-1.0.8[${PYTHON_USEDEP}] + =sys-fs/lvm2-2.02.45 >=dev-libs/libgcrypt-1.1.42 >=dev-libs/libgpg-error-1.0-r1 >=dev-libs/popt-1.7 diff --git a/sys-fs/device-mapper/Manifest b/sys-fs/device-mapper/Manifest deleted file mode 100644 index af6e0e7cf9e7..000000000000 --- a/sys-fs/device-mapper/Manifest +++ /dev/null @@ -1,7 +0,0 @@ -DIST device-mapper.1.02.19.tgz 183064 SHA256 4723a4ba55e10c58a4e1bd7551e1e7d90ce43d3fcdabfd78285d39c2d33cdead -DIST device-mapper.1.02.22.tgz 189726 SHA256 ff833a6cd6246686f5b3f5692fd6597f1ffbc60f08929e5fe68304cdafb61595 -DIST device-mapper.1.02.24.tgz 192995 SHA256 a0bd3de63e0d12da8d82153a2e3b53e59d92e0fc52712a4fa0f997f6d5baaa56 -DIST device-mapper.1.02.25.tgz 193095 SHA256 eb7e3234dd8c7651403df6485918efd765d408e2618a0f6cde51c2f231f8507c -DIST device-mapper.1.02.26.tgz 194047 SHA256 dbe5b92a06316b628c40afadac6ca4eac1abde8282d11c6e99461bc0b32b2075 -DIST device-mapper.1.02.27.tgz 202823 SHA256 669b7820a7421547468577bc3190ee4bb35c2a1395f434dee636ba2e65a38dfc -DIST device-mapper.1.02.28.tgz 203182 SHA256 24c7887fe896325a6cdc86b8beeb0d9c2de8b1c4cb20f53c2dc8f90963fc39bf diff --git a/sys-fs/device-mapper/device-mapper-1.02.19-r1.ebuild b/sys-fs/device-mapper/device-mapper-1.02.19-r1.ebuild deleted file mode 100644 index f97b2fd06e3f..000000000000 --- a/sys-fs/device-mapper/device-mapper-1.02.19-r1.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/device-mapper-1.02.19-r1.ebuild,v 1.11 2007/08/25 14:43:23 vapier Exp $ - -inherit eutils multilib toolchain-funcs - -DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities" -HOMEPAGE="http://sources.redhat.com/dm/" -SRC_URI="ftp://sources.redhat.com/pub/dm/${PN}.${PV}.tgz - ftp://sources.redhat.com/pub/dm/old/${PN}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="selinux" - -DEPEND="selinux? ( sys-libs/libselinux )" - -S=${WORKDIR}/${PN}.${PV} - -src_compile() { - econf --sbindir=/sbin $(use_enable selinux) || die "econf failed" - emake || die "compile problem" -} - -src_install() { - make install DESTDIR="${D}" || die - - # move shared libs to / - mv "${D}"/usr/$(get_libdir) "${D}"/ || die "move libdir" - dolib.a lib/ioctl/libdevmapper.a || die "dolib.a" - gen_usr_ldscript libdevmapper.so - - insinto /etc - doins "${FILESDIR}"/dmtab - insinto /lib/rcscripts/addons - doins "${FILESDIR}"/dm-start.sh - - newinitd "${FILESDIR}"/device-mapper.rc device-mapper || die - - insinto /etc/udev/rules.d/ - newins "${FILESDIR}"/64-device-mapper.rules-1.02.19 64-device-mapper.rules - - dodoc INSTALL INTRO README VERSION WHATS_NEW -} - -pkg_preinst() { - local l=${ROOT}/$(get_libdir)/libdevmapper.so.1.01 - [[ -e ${l} ]] && cp "${l}" "${D}"/$(get_libdir)/ -} - -pkg_postinst() { - preserve_old_lib_notify /$(get_libdir)/libdevmapper.so.1.01 - - elog "device-mapper volumes are no longer automatically created for" - elog "baselayout-2 users. If you are using baselayout-2, be sure to" - elog "run: # rc-update add device-mapper boot" -} diff --git a/sys-fs/device-mapper/device-mapper-1.02.19.ebuild b/sys-fs/device-mapper/device-mapper-1.02.19.ebuild deleted file mode 100644 index 9844a5b7d83d..000000000000 --- a/sys-fs/device-mapper/device-mapper-1.02.19.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/device-mapper-1.02.19.ebuild,v 1.12 2011/02/06 10:51:16 leio Exp $ - -inherit eutils multilib toolchain-funcs - -DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities" -HOMEPAGE="http://sources.redhat.com/dm/" -SRC_URI="ftp://sources.redhat.com/pub/dm/${PN}.${PV}.tgz - ftp://sources.redhat.com/pub/dm/old/${PN}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="selinux" - -DEPEND="selinux? ( sys-libs/libselinux )" - -S=${WORKDIR}/${PN}.${PV} - -src_compile() { - econf --sbindir=/sbin $(use_enable selinux) || die "econf failed" - emake || die "compile problem" -} - -src_install() { - make install DESTDIR="${D}" || die - - # move shared libs to / - mv "${D}"/usr/$(get_libdir) "${D}"/ || die "move libdir" - dolib.a lib/ioctl/libdevmapper.a || die "dolib.a" - gen_usr_ldscript libdevmapper.so - - insinto /etc - doins "${FILESDIR}"/dmtab - insinto /lib/rcscripts/addons - doins "${FILESDIR}"/dm-start.sh - - newinitd "${FILESDIR}"/device-mapper.rc device-mapper || die - - dodoc INSTALL INTRO README VERSION WHATS_NEW -} - -pkg_preinst() { - local l=${ROOT}/$(get_libdir)/libdevmapper.so.1.01 - [[ -e ${l} ]] && cp "${l}" "${D}"/$(get_libdir)/ -} - -pkg_postinst() { - preserve_old_lib_notify /$(get_libdir)/libdevmapper.so.1.01 - - elog "device-mapper volumes are no longer automatically created for" - elog "baselayout-2 users. If you are using baselayout-2, be sure to" - elog "run: # rc-update add device-mapper boot" -} diff --git a/sys-fs/device-mapper/device-mapper-1.02.22-r1.ebuild b/sys-fs/device-mapper/device-mapper-1.02.22-r1.ebuild deleted file mode 100644 index e9faa613ec1b..000000000000 --- a/sys-fs/device-mapper/device-mapper-1.02.22-r1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/device-mapper-1.02.22-r1.ebuild,v 1.2 2007/10/02 09:38:20 robbat2 Exp $ - -inherit eutils multilib toolchain-funcs - -DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities" -HOMEPAGE="http://sources.redhat.com/dm/" -SRC_URI="ftp://sources.redhat.com/pub/dm/${PN}.${PV}.tgz - ftp://sources.redhat.com/pub/dm/old/${PN}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="selinux" - -DEPEND="selinux? ( sys-libs/libselinux )" - -S="${WORKDIR}/${PN}.${PV}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/device-mapper-1.02.22-export-format.diff -} - -src_compile() { - econf --sbindir=/sbin $(use_enable selinux) --enable-dmeventd || die "econf failed" - emake || die "compile problem" -} - -src_install() { - emake install DESTDIR="${D}" || die - - # move shared libs to / - mv "${D}"/usr/$(get_libdir) "${D}"/ || die "move libdir" - dolib.a lib/ioctl/libdevmapper.a || die "dolib.a" - gen_usr_ldscript libdevmapper.so - - insinto /etc - doins "${FILESDIR}"/dmtab - insinto /lib/rcscripts/addons - doins "${FILESDIR}"/dm-start.sh - - newinitd "${FILESDIR}"/device-mapper.rc device-mapper || die - - newinitd "${FILESDIR}"/1.02.22-dmeventd.initd dmeventd || die - dolib.a dmeventd/libdevmapper-event.a || die - gen_usr_ldscript libdevmapper-event.so - - insinto /etc/udev/rules.d/ - newins "${FILESDIR}"/64-device-mapper.rules-1.02.22 64-device-mapper.rules - - dodoc INSTALL INTRO README VERSION WHATS_NEW -} - -pkg_preinst() { - local l="${ROOT}"/$(get_libdir)/libdevmapper.so.1.01 - [[ -e ${l} ]] && cp "${l}" "${D}"/$(get_libdir)/ -} - -pkg_postinst() { - preserve_old_lib_notify /$(get_libdir)/libdevmapper.so.1.01 - - elog "device-mapper volumes are no longer automatically created for" - elog "baselayout-2 users. If you are using baselayout-2, be sure to" - elog "run: # rc-update add device-mapper boot" -} diff --git a/sys-fs/device-mapper/device-mapper-1.02.22-r3.ebuild b/sys-fs/device-mapper/device-mapper-1.02.22-r3.ebuild deleted file mode 100644 index fa850c842171..000000000000 --- a/sys-fs/device-mapper/device-mapper-1.02.22-r3.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/device-mapper-1.02.22-r3.ebuild,v 1.1 2007/10/08 21:18:36 cardoe Exp $ - -inherit eutils multilib toolchain-funcs - -DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities" -HOMEPAGE="http://sources.redhat.com/dm/" -SRC_URI="ftp://sources.redhat.com/pub/dm/${PN}.${PV}.tgz - ftp://sources.redhat.com/pub/dm/old/${PN}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="selinux" - -DEPEND="selinux? ( sys-libs/libselinux )" - -S="${WORKDIR}/${PN}.${PV}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/device-mapper-1.02.22-export-format.diff -} - -src_compile() { - econf --sbindir=/sbin $(use_enable selinux) --enable-dmeventd || die "econf failed" - emake || die "compile problem" -} - -src_install() { - emake install DESTDIR="${D}" || die - - # move shared libs to / - mv "${D}"/usr/$(get_libdir) "${D}"/ || die "move libdir" - dolib.a lib/ioctl/libdevmapper.a || die "dolib.a" - gen_usr_ldscript libdevmapper.so - - insinto /etc - doins "${FILESDIR}"/dmtab - insinto /lib/rcscripts/addons - doins "${FILESDIR}"/dm-start.sh - - newinitd "${FILESDIR}"/device-mapper.rc-1.02.22-r3 device-mapper || die - newconfd "${FILESDIR}"/device-mapper.conf-1.02.22-r3 device-mapper || die - - newinitd "${FILESDIR}"/1.02.22-dmeventd.initd dmeventd || die - dolib.a dmeventd/libdevmapper-event.a || die - gen_usr_ldscript libdevmapper-event.so - - insinto /etc/udev/rules.d/ - newins "${FILESDIR}"/64-device-mapper.rules-1.02.22 64-device-mapper.rules - - dodoc INSTALL INTRO README VERSION WHATS_NEW -} - -pkg_preinst() { - local l="${ROOT}"/$(get_libdir)/libdevmapper.so.1.01 - [[ -e ${l} ]] && cp "${l}" "${D}"/$(get_libdir)/ -} - -pkg_postinst() { - preserve_old_lib_notify /$(get_libdir)/libdevmapper.so.1.01 - - elog "device-mapper volumes are no longer automatically created for" - elog "baselayout-2 users. If you are using baselayout-2, be sure to" - elog "run: # rc-update add device-mapper boot" -} diff --git a/sys-fs/device-mapper/device-mapper-1.02.22-r4.ebuild b/sys-fs/device-mapper/device-mapper-1.02.22-r4.ebuild deleted file mode 100644 index eb9b63748342..000000000000 --- a/sys-fs/device-mapper/device-mapper-1.02.22-r4.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/device-mapper-1.02.22-r4.ebuild,v 1.1 2007/10/09 14:19:55 cardoe Exp $ - -inherit eutils multilib toolchain-funcs - -DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities" -HOMEPAGE="http://sources.redhat.com/dm/" -SRC_URI="ftp://sources.redhat.com/pub/dm/${PN}.${PV}.tgz - ftp://sources.redhat.com/pub/dm/old/${PN}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" -IUSE="selinux" - -DEPEND="selinux? ( sys-libs/libselinux )" - -S="${WORKDIR}/${PN}.${PV}" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/device-mapper-1.02.22-export-format-r1.diff -} - -src_compile() { - econf --sbindir=/sbin $(use_enable selinux) --enable-dmeventd || die "econf failed" - emake || die "compile problem" -} - -src_install() { - emake install DESTDIR="${D}" || die - - # move shared libs to / - mv "${D}"/usr/$(get_libdir) "${D}"/ || die "move libdir" - dolib.a lib/ioctl/libdevmapper.a || die "dolib.a" - gen_usr_ldscript libdevmapper.so - - insinto /etc - doins "${FILESDIR}"/dmtab - insinto /lib/rcscripts/addons - doins "${FILESDIR}"/dm-start.sh - - newinitd "${FILESDIR}"/device-mapper.rc-1.02.22-r3 device-mapper || die - newconfd "${FILESDIR}"/device-mapper.conf-1.02.22-r3 device-mapper || die - - newinitd "${FILESDIR}"/1.02.22-dmeventd.initd dmeventd || die - dolib.a dmeventd/libdevmapper-event.a || die - gen_usr_ldscript libdevmapper-event.so - - insinto /etc/udev/rules.d/ - newins "${FILESDIR}"/64-device-mapper.rules-1.02.22 64-device-mapper.rules - - dodoc INSTALL INTRO README VERSION WHATS_NEW -} - -pkg_preinst() { - local l="${ROOT}"/$(get_libdir)/libdevmapper.so.1.01 - [[ -e ${l} ]] && cp "${l}" "${D}"/$(get_libdir)/ -} - -pkg_postinst() { - preserve_old_lib_notify /$(get_libdir)/libdevmapper.so.1.01 - - elog "device-mapper volumes are no longer automatically created for" - elog "baselayout-2 users. If you are using baselayout-2, be sure to" - elog "run: # rc-update add device-mapper boot" -} diff --git a/sys-fs/device-mapper/device-mapper-1.02.22-r5.ebuild b/sys-fs/device-mapper/device-mapper-1.02.22-r5.ebuild deleted file mode 100644 index 9aef53c8936b..000000000000 --- a/sys-fs/device-mapper/device-mapper-1.02.22-r5.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/device-mapper-1.02.22-r5.ebuild,v 1.13 2011/02/06 10:51:16 leio Exp $ - -inherit eutils multilib toolchain-funcs - -DESCRIPTION="Device mapper ioctl library for use with LVM2 utilities" -HOMEPAGE="http://sources.redhat.com/dm/" -SRC_URI="ftp://sources.redhat.com/pub/dm/${PN}.${PV}.tgz - ftp://sources.redhat.com/pub/dm/old/${PN}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86" -IUSE="selinux" - -DEPEND="selinux? ( sys-libs/libselinux )" -RDEPEND="!exists) { -+ if (info->suspended) -+ buf = "SUSPENDED"; -+ else -+ buf = info->read_only ? " READONLY" : "ACTIVE"; -+ } -+ -+ return dm_report_field_string(rh, field, &buf); -+} -+ -+static int _dm_info_target_types_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ char buf[1024]; -+ char *dest = buf; -+ int remains = sizeof(buf); -+ int written; -+ const char *s = buf; -+ struct dm_task *dmt = (struct dm_task *) data; -+ void *next = NULL; -+ uint64_t start, length; -+ char *target_type = NULL; -+ char *params; -+ -+ -+ buf[0] = '\0'; -+ -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, "%s", target_type); -+ dest += written; -+ remains -= written; -+ -+ while (remains > 0 && next) { -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, ",%s", target_type); -+ dest += written; -+ remains -= written; -+ } -+ } -+ } -+ -+ buf[sizeof(buf)-1] = '\0'; -+ -+ return dm_report_field_string(rh, field, &s); -+} -+ - static int _dm_info_devno_disp(struct dm_report *rh, struct dm_pool *mem, - struct dm_report_field *field, const void *data, - void *private) -@@ -1834,11 +1911,12 @@ - { DR_INFO, "Mapped Device Information", "", _info_get_obj }, - { DR_DEPS, "Mapped Device Relationship Information", "", _deps_get_obj }, - { DR_TREE, "Mapped Device Relationship Information", "", _tree_get_obj }, -+ { DR_TABLE, "Mapped Device Table", "", _task_get_obj }, - { 0, "", "", NULL }, - }; - - /* Column definitions */ --#define OFFSET_OF(strct, field) ((unsigned int) &((struct strct *)NULL)->field) -+#define OFFSET_OF(strct, field) ((unsigned long) &((struct strct *)NULL)->field) - #define STR (DM_REPORT_FIELD_TYPE_STRING) - #define NUM (DM_REPORT_FIELD_TYPE_NUMBER) - #define FIELD_O(type, strct, sorttype, head, field, width, func, id, desc) {DR_ ## type, sorttype, OFFSET_OF(strct, field), width, id, head, &_ ## func ## _disp, desc}, -@@ -1849,6 +1927,7 @@ - FIELD_F(TASK, STR, "Name", 16, dm_name, "name", "Name of mapped device.") - FIELD_F(TASK, STR, "UUID", 32, dm_uuid, "uuid", "Unique (optional) identifier for mapped device.") - FIELD_F(INFO, STR, "Stat", 4, dm_info_status, "attr", "(L)ive, (I)nactive, (s)uspended, (r)ead-only, read-(w)rite.") -+FIELD_F(INFO, STR, "State", 1, dm_info_cleartext_status, "status", "State as cleartext.") - FIELD_F(INFO, STR, "DevNo", 5, dm_info_devno, "devno", "Device major and minor numbers") - FIELD_O(INFO, dm_info, NUM, "Maj", major, 3, int32, "major", "Block device major number.") - FIELD_O(INFO, dm_info, NUM, "Min", minor, 3, int32, "minor", "Block device minor number.") -@@ -1856,6 +1935,11 @@ - FIELD_O(INFO, dm_info, NUM, "Targ", target_count, 4, int32, "segments", "Number of segments in live table, if present.") - FIELD_O(INFO, dm_info, NUM, "Event", event_nr, 6, uint32, "events", "Number of most recent event.") - -+FIELD_O(INFO, dm_info, NUM, "RO", read_only, 2, int, "read_only", "Read only.") -+FIELD_O(INFO, dm_info, NUM, "Ex", exists, 2, int, "exists", "Exists.") -+FIELD_O(INFO, dm_info, NUM, "Susp", suspended, 4, int, "suspended", "Suspended.") -+FIELD_O(INFO, dm_info, NUM, "tab_live", live_table, 8, int, "table_live", "Live table.") -+FIELD_O(INFO, dm_info, NUM, "tab_inact", inactive_table, 9, int, "table_inactive", "Inactive table.") - FIELD_O(DEPS, dm_deps, NUM, "#Devs", count, 5, int32, "device_count", "Number of devices used by this one.") - FIELD_F(TREE, STR, "DevNames", 8, dm_deps_names, "devs_used", "List of names of mapped devices used by this one.") - FIELD_F(DEPS, STR, "DevNos", 6, dm_deps, "devnos_used", "List of device numbers of devices used by this one.") -@@ -1863,6 +1947,7 @@ - FIELD_F(TREE, NUM, "#Refs", 5, dm_tree_parents_count, "device_ref_count", "Number of mapped devices referencing this one.") - FIELD_F(TREE, STR, "RefNames", 8, dm_tree_parents_names, "names_using_dev", "List of names of mapped devices using this one.") - FIELD_F(TREE, STR, "RefDevNos", 9, dm_tree_parents_devs, "devnos_using_dev", "List of device numbers of mapped devices using this one.") -+FIELD_F(TABLE, STR, "Targettypes", 32, dm_info_target_types, "target_types", "Used target types.") - {0, 0, 0, 0, "", "", NULL, NULL}, - /* *INDENT-ON* */ - }; -@@ -1873,13 +1958,15 @@ - #undef FIELD_F - - static const char *default_report_options = "name,major,minor,attr,open,segments,events,uuid"; -+static const char *default_export_options = "name,major,minor,status,read_only,exists,suspended,table_live,table_inactive,open,segments,events,uuid,target_types"; - - static int _report_init(struct command *c) - { -- char *options = (char *) default_report_options; -+ char *default_options = (char *) default_report_options; -+ char *options; - const char *keys = ""; - const char *separator = " "; -- int aligned = 1, headings = 1, buffered = 1; -+ int aligned = 1, headings = 1, buffered = 1, export = 0; - uint32_t flags = 0; - size_t len = 0; - int r = 0; -@@ -1894,6 +1981,15 @@ - if (_switches[UNBUFFERED_ARG]) - buffered = 0; - -+ if (_switches[EXPORT_ARG]) { -+ default_options = (char *) default_export_options; -+ separator = "\n"; -+ aligned = 0; -+ headings = 0; -+ export = 1; -+ } -+ -+ options = default_options; - if (_switches[OPTIONS_ARG] && _string_args[OPTIONS_ARG]) { - if (*_string_args[OPTIONS_ARG] != '+') - options = _string_args[OPTIONS_ARG]; -@@ -1936,6 +2032,9 @@ - if (headings) - flags |= DM_REPORT_OUTPUT_HEADINGS; - -+ if (export) -+ flags |= DM_REPORT_OUTPUT_EXPORT; -+ - if (!(_report = dm_report_init(&_report_type, - _report_types, _report_fields, - options, separator, flags, keys, NULL))) -@@ -2010,7 +2109,8 @@ - fprintf(out, "Usage:\n\n"); - fprintf(out, "dmsetup [--version] [-v|--verbose [-v|--verbose ...]]\n" - " [-r|--readonly] [--noopencount] [--nolockfs]\n" -- " [-c|-C|--columns] [-o ] [-O|--sort ]\n" -+ " [-c|-C|--columns] [-e|--export]\n" -+ " [-o ] [-O|--sort ]\n" - " [--noheadings] [--separator ]\n\n"); - for (i = 0; _commands[i].name; i++) - fprintf(out, "\t%s %s\n", _commands[i].name, _commands[i].help); -@@ -2354,6 +2454,7 @@ - static struct option long_options[] = { - {"readonly", 0, &ind, READ_ONLY}, - {"columns", 0, &ind, COLS_ARG}, -+ {"export", 0, &ind, EXPORT_ARG}, - {"exec", 1, &ind, EXEC_ARG}, - {"force", 0, &ind, FORCE_ARG}, - {"gid", 1, &ind, GID_ARG}, -@@ -2431,12 +2532,16 @@ - - optarg = 0; - optind = OPTIND_INIT; -- while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCfGj:m:Mno:O:ru:Uv", -+ while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCefGj:m:Mno:O:ru:Uv", - long_options, NULL)) != -1) { - if (c == ':' || c == '?') - return 0; - if (c == 'c' || c == 'C' || ind == COLS_ARG) - _switches[COLS_ARG]++; -+ if (c == 'e' || ind == EXPORT_ARG) { -+ _switches[EXPORT_ARG]++; -+ _switches[COLS_ARG]++; -+ } - if (c == 'f' || ind == FORCE_ARG) - _switches[FORCE_ARG]++; - if (c == 'r' || ind == READ_ONLY) -diff -Nur device-mapper.1.02.22.orig/lib/libdevmapper.h device-mapper.1.02.22/lib/libdevmapper.h ---- device-mapper.1.02.22.orig/lib/libdevmapper.h 2007-10-09 09:51:48.000000000 -0400 -+++ device-mapper.1.02.22/lib/libdevmapper.h 2007-10-09 09:52:02.000000000 -0400 -@@ -715,6 +715,7 @@ - #define DM_REPORT_OUTPUT_ALIGNED 0x00000001 - #define DM_REPORT_OUTPUT_BUFFERED 0x00000002 - #define DM_REPORT_OUTPUT_HEADINGS 0x00000004 -+#define DM_REPORT_OUTPUT_EXPORT 0x00000008 - - struct dm_report *dm_report_init(uint32_t *report_types, - const struct dm_report_object_type *types, -diff -Nur device-mapper.1.02.22.orig/lib/libdm-report.c device-mapper.1.02.22/lib/libdm-report.c ---- device-mapper.1.02.22.orig/lib/libdm-report.c 2007-10-09 09:51:48.000000000 -0400 -+++ device-mapper.1.02.22/lib/libdm-report.c 2007-10-09 09:52:24.000000000 -0400 -@@ -13,6 +13,7 @@ - * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -+#include - #include "libdevmapper.h" - #include "list.h" - #include "log.h" -@@ -776,6 +777,8 @@ - char buf[4096]; - int32_t width; - uint32_t align; -+ const char *fname; -+ char tmp_char; - - if (list_empty(&rh->rows)) - return 1; -@@ -800,6 +803,25 @@ - if (field->props->flags & FLD_HIDDEN) - continue; - -+ if (rh->flags & DM_REPORT_OUTPUT_EXPORT) { -+ fname = rh->fields[field->props->field_num].id; -+ if (!dm_pool_grow_object(rh->mem, "DM_", strlen("DM_"))) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ while (fname && fname[0]) { -+ tmp_char = toupper(fname[0]); -+ if (!dm_pool_grow_object(rh->mem, &tmp_char, 1)) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ fname++; -+ } -+ if (!dm_pool_grow_object(rh->mem, "=", strlen("="))) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ } - repstr = field->report_string; - width = field->props->width; - if (!(rh->flags & DM_REPORT_OUTPUT_ALIGNED)) { diff --git a/sys-fs/device-mapper/files/device-mapper-1.02.22-export-format.diff b/sys-fs/device-mapper/files/device-mapper-1.02.22-export-format.diff deleted file mode 100644 index 5291120f3986..000000000000 --- a/sys-fs/device-mapper/files/device-mapper-1.02.22-export-format.diff +++ /dev/null @@ -1,295 +0,0 @@ -Index: device-mapper.1.02.22/lib/libdm-report.c -=================================================================== ---- device-mapper.1.02.22.orig/lib/libdm-report.c -+++ device-mapper.1.02.22/lib/libdm-report.c -@@ -776,6 +776,8 @@ int dm_report_output(struct dm_report *r - char buf[4096]; - int32_t width; - uint32_t align; -+ const char *fname; -+ char tmp_char; - - if (list_empty(&rh->rows)) - return 1; -@@ -800,6 +802,25 @@ int dm_report_output(struct dm_report *r - if (field->props->flags & FLD_HIDDEN) - continue; - -+ if (rh->flags & DM_REPORT_OUTPUT_EXPORT) { -+ fname = rh->fields[field->props->field_num].id; -+ if (!dm_pool_grow_object(rh->mem, "DM_", strlen("DM_"))) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ while (fname && fname[0]) { -+ tmp_char = toupper(fname[0]); -+ if (!dm_pool_grow_object(rh->mem, &tmp_char, 1)) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ fname++; -+ } -+ if (!dm_pool_grow_object(rh->mem, "=", strlen("="))) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ } - repstr = field->report_string; - width = field->props->width; - if (!(rh->flags & DM_REPORT_OUTPUT_ALIGNED)) { -Index: device-mapper.1.02.22/dmsetup/dmsetup.c -=================================================================== ---- device-mapper.1.02.22.orig/dmsetup/dmsetup.c -+++ device-mapper.1.02.22/dmsetup/dmsetup.c -@@ -107,6 +107,7 @@ extern char *optarg; - enum { - READ_ONLY = 0, - COLS_ARG, -+ EXPORT_ARG, - EXEC_ARG, - FORCE_ARG, - GID_ARG, -@@ -137,7 +138,8 @@ typedef enum { - DR_TASK = 1, - DR_INFO = 2, - DR_DEPS = 4, -- DR_TREE = 8 /* Complete dependency tree required */ -+ DR_TREE = 8, /* Complete dependency tree required */ -+ DR_TABLE = 0x10, /* table is required, not just info */ - } report_type_t; - - static int _switches[NUM_SWITCHES]; -@@ -1105,8 +1107,13 @@ static int _info(int argc, char **argv, - name = argv[1]; - } - -- if (!(dmt = dm_task_create(DM_DEVICE_INFO))) -- return 0; -+ if (_report_type & DR_TABLE ) { -+ if (!(dmt = dm_task_create(DM_DEVICE_TABLE))) -+ return 0; -+ } else { -+ if (!(dmt = dm_task_create(DM_DEVICE_INFO))) -+ return 0; -+ } - - if (!_set_task_device(dmt, name, 0)) - goto out; -@@ -1570,6 +1577,16 @@ static int _uint32_disp(struct dm_report - return dm_report_field_uint32(rh, field, &value); - } - -+static int _int_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ const int value = *(const int *)data; -+ -+ return dm_report_field_int(rh, field, &value); -+} -+ - static int _dm_name_disp(struct dm_report *rh, - struct dm_pool *mem __attribute((unused)), - struct dm_report_field *field, const void *data, -@@ -1611,6 +1628,66 @@ static int _dm_info_status_disp(struct d - return dm_report_field_string(rh, field, &s); - } - -+static int _dm_info_cleartext_status_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ const char *buf = "NOTPRESENT"; -+ const struct dm_info *info = data; -+ -+ if (info->exists) { -+ if (info->suspended) -+ buf = "SUSPENDED"; -+ else -+ buf = info->read_only ? " READONLY" : "ACTIVE"; -+ } -+ -+ return dm_report_field_string(rh, field, &buf); -+} -+ -+static int _dm_info_target_types_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ char buf[1024]; -+ char *dest = buf; -+ int remains = sizeof(buf); -+ int written; -+ const char *s = buf; -+ struct dm_task *dmt = (struct dm_task *) data; -+ void *next = NULL; -+ uint64_t start, length; -+ char *target_type = NULL; -+ char *params; -+ -+ -+ buf[0] = '\0'; -+ -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, "%s", target_type); -+ dest += written; -+ remains -= written; -+ -+ while (remains > 0 && next) { -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, ",%s", target_type); -+ dest += written; -+ remains -= written; -+ } -+ } -+ } -+ -+ buf[sizeof(buf)-1] = '\0'; -+ -+ return dm_report_field_string(rh, field, &s); -+} -+ - static int _dm_info_devno_disp(struct dm_report *rh, struct dm_pool *mem, - struct dm_report_field *field, const void *data, - void *private) -@@ -1834,11 +1911,12 @@ static const struct dm_report_object_typ - { DR_INFO, "Mapped Device Information", "", _info_get_obj }, - { DR_DEPS, "Mapped Device Relationship Information", "", _deps_get_obj }, - { DR_TREE, "Mapped Device Relationship Information", "", _tree_get_obj }, -+ { DR_TABLE, "Mapped Device Table", "", _task_get_obj }, - { 0, "", "", NULL }, - }; - - /* Column definitions */ --#define OFFSET_OF(strct, field) ((unsigned int) &((struct strct *)NULL)->field) -+#define OFFSET_OF(strct, field) ((unsigned long) &((struct strct *)NULL)->field) - #define STR (DM_REPORT_FIELD_TYPE_STRING) - #define NUM (DM_REPORT_FIELD_TYPE_NUMBER) - #define FIELD_O(type, strct, sorttype, head, field, width, func, id, desc) {DR_ ## type, sorttype, OFFSET_OF(strct, field), width, id, head, &_ ## func ## _disp, desc}, -@@ -1849,6 +1927,7 @@ static const struct dm_report_field_type - FIELD_F(TASK, STR, "Name", 16, dm_name, "name", "Name of mapped device.") - FIELD_F(TASK, STR, "UUID", 32, dm_uuid, "uuid", "Unique (optional) identifier for mapped device.") - FIELD_F(INFO, STR, "Stat", 4, dm_info_status, "attr", "(L)ive, (I)nactive, (s)uspended, (r)ead-only, read-(w)rite.") -+FIELD_F(INFO, STR, "State", 1, dm_info_cleartext_status, "status", "State as cleartext.") - FIELD_F(INFO, STR, "DevNo", 5, dm_info_devno, "devno", "Device major and minor numbers") - FIELD_O(INFO, dm_info, NUM, "Maj", major, 3, int32, "major", "Block device major number.") - FIELD_O(INFO, dm_info, NUM, "Min", minor, 3, int32, "minor", "Block device minor number.") -@@ -1856,6 +1935,11 @@ FIELD_O(INFO, dm_info, NUM, "Open", open - FIELD_O(INFO, dm_info, NUM, "Targ", target_count, 4, int32, "segments", "Number of segments in live table, if present.") - FIELD_O(INFO, dm_info, NUM, "Event", event_nr, 6, uint32, "events", "Number of most recent event.") - -+FIELD_O(INFO, dm_info, NUM, "RO", read_only, 2, int, "read_only", "Read only.") -+FIELD_O(INFO, dm_info, NUM, "Ex", exists, 2, int, "exists", "Exists.") -+FIELD_O(INFO, dm_info, NUM, "Susp", suspended, 4, int, "suspended", "Suspended.") -+FIELD_O(INFO, dm_info, NUM, "tab_live", live_table, 8, int, "table_live", "Live table.") -+FIELD_O(INFO, dm_info, NUM, "tab_inact", inactive_table, 9, int, "table_inactive", "Inactive table.") - FIELD_O(DEPS, dm_deps, NUM, "#Devs", count, 5, int32, "device_count", "Number of devices used by this one.") - FIELD_F(TREE, STR, "DevNames", 8, dm_deps_names, "devs_used", "List of names of mapped devices used by this one.") - FIELD_F(DEPS, STR, "DevNos", 6, dm_deps, "devnos_used", "List of device numbers of devices used by this one.") -@@ -1863,6 +1947,7 @@ FIELD_F(DEPS, STR, "DevNos", 6, dm_deps, - FIELD_F(TREE, NUM, "#Refs", 5, dm_tree_parents_count, "device_ref_count", "Number of mapped devices referencing this one.") - FIELD_F(TREE, STR, "RefNames", 8, dm_tree_parents_names, "names_using_dev", "List of names of mapped devices using this one.") - FIELD_F(TREE, STR, "RefDevNos", 9, dm_tree_parents_devs, "devnos_using_dev", "List of device numbers of mapped devices using this one.") -+FIELD_F(TABLE, STR, "Targettypes", 32, dm_info_target_types, "target_types", "Used target types.") - {0, 0, 0, 0, "", "", NULL, NULL}, - /* *INDENT-ON* */ - }; -@@ -1873,13 +1958,15 @@ FIELD_F(TREE, STR, "RefDevNos", 9, dm_tr - #undef FIELD_F - - static const char *default_report_options = "name,major,minor,attr,open,segments,events,uuid"; -+static const char *default_export_options = "name,major,minor,status,read_only,exists,suspended,table_live,table_inactive,open,segments,events,uuid,target_types"; - - static int _report_init(struct command *c) - { -- char *options = (char *) default_report_options; -+ char *default_options = (char *) default_report_options; -+ char *options; - const char *keys = ""; - const char *separator = " "; -- int aligned = 1, headings = 1, buffered = 1; -+ int aligned = 1, headings = 1, buffered = 1, export = 0; - uint32_t flags = 0; - size_t len = 0; - int r = 0; -@@ -1894,6 +1981,15 @@ static int _report_init(struct command * - if (_switches[UNBUFFERED_ARG]) - buffered = 0; - -+ if (_switches[EXPORT_ARG]) { -+ default_options = (char *) default_export_options; -+ separator = "\n"; -+ aligned = 0; -+ headings = 0; -+ export = 1; -+ } -+ -+ options = default_options; - if (_switches[OPTIONS_ARG] && _string_args[OPTIONS_ARG]) { - if (*_string_args[OPTIONS_ARG] != '+') - options = _string_args[OPTIONS_ARG]; -@@ -1936,6 +2032,9 @@ static int _report_init(struct command * - if (headings) - flags |= DM_REPORT_OUTPUT_HEADINGS; - -+ if (export) -+ flags |= DM_REPORT_OUTPUT_EXPORT; -+ - if (!(_report = dm_report_init(&_report_type, - _report_types, _report_fields, - options, separator, flags, keys, NULL))) -@@ -2010,7 +2109,8 @@ static void _usage(FILE *out) - fprintf(out, "Usage:\n\n"); - fprintf(out, "dmsetup [--version] [-v|--verbose [-v|--verbose ...]]\n" - " [-r|--readonly] [--noopencount] [--nolockfs]\n" -- " [-c|-C|--columns] [-o ] [-O|--sort ]\n" -+ " [-c|-C|--columns] [-e|--export]\n" -+ " [-o ] [-O|--sort ]\n" - " [--noheadings] [--separator ]\n\n"); - for (i = 0; _commands[i].name; i++) - fprintf(out, "\t%s %s\n", _commands[i].name, _commands[i].help); -@@ -2354,6 +2454,7 @@ static int _process_switches(int *argc, - static struct option long_options[] = { - {"readonly", 0, &ind, READ_ONLY}, - {"columns", 0, &ind, COLS_ARG}, -+ {"export", 0, &ind, EXPORT_ARG}, - {"exec", 1, &ind, EXEC_ARG}, - {"force", 0, &ind, FORCE_ARG}, - {"gid", 1, &ind, GID_ARG}, -@@ -2431,12 +2532,16 @@ static int _process_switches(int *argc, - - optarg = 0; - optind = OPTIND_INIT; -- while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCfGj:m:Mno:O:ru:Uv", -+ while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCefGj:m:Mno:O:ru:Uv", - long_options, NULL)) != -1) { - if (c == ':' || c == '?') - return 0; - if (c == 'c' || c == 'C' || ind == COLS_ARG) - _switches[COLS_ARG]++; -+ if (c == 'e' || ind == EXPORT_ARG) { -+ _switches[EXPORT_ARG]++; -+ _switches[COLS_ARG]++; -+ } - if (c == 'f' || ind == FORCE_ARG) - _switches[FORCE_ARG]++; - if (c == 'r' || ind == READ_ONLY) -Index: device-mapper.1.02.22/lib/libdevmapper.h -=================================================================== ---- device-mapper.1.02.22.orig/lib/libdevmapper.h -+++ device-mapper.1.02.22/lib/libdevmapper.h -@@ -715,6 +715,7 @@ struct dm_report_field_type { - #define DM_REPORT_OUTPUT_ALIGNED 0x00000001 - #define DM_REPORT_OUTPUT_BUFFERED 0x00000002 - #define DM_REPORT_OUTPUT_HEADINGS 0x00000004 -+#define DM_REPORT_OUTPUT_EXPORT 0x00000008 - - struct dm_report *dm_report_init(uint32_t *report_types, - const struct dm_report_object_type *types, diff --git a/sys-fs/device-mapper/files/device-mapper-1.02.24-export-format.diff b/sys-fs/device-mapper/files/device-mapper-1.02.24-export-format.diff deleted file mode 100644 index c92b0c5a943b..000000000000 --- a/sys-fs/device-mapper/files/device-mapper-1.02.24-export-format.diff +++ /dev/null @@ -1,300 +0,0 @@ -diff -Nuar --exclude '*.rej' --exclude '*.orig' device-mapper.1.02.24.orig/dmsetup/dmsetup.c device-mapper.1.02.24/dmsetup/dmsetup.c ---- device-mapper.1.02.24.orig/dmsetup/dmsetup.c 2007-12-05 09:05:04.000000000 -0800 -+++ device-mapper.1.02.24/dmsetup/dmsetup.c 2008-02-06 17:49:04.670645367 -0800 -@@ -108,6 +108,7 @@ - enum { - READ_ONLY = 0, - COLS_ARG, -+ EXPORT_ARG, - EXEC_ARG, - FORCE_ARG, - GID_ARG, -@@ -139,7 +140,8 @@ - DR_TASK = 1, - DR_INFO = 2, - DR_DEPS = 4, -- DR_TREE = 8 /* Complete dependency tree required */ -+ DR_TREE = 8, /* Complete dependency tree required */ -+ DR_TABLE = 0x10, /* table is required, not just info */ - } report_type_t; - - static int _switches[NUM_SWITCHES]; -@@ -1123,8 +1125,13 @@ - name = argv[1]; - } - -- if (!(dmt = dm_task_create(DM_DEVICE_INFO))) -- return 0; -+ if (_report_type & DR_TABLE ) { -+ if (!(dmt = dm_task_create(DM_DEVICE_TABLE))) -+ return 0; -+ } else { -+ if (!(dmt = dm_task_create(DM_DEVICE_INFO))) -+ return 0; -+ } - - if (!_set_task_device(dmt, name, 0)) - goto out; -@@ -1588,6 +1595,16 @@ - return dm_report_field_uint32(rh, field, &value); - } - -+static int _int_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ const int value = *(const int *)data; -+ -+ return dm_report_field_int(rh, field, &value); -+} -+ - static int _dm_name_disp(struct dm_report *rh, - struct dm_pool *mem __attribute((unused)), - struct dm_report_field *field, const void *data, -@@ -1642,6 +1659,66 @@ - return dm_report_field_string(rh, field, &s); - } - -+static int _dm_info_cleartext_status_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ const char *buf = "NOTPRESENT"; -+ const struct dm_info *info = data; -+ -+ if (info->exists) { -+ if (info->suspended) -+ buf = "SUSPENDED"; -+ else -+ buf = info->read_only ? " READONLY" : "ACTIVE"; -+ } -+ -+ return dm_report_field_string(rh, field, &buf); -+} -+ -+static int _dm_info_target_types_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ char buf[1024]; -+ char *dest = buf; -+ int remains = sizeof(buf); -+ int written; -+ const char *s = buf; -+ struct dm_task *dmt = (struct dm_task *) data; -+ void *next = NULL; -+ uint64_t start, length; -+ char *target_type = NULL; -+ char *params; -+ -+ -+ buf[0] = '\0'; -+ -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, "%s", target_type); -+ dest += written; -+ remains -= written; -+ -+ while (remains > 0 && next) { -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, ",%s", target_type); -+ dest += written; -+ remains -= written; -+ } -+ } -+ } -+ -+ buf[sizeof(buf)-1] = '\0'; -+ -+ return dm_report_field_string(rh, field, &s); -+} -+ - static int _dm_info_devno_disp(struct dm_report *rh, struct dm_pool *mem, - struct dm_report_field *field, const void *data, - void *private) -@@ -1865,11 +1942,12 @@ - { DR_INFO, "Mapped Device Information", "", _info_get_obj }, - { DR_DEPS, "Mapped Device Relationship Information", "", _deps_get_obj }, - { DR_TREE, "Mapped Device Relationship Information", "", _tree_get_obj }, -+ { DR_TABLE, "Mapped Device Table", "", _task_get_obj }, - { 0, "", "", NULL }, - }; - - /* Column definitions */ --#define OFFSET_OF(strct, field) ((unsigned int) &((struct strct *)NULL)->field) -+#define OFFSET_OF(strct, field) ((unsigned long) &((struct strct *)NULL)->field) - #define STR (DM_REPORT_FIELD_TYPE_STRING) - #define NUM (DM_REPORT_FIELD_TYPE_NUMBER) - #define FIELD_O(type, strct, sorttype, head, field, width, func, id, desc) {DR_ ## type, sorttype, OFFSET_OF(strct, field), width, id, head, &_ ## func ## _disp, desc}, -@@ -1884,6 +1962,7 @@ - FIELD_F(TASK, NUM, "RAhead", 6, dm_read_ahead, "read_ahead", "Read ahead in sectors.") - - FIELD_F(INFO, STR, "Stat", 4, dm_info_status, "attr", "(L)ive, (I)nactive, (s)uspended, (r)ead-only, read-(w)rite.") -+FIELD_F(INFO, STR, "State", 1, dm_info_cleartext_status, "status", "State as cleartext.") - FIELD_F(INFO, STR, "DevNo", 5, dm_info_devno, "devno", "Device major and minor numbers") - FIELD_O(INFO, dm_info, NUM, "Maj", major, 3, int32, "major", "Block device major number.") - FIELD_O(INFO, dm_info, NUM, "Min", minor, 3, int32, "minor", "Block device minor number.") -@@ -1891,6 +1970,11 @@ - FIELD_O(INFO, dm_info, NUM, "Targ", target_count, 4, int32, "segments", "Number of segments in live table, if present.") - FIELD_O(INFO, dm_info, NUM, "Event", event_nr, 6, uint32, "events", "Number of most recent event.") - -+FIELD_O(INFO, dm_info, NUM, "RO", read_only, 2, int, "read_only", "Read only.") -+FIELD_O(INFO, dm_info, NUM, "Ex", exists, 2, int, "exists", "Exists.") -+FIELD_O(INFO, dm_info, NUM, "Susp", suspended, 4, int, "suspended", "Suspended.") -+FIELD_O(INFO, dm_info, NUM, "tab_live", live_table, 8, int, "table_live", "Live table.") -+FIELD_O(INFO, dm_info, NUM, "tab_inact", inactive_table, 9, int, "table_inactive", "Inactive table.") - FIELD_O(DEPS, dm_deps, NUM, "#Devs", count, 5, int32, "device_count", "Number of devices used by this one.") - FIELD_F(TREE, STR, "DevNames", 8, dm_deps_names, "devs_used", "List of names of mapped devices used by this one.") - FIELD_F(DEPS, STR, "DevNos", 6, dm_deps, "devnos_used", "List of device numbers of devices used by this one.") -@@ -1898,6 +1982,7 @@ - FIELD_F(TREE, NUM, "#Refs", 5, dm_tree_parents_count, "device_ref_count", "Number of mapped devices referencing this one.") - FIELD_F(TREE, STR, "RefNames", 8, dm_tree_parents_names, "names_using_dev", "List of names of mapped devices using this one.") - FIELD_F(TREE, STR, "RefDevNos", 9, dm_tree_parents_devs, "devnos_using_dev", "List of device numbers of mapped devices using this one.") -+FIELD_F(TABLE, STR, "Targettypes", 32, dm_info_target_types, "target_types", "Used target types.") - {0, 0, 0, 0, "", "", NULL, NULL}, - /* *INDENT-ON* */ - }; -@@ -1908,13 +1993,15 @@ - #undef FIELD_F - - static const char *default_report_options = "name,major,minor,attr,open,segments,events,uuid"; -+static const char *default_export_options = "name,major,minor,status,read_only,exists,suspended,table_live,table_inactive,open,segments,events,uuid,target_types"; - - static int _report_init(struct command *c) - { -- char *options = (char *) default_report_options; -+ char *default_options = (char *) default_report_options; -+ char *options; - const char *keys = ""; - const char *separator = " "; -- int aligned = 1, headings = 1, buffered = 1; -+ int aligned = 1, headings = 1, buffered = 1, export = 0; - uint32_t flags = 0; - size_t len = 0; - int r = 0; -@@ -1929,6 +2016,15 @@ - if (_switches[UNBUFFERED_ARG]) - buffered = 0; - -+ if (_switches[EXPORT_ARG]) { -+ default_options = (char *) default_export_options; -+ separator = "\n"; -+ aligned = 0; -+ headings = 0; -+ export = 1; -+ } -+ -+ options = default_options; - if (_switches[OPTIONS_ARG] && _string_args[OPTIONS_ARG]) { - if (*_string_args[OPTIONS_ARG] != '+') - options = _string_args[OPTIONS_ARG]; -@@ -1971,6 +2067,9 @@ - if (headings) - flags |= DM_REPORT_OUTPUT_HEADINGS; - -+ if (export) -+ flags |= DM_REPORT_OUTPUT_EXPORT; -+ - if (!(_report = dm_report_init(&_report_type, - _report_types, _report_fields, - options, separator, flags, keys, NULL))) -@@ -2046,7 +2145,8 @@ - fprintf(out, "dmsetup [--version] [-v|--verbose [-v|--verbose ...]]\n" - " [-r|--readonly] [--noopencount] [--nolockfs]\n" - " [--readahead [+]|auto|none]\n" -- " [-c|-C|--columns] [-o ] [-O|--sort ]\n" -+ " [-c|-C|--columns] [-e|--export]\n" -+ " [-o ] [-O|--sort ]\n" - " [--noheadings] [--separator ]\n\n"); - for (i = 0; _commands[i].name; i++) - fprintf(out, "\t%s %s\n", _commands[i].name, _commands[i].help); -@@ -2397,6 +2497,7 @@ - static struct option long_options[] = { - {"readonly", 0, &ind, READ_ONLY}, - {"columns", 0, &ind, COLS_ARG}, -+ {"export", 0, &ind, EXPORT_ARG}, - {"exec", 1, &ind, EXEC_ARG}, - {"force", 0, &ind, FORCE_ARG}, - {"gid", 1, &ind, GID_ARG}, -@@ -2476,12 +2577,16 @@ - - optarg = 0; - optind = OPTIND_INIT; -- while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCfGj:m:Mno:O:ru:Uv", -+ while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCefGj:m:Mno:O:ru:Uv", - long_options, NULL)) != -1) { - if (c == ':' || c == '?') - return 0; - if (c == 'c' || c == 'C' || ind == COLS_ARG) - _switches[COLS_ARG]++; -+ if (c == 'e' || ind == EXPORT_ARG) { -+ _switches[EXPORT_ARG]++; -+ _switches[COLS_ARG]++; -+ } - if (c == 'f' || ind == FORCE_ARG) - _switches[FORCE_ARG]++; - if (c == 'r' || ind == READ_ONLY) -diff -Nuar --exclude '*.rej' --exclude '*.orig' device-mapper.1.02.24.orig/lib/libdevmapper.h device-mapper.1.02.24/lib/libdevmapper.h ---- device-mapper.1.02.24.orig/lib/libdevmapper.h 2007-12-05 08:28:19.000000000 -0800 -+++ device-mapper.1.02.24/lib/libdevmapper.h 2008-02-06 17:48:06.670426177 -0800 -@@ -738,6 +738,7 @@ - #define DM_REPORT_OUTPUT_ALIGNED 0x00000001 - #define DM_REPORT_OUTPUT_BUFFERED 0x00000002 - #define DM_REPORT_OUTPUT_HEADINGS 0x00000004 -+#define DM_REPORT_OUTPUT_EXPORT 0x00000008 - - struct dm_report *dm_report_init(uint32_t *report_types, - const struct dm_report_object_type *types, -diff -Nuar --exclude '*.rej' --exclude '*.orig' device-mapper.1.02.24.orig/lib/libdm-report.c device-mapper.1.02.24/lib/libdm-report.c ---- device-mapper.1.02.24.orig/lib/libdm-report.c 2007-08-21 09:26:06.000000000 -0700 -+++ device-mapper.1.02.24/lib/libdm-report.c 2008-02-06 17:48:06.670426177 -0800 -@@ -13,6 +13,7 @@ - * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -+#include - #include "libdevmapper.h" - #include "list.h" - #include "log.h" -@@ -776,6 +777,8 @@ - char buf[4096]; - int32_t width; - uint32_t align; -+ const char *fname; -+ char tmp_char; - - if (list_empty(&rh->rows)) - return 1; -@@ -800,6 +803,25 @@ - if (field->props->flags & FLD_HIDDEN) - continue; - -+ if (rh->flags & DM_REPORT_OUTPUT_EXPORT) { -+ fname = rh->fields[field->props->field_num].id; -+ if (!dm_pool_grow_object(rh->mem, "DM_", strlen("DM_"))) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ while (fname && fname[0]) { -+ tmp_char = toupper(fname[0]); -+ if (!dm_pool_grow_object(rh->mem, &tmp_char, 1)) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ fname++; -+ } -+ if (!dm_pool_grow_object(rh->mem, "=", strlen("="))) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ } - repstr = field->report_string; - width = field->props->width; - if (!(rh->flags & DM_REPORT_OUTPUT_ALIGNED)) { diff --git a/sys-fs/device-mapper/files/device-mapper-1.02.26-export-format.diff b/sys-fs/device-mapper/files/device-mapper-1.02.26-export-format.diff deleted file mode 100644 index 2d4861229599..000000000000 --- a/sys-fs/device-mapper/files/device-mapper-1.02.26-export-format.diff +++ /dev/null @@ -1,300 +0,0 @@ -diff -Nuar --exclude '*.orig' device-mapper.1.02.26.orig/dmsetup/dmsetup.c device-mapper.1.02.26/dmsetup/dmsetup.c ---- device-mapper.1.02.26.orig/dmsetup/dmsetup.c 2008-06-06 11:53:08.000000000 -0700 -+++ device-mapper.1.02.26/dmsetup/dmsetup.c 2008-06-08 11:57:58.491838798 -0700 -@@ -108,6 +108,7 @@ - enum { - READ_ONLY = 0, - COLS_ARG, -+ EXPORT_ARG, - EXEC_ARG, - FORCE_ARG, - GID_ARG, -@@ -140,7 +141,8 @@ - DR_TASK = 1, - DR_INFO = 2, - DR_DEPS = 4, -- DR_TREE = 8 /* Complete dependency tree required */ -+ DR_TREE = 8, /* Complete dependency tree required */ -+ DR_TABLE = 0x10, /* table is required, not just info */ - } report_type_t; - - static int _switches[NUM_SWITCHES]; -@@ -1124,8 +1126,13 @@ - name = argv[1]; - } - -- if (!(dmt = dm_task_create(DM_DEVICE_INFO))) -- return 0; -+ if (_report_type & DR_TABLE ) { -+ if (!(dmt = dm_task_create(DM_DEVICE_TABLE))) -+ return 0; -+ } else { -+ if (!(dmt = dm_task_create(DM_DEVICE_INFO))) -+ return 0; -+ } - - if (!_set_task_device(dmt, name, 0)) - goto out; -@@ -1589,6 +1596,16 @@ - return dm_report_field_uint32(rh, field, &value); - } - -+static int _int_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ const int value = *(const int *)data; -+ -+ return dm_report_field_int(rh, field, &value); -+} -+ - static int _dm_name_disp(struct dm_report *rh, - struct dm_pool *mem __attribute((unused)), - struct dm_report_field *field, const void *data, -@@ -1700,6 +1717,66 @@ - } - - -+static int _dm_info_cleartext_status_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ const char *buf = "NOTPRESENT"; -+ const struct dm_info *info = data; -+ -+ if (info->exists) { -+ if (info->suspended) -+ buf = "SUSPENDED"; -+ else -+ buf = info->read_only ? " READONLY" : "ACTIVE"; -+ } -+ -+ return dm_report_field_string(rh, field, &buf); -+} -+ -+static int _dm_info_target_types_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ char buf[1024]; -+ char *dest = buf; -+ int remains = sizeof(buf); -+ int written; -+ const char *s = buf; -+ struct dm_task *dmt = (struct dm_task *) data; -+ void *next = NULL; -+ uint64_t start, length; -+ char *target_type = NULL; -+ char *params; -+ -+ -+ buf[0] = '\0'; -+ -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, "%s", target_type); -+ dest += written; -+ remains -= written; -+ -+ while (remains > 0 && next) { -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, ",%s", target_type); -+ dest += written; -+ remains -= written; -+ } -+ } -+ } -+ -+ buf[sizeof(buf)-1] = '\0'; -+ -+ return dm_report_field_string(rh, field, &s); -+} -+ - static int _dm_info_devno_disp(struct dm_report *rh, struct dm_pool *mem, - struct dm_report_field *field, const void *data, - void *private) -@@ -1923,11 +2000,12 @@ - { DR_INFO, "Mapped Device Information", "", _info_get_obj }, - { DR_DEPS, "Mapped Device Relationship Information", "", _deps_get_obj }, - { DR_TREE, "Mapped Device Relationship Information", "", _tree_get_obj }, -+ { DR_TABLE, "Mapped Device Table", "", _task_get_obj }, - { 0, "", "", NULL }, - }; - - /* Column definitions */ --#define OFFSET_OF(strct, field) ((unsigned int) &((struct strct *)NULL)->field) -+#define OFFSET_OF(strct, field) ((unsigned long) &((struct strct *)NULL)->field) - #define STR (DM_REPORT_FIELD_TYPE_STRING) - #define NUM (DM_REPORT_FIELD_TYPE_NUMBER) - #define FIELD_O(type, strct, sorttype, head, field, width, func, id, desc) {DR_ ## type, sorttype, OFFSET_OF(strct, field), width, id, head, &_ ## func ## _disp, desc}, -@@ -1942,6 +2020,7 @@ - FIELD_F(TASK, NUM, "RAhead", 6, dm_read_ahead, "read_ahead", "Read ahead in sectors.") - - FIELD_F(INFO, STR, "Stat", 4, dm_info_status, "attr", "(L)ive, (I)nactive, (s)uspended, (r)ead-only, read-(w)rite.") -+FIELD_F(INFO, STR, "State", 1, dm_info_cleartext_status, "status", "State as cleartext.") - FIELD_F(INFO, STR, "Tables", 6, dm_info_table_loaded, "tables_loaded", "Which of the live and inactive table slots are filled.") - FIELD_F(INFO, STR, "Suspended", 9, dm_info_suspended, "suspended", "Whether the device is suspended.") - FIELD_F(INFO, STR, "Read-only", 9, dm_info_read_only, "readonly", "Whether the device is read-only or writeable.") -@@ -1952,6 +2031,11 @@ - FIELD_O(INFO, dm_info, NUM, "Targ", target_count, 4, int32, "segments", "Number of segments in live table, if present.") - FIELD_O(INFO, dm_info, NUM, "Event", event_nr, 6, uint32, "events", "Number of most recent event.") - -+FIELD_O(INFO, dm_info, NUM, "RO", read_only, 2, int, "read_only", "Read only.") -+FIELD_O(INFO, dm_info, NUM, "Ex", exists, 2, int, "exists", "Exists.") -+FIELD_O(INFO, dm_info, NUM, "Susp", suspended, 4, int, "suspended", "Suspended.") -+FIELD_O(INFO, dm_info, NUM, "tab_live", live_table, 8, int, "table_live", "Live table.") -+FIELD_O(INFO, dm_info, NUM, "tab_inact", inactive_table, 9, int, "table_inactive", "Inactive table.") - FIELD_O(DEPS, dm_deps, NUM, "#Devs", count, 5, int32, "device_count", "Number of devices used by this one.") - FIELD_F(TREE, STR, "DevNames", 8, dm_deps_names, "devs_used", "List of names of mapped devices used by this one.") - FIELD_F(DEPS, STR, "DevNos", 6, dm_deps, "devnos_used", "List of device numbers of devices used by this one.") -@@ -1959,6 +2043,7 @@ - FIELD_F(TREE, NUM, "#Refs", 5, dm_tree_parents_count, "device_ref_count", "Number of mapped devices referencing this one.") - FIELD_F(TREE, STR, "RefNames", 8, dm_tree_parents_names, "names_using_dev", "List of names of mapped devices using this one.") - FIELD_F(TREE, STR, "RefDevNos", 9, dm_tree_parents_devs, "devnos_using_dev", "List of device numbers of mapped devices using this one.") -+FIELD_F(TABLE, STR, "Targettypes", 32, dm_info_target_types, "target_types", "Used target types.") - {0, 0, 0, 0, "", "", NULL, NULL}, - /* *INDENT-ON* */ - }; -@@ -1969,13 +2054,15 @@ - #undef FIELD_F - - static const char *default_report_options = "name,major,minor,attr,open,segments,events,uuid"; -+static const char *default_export_options = "name,major,minor,status,read_only,exists,suspended,table_live,table_inactive,open,segments,events,uuid,target_types"; - - static int _report_init(struct command *c) - { -- char *options = (char *) default_report_options; -+ char *default_options = (char *) default_report_options; -+ char *options; - const char *keys = ""; - const char *separator = " "; -- int aligned = 1, headings = 1, buffered = 1, field_prefixes = 0; -+ int aligned = 1, headings = 1, buffered = 1, field_prefixes = 0, export = 0; - uint32_t flags = 0; - size_t len = 0; - int r = 0; -@@ -1995,6 +2082,15 @@ - field_prefixes = 1; - } - -+ if (_switches[EXPORT_ARG]) { -+ default_options = (char *) default_export_options; -+ separator = "\n"; -+ aligned = 0; -+ headings = 0; -+ export = 1; -+ } -+ -+ options = default_options; - if (_switches[OPTIONS_ARG] && _string_args[OPTIONS_ARG]) { - if (*_string_args[OPTIONS_ARG] != '+') - options = _string_args[OPTIONS_ARG]; -@@ -2040,6 +2136,9 @@ - if (field_prefixes) - flags |= DM_REPORT_OUTPUT_FIELD_NAME_PREFIX; - -+ if (export) -+ flags |= DM_REPORT_OUTPUT_EXPORT; -+ - if (!(_report = dm_report_init(&_report_type, - _report_types, _report_fields, - options, separator, flags, keys, NULL))) -@@ -2118,7 +2217,8 @@ - fprintf(out, "dmsetup [--version] [-v|--verbose [-v|--verbose ...]]\n" - " [-r|--readonly] [--noopencount] [--nolockfs]\n" - " [--readahead [+]|auto|none]\n" -- " [-c|-C|--columns] [-o ] [-O|--sort ]\n" -+ " [-c|-C|--columns] [-e|--export]\n" -+ " [-o ] [-O|--sort ]\n" - " [--nameprefixes] [--noheadings] [--separator ]\n\n"); - for (i = 0; _commands[i].name; i++) - fprintf(out, "\t%s %s\n", _commands[i].name, _commands[i].help); -@@ -2469,6 +2569,7 @@ - static struct option long_options[] = { - {"readonly", 0, &ind, READ_ONLY}, - {"columns", 0, &ind, COLS_ARG}, -+ {"export", 0, &ind, EXPORT_ARG}, - {"exec", 1, &ind, EXEC_ARG}, - {"force", 0, &ind, FORCE_ARG}, - {"gid", 1, &ind, GID_ARG}, -@@ -2549,12 +2650,16 @@ - - optarg = 0; - optind = OPTIND_INIT; -- while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCfGj:m:Mno:O:ru:Uv", -+ while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCefGj:m:Mno:O:ru:Uv", - long_options, NULL)) != -1) { - if (c == ':' || c == '?') - return 0; - if (c == 'c' || c == 'C' || ind == COLS_ARG) - _switches[COLS_ARG]++; -+ if (c == 'e' || ind == EXPORT_ARG) { -+ _switches[EXPORT_ARG]++; -+ _switches[COLS_ARG]++; -+ } - if (c == 'f' || ind == FORCE_ARG) - _switches[FORCE_ARG]++; - if (c == 'r' || ind == READ_ONLY) -diff -Nuar --exclude '*.orig' device-mapper.1.02.26.orig/lib/libdevmapper.h device-mapper.1.02.26/lib/libdevmapper.h ---- device-mapper.1.02.26.orig/lib/libdevmapper.h 2008-04-19 17:11:08.000000000 -0700 -+++ device-mapper.1.02.26/lib/libdevmapper.h 2008-06-08 11:55:22.039615314 -0700 -@@ -740,6 +740,7 @@ - #define DM_REPORT_OUTPUT_BUFFERED 0x00000002 - #define DM_REPORT_OUTPUT_HEADINGS 0x00000004 - #define DM_REPORT_OUTPUT_FIELD_NAME_PREFIX 0x00000008 -+#define DM_REPORT_OUTPUT_EXPORT 0x00000010 - - struct dm_report *dm_report_init(uint32_t *report_types, - const struct dm_report_object_type *types, -diff -Nuar --exclude '*.orig' device-mapper.1.02.26.orig/lib/libdm-report.c device-mapper.1.02.26/lib/libdm-report.c ---- device-mapper.1.02.26.orig/lib/libdm-report.c 2008-06-06 12:07:47.000000000 -0700 -+++ device-mapper.1.02.26/lib/libdm-report.c 2008-06-08 11:54:39.618236313 -0700 -@@ -13,6 +13,7 @@ - * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -+#include - #include "libdevmapper.h" - #include "list.h" - #include "log.h" -@@ -803,6 +804,8 @@ - char buf[4096]; - int32_t width; - uint32_t align; -+ const char *fname; -+ char tmp_char; - - if (list_empty(&rh->rows)) - return 1; -@@ -851,6 +854,25 @@ - } - } - -+ if (rh->flags & DM_REPORT_OUTPUT_EXPORT) { -+ fname = rh->fields[field->props->field_num].id; -+ if (!dm_pool_grow_object(rh->mem, "DM_", strlen("DM_"))) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ while (fname && fname[0]) { -+ tmp_char = toupper(fname[0]); -+ if (!dm_pool_grow_object(rh->mem, &tmp_char, 1)) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ fname++; -+ } -+ if (!dm_pool_grow_object(rh->mem, "=", strlen("="))) { -+ log_error("dm_report: Unable to extend output line"); -+ goto bad; -+ } -+ } - repstr = field->report_string; - width = field->props->width; - if (!(rh->flags & DM_REPORT_OUTPUT_ALIGNED)) { diff --git a/sys-fs/device-mapper/files/device-mapper-1.02.27-export-format.diff b/sys-fs/device-mapper/files/device-mapper-1.02.27-export-format.diff deleted file mode 100644 index 9b1580a87e4f..000000000000 --- a/sys-fs/device-mapper/files/device-mapper-1.02.27-export-format.diff +++ /dev/null @@ -1,294 +0,0 @@ -diff -Nuar --exclude '*.rej' --exclude '*.orig' device-mapper.1.02.27.orig/dmsetup/dmsetup.c device-mapper.1.02.27/dmsetup/dmsetup.c ---- device-mapper.1.02.27.orig/dmsetup/dmsetup.c 2008-06-24 15:53:47.000000000 -0700 -+++ device-mapper.1.02.27/dmsetup/dmsetup.c 2008-06-28 01:53:56.048598048 -0700 -@@ -108,6 +108,7 @@ - enum { - READ_ONLY = 0, - COLS_ARG, -+ EXPORT_ARG, - EXEC_ARG, - FORCE_ARG, - GID_ARG, -@@ -142,7 +143,8 @@ - DR_TASK = 1, - DR_INFO = 2, - DR_DEPS = 4, -- DR_TREE = 8 /* Complete dependency tree required */ -+ DR_TREE = 8, /* Complete dependency tree required */ -+ DR_TABLE = 0x10, /* table is required, not just info */ - } report_type_t; - - static int _switches[NUM_SWITCHES]; -@@ -1126,8 +1128,13 @@ - name = argv[1]; - } - -- if (!(dmt = dm_task_create(DM_DEVICE_INFO))) -- return 0; -+ if (_report_type & DR_TABLE ) { -+ if (!(dmt = dm_task_create(DM_DEVICE_TABLE))) -+ return 0; -+ } else { -+ if (!(dmt = dm_task_create(DM_DEVICE_INFO))) -+ return 0; -+ } - - if (!_set_task_device(dmt, name, 0)) - goto out; -@@ -1591,6 +1598,16 @@ - return dm_report_field_uint32(rh, field, &value); - } - -+static int _int_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ const int value = *(const int *)data; -+ -+ return dm_report_field_int(rh, field, &value); -+} -+ - static int _dm_name_disp(struct dm_report *rh, - struct dm_pool *mem __attribute((unused)), - struct dm_report_field *field, const void *data, -@@ -1702,6 +1719,66 @@ - } - - -+static int _dm_info_cleartext_status_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ const char *buf = "NOTPRESENT"; -+ const struct dm_info *info = data; -+ -+ if (info->exists) { -+ if (info->suspended) -+ buf = "SUSPENDED"; -+ else -+ buf = info->read_only ? " READONLY" : "ACTIVE"; -+ } -+ -+ return dm_report_field_string(rh, field, &buf); -+} -+ -+static int _dm_info_target_types_disp(struct dm_report *rh, -+ struct dm_pool *mem __attribute((unused)), -+ struct dm_report_field *field, const void *data, -+ void *private __attribute((unused))) -+{ -+ char buf[1024]; -+ char *dest = buf; -+ int remains = sizeof(buf); -+ int written; -+ const char *s = buf; -+ struct dm_task *dmt = (struct dm_task *) data; -+ void *next = NULL; -+ uint64_t start, length; -+ char *target_type = NULL; -+ char *params; -+ -+ -+ buf[0] = '\0'; -+ -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, "%s", target_type); -+ dest += written; -+ remains -= written; -+ -+ while (remains > 0 && next) { -+ next = dm_get_next_target(dmt, next, &start, &length, -+ &target_type, ¶ms); -+ if (target_type) { -+ written = snprintf(dest, remains, ",%s", target_type); -+ dest += written; -+ remains -= written; -+ } -+ } -+ } -+ -+ buf[sizeof(buf)-1] = '\0'; -+ -+ return dm_report_field_string(rh, field, &s); -+} -+ - static int _dm_info_devno_disp(struct dm_report *rh, struct dm_pool *mem, - struct dm_report_field *field, const void *data, - void *private) -@@ -1925,6 +2002,7 @@ - { DR_INFO, "Mapped Device Information", "", _info_get_obj }, - { DR_DEPS, "Mapped Device Relationship Information", "", _deps_get_obj }, - { DR_TREE, "Mapped Device Relationship Information", "", _tree_get_obj }, -+ { DR_TABLE, "Mapped Device Table", "", _task_get_obj }, - { 0, "", "", NULL }, - }; - -@@ -1944,6 +2022,7 @@ - FIELD_F(TASK, NUM, "RAhead", 6, dm_read_ahead, "read_ahead", "Read ahead in sectors.") - - FIELD_F(INFO, STR, "Stat", 4, dm_info_status, "attr", "(L)ive, (I)nactive, (s)uspended, (r)ead-only, read-(w)rite.") -+FIELD_F(INFO, STR, "State", 1, dm_info_cleartext_status, "status", "State as cleartext.") - FIELD_F(INFO, STR, "Tables", 6, dm_info_table_loaded, "tables_loaded", "Which of the live and inactive table slots are filled.") - FIELD_F(INFO, STR, "Suspended", 9, dm_info_suspended, "suspended", "Whether the device is suspended.") - FIELD_F(INFO, STR, "Read-only", 9, dm_info_read_only, "readonly", "Whether the device is read-only or writeable.") -@@ -1954,6 +2033,11 @@ - FIELD_O(INFO, dm_info, NUM, "Targ", target_count, 4, int32, "segments", "Number of segments in live table, if present.") - FIELD_O(INFO, dm_info, NUM, "Event", event_nr, 6, uint32, "events", "Number of most recent event.") - -+FIELD_O(INFO, dm_info, NUM, "RO", read_only, 2, int, "read_only", "Read only.") -+FIELD_O(INFO, dm_info, NUM, "Ex", exists, 2, int, "exists", "Exists.") -+FIELD_O(INFO, dm_info, NUM, "Susp", suspended, 4, int, "suspended", "Suspended.") -+FIELD_O(INFO, dm_info, NUM, "tab_live", live_table, 8, int, "table_live", "Live table.") -+FIELD_O(INFO, dm_info, NUM, "tab_inact", inactive_table, 9, int, "table_inactive", "Inactive table.") - FIELD_O(DEPS, dm_deps, NUM, "#Devs", count, 5, int32, "device_count", "Number of devices used by this one.") - FIELD_F(TREE, STR, "DevNames", 8, dm_deps_names, "devs_used", "List of names of mapped devices used by this one.") - FIELD_F(DEPS, STR, "DevNos", 6, dm_deps, "devnos_used", "List of device numbers of devices used by this one.") -@@ -1961,6 +2045,7 @@ - FIELD_F(TREE, NUM, "#Refs", 5, dm_tree_parents_count, "device_ref_count", "Number of mapped devices referencing this one.") - FIELD_F(TREE, STR, "RefNames", 8, dm_tree_parents_names, "names_using_dev", "List of names of mapped devices using this one.") - FIELD_F(TREE, STR, "RefDevNos", 9, dm_tree_parents_devs, "devnos_using_dev", "List of device numbers of mapped devices using this one.") -+FIELD_F(TABLE, STR, "Targettypes", 32, dm_info_target_types, "target_types", "Used target types.") - {0, 0, 0, 0, "", "", NULL, NULL}, - /* *INDENT-ON* */ - }; -@@ -1971,13 +2056,15 @@ - #undef FIELD_F - - static const char *default_report_options = "name,major,minor,attr,open,segments,events,uuid"; -+static const char *default_export_options = "name,major,minor,status,read_only,exists,suspended,table_live,table_inactive,open,segments,events,uuid,target_types"; - - static int _report_init(struct command *c) - { -- char *options = (char *) default_report_options; -+ char *default_options = (char *) default_report_options; -+ char *options; - const char *keys = ""; - const char *separator = " "; -- int aligned = 1, headings = 1, buffered = 1, field_prefixes = 0; -+ int aligned = 1, headings = 1, buffered = 1, field_prefixes = 0, export = 0; - int quoted = 1, columns_as_rows = 0; - uint32_t flags = 0; - size_t len = 0; -@@ -2004,6 +2091,15 @@ - field_prefixes = 1; - } - -+ if (_switches[EXPORT_ARG]) { -+ default_options = (char *) default_export_options; -+ separator = "\n"; -+ aligned = 0; -+ headings = 0; -+ export = 1; -+ } -+ -+ options = default_options; - if (_switches[OPTIONS_ARG] && _string_args[OPTIONS_ARG]) { - if (*_string_args[OPTIONS_ARG] != '+') - options = _string_args[OPTIONS_ARG]; -@@ -2055,6 +2151,9 @@ - if (columns_as_rows) - flags |= DM_REPORT_OUTPUT_COLUMNS_AS_ROWS; - -+ if (export) -+ flags |= DM_REPORT_OUTPUT_EXPORT; -+ - if (!(_report = dm_report_init(&_report_type, - _report_types, _report_fields, - options, separator, flags, keys, NULL))) -@@ -2133,7 +2232,8 @@ - fprintf(out, "dmsetup [--version] [-v|--verbose [-v|--verbose ...]]\n" - " [-r|--readonly] [--noopencount] [--nolockfs]\n" - " [--readahead [+]|auto|none]\n" -- " [-c|-C|--columns] [-o ] [-O|--sort ]\n" -+ " [-c|-C|--columns] [-e|--export]\n" -+ " [-o ] [-O|--sort ]\n" - " [--nameprefixes] [--noheadings] [--separator ]\n\n"); - for (i = 0; _commands[i].name; i++) - fprintf(out, "\t%s %s\n", _commands[i].name, _commands[i].help); -@@ -2484,6 +2584,7 @@ - static struct option long_options[] = { - {"readonly", 0, &ind, READ_ONLY}, - {"columns", 0, &ind, COLS_ARG}, -+ {"export", 0, &ind, EXPORT_ARG}, - {"exec", 1, &ind, EXEC_ARG}, - {"force", 0, &ind, FORCE_ARG}, - {"gid", 1, &ind, GID_ARG}, -@@ -2566,12 +2667,16 @@ - - optarg = 0; - optind = OPTIND_INIT; -- while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCfGj:m:Mno:O:ru:Uv", -+ while ((ind = -1, c = GETOPTLONG_FN(*argc, *argv, "cCefGj:m:Mno:O:ru:Uv", - long_options, NULL)) != -1) { - if (c == ':' || c == '?') - return 0; - if (c == 'c' || c == 'C' || ind == COLS_ARG) - _switches[COLS_ARG]++; -+ if (c == 'e' || ind == EXPORT_ARG) { -+ _switches[EXPORT_ARG]++; -+ _switches[COLS_ARG]++; -+ } - if (c == 'f' || ind == FORCE_ARG) - _switches[FORCE_ARG]++; - if (c == 'r' || ind == READ_ONLY) -diff -Nuar --exclude '*.rej' --exclude '*.orig' device-mapper.1.02.27.orig/lib/libdevmapper.h device-mapper.1.02.27/lib/libdevmapper.h ---- device-mapper.1.02.27.orig/lib/libdevmapper.h 2008-06-24 15:53:48.000000000 -0700 -+++ device-mapper.1.02.27/lib/libdevmapper.h 2008-06-28 01:54:55.588111461 -0700 -@@ -742,6 +742,7 @@ - #define DM_REPORT_OUTPUT_FIELD_NAME_PREFIX 0x00000008 - #define DM_REPORT_OUTPUT_FIELD_UNQUOTED 0x00000010 - #define DM_REPORT_OUTPUT_COLUMNS_AS_ROWS 0x00000020 -+#define DM_REPORT_OUTPUT_EXPORT 0x00000040 - - struct dm_report *dm_report_init(uint32_t *report_types, - const struct dm_report_object_type *types, -diff -Nuar --exclude '*.rej' --exclude '*.orig' device-mapper.1.02.27.orig/lib/libdm-report.c device-mapper.1.02.27/lib/libdm-report.c ---- device-mapper.1.02.27.orig/lib/libdm-report.c 2008-06-24 17:10:36.000000000 -0700 -+++ device-mapper.1.02.27/lib/libdm-report.c 2008-06-28 01:56:39.778466634 -0700 -@@ -13,6 +13,7 @@ - * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - */ - -+#include - #include "libdevmapper.h" - #include "list.h" - #include "log.h" -@@ -808,6 +809,8 @@ - uint32_t align; - const char *repstr; - char buf[4096]; -+ const char *fname; -+ char tmp_char; - - if (rh->flags & DM_REPORT_OUTPUT_FIELD_NAME_PREFIX) { - if (!(field_id = strdup(rh->fields[field->props->field_num].id))) { -@@ -838,6 +841,25 @@ - return 0; - } - } -+ if (rh->flags & DM_REPORT_OUTPUT_EXPORT) { -+ fname = rh->fields[field->props->field_num].id; -+ if (!dm_pool_grow_object(rh->mem, "DM_", strlen("DM_"))) { -+ log_error("dm_report: Unable to extend output line"); -+ return 0; -+ } -+ while (fname && fname[0]) { -+ tmp_char = toupper(fname[0]); -+ if (!dm_pool_grow_object(rh->mem, &tmp_char, 1)) { -+ log_error("dm_report: Unable to extend output line"); -+ return 0; -+ } -+ fname++; -+ } -+ if (!dm_pool_grow_object(rh->mem, "=", strlen("="))) { -+ log_error("dm_report: Unable to extend output line"); -+ return 0; -+ } -+ } - - repstr = field->report_string; - width = field->props->width; diff --git a/sys-fs/device-mapper/files/device-mapper-1.02.28-asneeded.patch b/sys-fs/device-mapper/files/device-mapper-1.02.28-asneeded.patch deleted file mode 100644 index c5615eaf68ed..000000000000 --- a/sys-fs/device-mapper/files/device-mapper-1.02.28-asneeded.patch +++ /dev/null @@ -1,12 +0,0 @@ ---- device-mapper.1.02.28.orig/dmeventd/Makefile.in 2008-06-27 09:36:51.000000000 -0600 -+++ device-mapper.1.02.28/dmeventd/Makefile.in 2009-02-19 00:21:18.000000000 -0700 -@@ -31,8 +31,7 @@ - - include ../make.tmpl - --LDFLAGS += -ldl -ldevmapper -lpthread --CLDFLAGS += -ldl -ldevmapper -lpthread -+LIBS += -ldl -ldevmapper -lpthread - - dmeventd: $(LIB_SHARED) $(VERSIONED_SHLIB) dmeventd.o - $(CC) -o $@ dmeventd.o $(CFLAGS) $(LDFLAGS) \ diff --git a/sys-fs/device-mapper/files/device-mapper.conf-1.02.22-r3 b/sys-fs/device-mapper/files/device-mapper.conf-1.02.22-r3 deleted file mode 100644 index bc7a25158635..000000000000 --- a/sys-fs/device-mapper/files/device-mapper.conf-1.02.22-r3 +++ /dev/null @@ -1 +0,0 @@ -RC_AFTER="lvm" diff --git a/sys-fs/device-mapper/files/device-mapper.rc b/sys-fs/device-mapper/files/device-mapper.rc deleted file mode 100644 index 1b40ee51b7c3..000000000000 --- a/sys-fs/device-mapper/files/device-mapper.rc +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/files/device-mapper.rc,v 1.3 2008/02/01 12:39:47 flameeyes Exp $ - -depend() { - if [ -e /lib/librc.so ]; then - # on baselayout-1 this causes - # a dependency loop with checkroot (before *) - before checkroot root - fi -} - -start() { - if [ ! -e /lib/librc.so ]; then - eerror "The ${SVCNAME} init script is written for baselayout-2" - eerror "Please do not use it with baselayout-1" - return 1 - fi - - . /lib/rcscripts/addons/dm-start.sh -} - diff --git a/sys-fs/device-mapper/files/device-mapper.rc-1.02.22-r3 b/sys-fs/device-mapper/files/device-mapper.rc-1.02.22-r3 deleted file mode 100644 index 63b4eee6516c..000000000000 --- a/sys-fs/device-mapper/files/device-mapper.rc-1.02.22-r3 +++ /dev/null @@ -1,24 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/files/device-mapper.rc-1.02.22-r3,v 1.8 2008/12/18 21:52:25 cardoe Exp $ - -depend() { - # necessary for services when using baselayout-2 - # but conflict for baselayout-1 - if [ -e /etc/init.d/root ] ; then - after modules - before checkfs fsck - fi -} - -start() { - if [ ! -e /etc/init.d/root ] ; then - eerror "The ${SVCNAME} init script is written for baselayout-2" - eerror "Please do not use it with baselayout-1" - return 1 - fi - - start_addon dm -} - diff --git a/sys-fs/device-mapper/files/dm-start.sh b/sys-fs/device-mapper/files/dm-start.sh deleted file mode 100644 index d3d0287b2f58..000000000000 --- a/sys-fs/device-mapper/files/dm-start.sh +++ /dev/null @@ -1,86 +0,0 @@ -# /lib/rcscripts/addons/dm-start.sh: Setup DM volumes at boot -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/files/dm-start.sh,v 1.4 2007/05/21 14:05:37 cardoe Exp $ - -# char **get_new_dm_volumes(void) -# -# Return dmsetup commands to setup volumes -get_new_dm_volumes() { - local volume params - - # Filter comments and blank lines - grep -v -e '^[[:space:]]*\(#\|$\)' /etc/dmtab | \ - while read volume params ; do - # If it exists, skip it - dmvolume_exists "${volume%:}" && continue - # Assemble the command to run to create volume - echo "echo ${params} | /sbin/dmsetup create ${volume%:}" - done - - return 0 -} - -# int dmvolume_exists(volume) -# -# Return true if volume exists in DM table -dmvolume_exists() { - local x line volume=$1 - - [ -z "${volume}" ] && return 1 - - /sbin/dmsetup ls 2>/dev/null | \ - while read line ; do - for x in ${line} ; do - # the following conditonal return only breaks out - # of the while loop, as it is running in a pipe. - [ "${x}" = "${volume}" ] && return 1 - # We only want to check the volume name - break - done - done - - # if 1 was returned from the above loop, then indicate that - # volume exists - [ $? = 1 ] && return 0 - - # otherwise the loop exited normally and the volume does not - # exist - return 1 -} - -# int is_empty_dm_volume(volume) -# -# Return true if the volume exists in DM table, but is empty/non-valid -is_empty_dm_volume() { - local table volume=$1 - - set -- $(/sbin/dmsetup table 2>/dev/null | grep -e "^${volume}:") - [ "${volume}" = "$1" -a -z "$2" ] -} - -local x volume - -if [ -x /sbin/dmsetup -a -c /dev/mapper/control -a -f /etc/dmtab ] ; then - [ -n "$(get_new_dm_volumes)" ] && \ - einfo " Setting up device-mapper volumes:" - - get_new_dm_volumes | \ - while read x ; do - [ -n "${x}" ] || continue - - volume="${x##* }" - - ebegin " Creating volume: ${volume}" - if ! eval "${x}" >/dev/null 2>/dev/null ; then - eend 1 " Error creating volume: ${volume}" - # dmsetup still adds an empty volume in some cases, - # so lets remove it - is_empty_dm_volume "${volume}" && \ - /sbin/dmsetup remove "${volume}" 2>/dev/null - else - eend 0 - fi - done -fi - - -# vim:ts=4 diff --git a/sys-fs/device-mapper/files/dmtab b/sys-fs/device-mapper/files/dmtab deleted file mode 100644 index 96c6640675a7..000000000000 --- a/sys-fs/device-mapper/files/dmtab +++ /dev/null @@ -1,12 +0,0 @@ -#/etc/dmraid: config file for adding device-mapper volumes at boot -# $Header: /var/cvsroot/gentoo-x86/sys-fs/device-mapper/files/dmtab,v 1.1 2005/03/01 22:45:26 vapier Exp $ - -# Format: : -# Example: isw0: 0 312602976 striped 2 128 /dev/sda 0 /dev/sdb 0 -# -# Alternatively you can create all your volumes the first time, and just run: -# -# dmsetup table >> /etc/dmtab -# -# and verify that they are correct. - diff --git a/sys-fs/device-mapper/metadata.xml b/sys-fs/device-mapper/metadata.xml deleted file mode 100644 index 9b02d1fd8ae4..000000000000 --- a/sys-fs/device-mapper/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - -base-system -proxy-maintainers - - agk@redhat.com - Alasdair Kergon - Upstream Maintainer - - diff --git a/sys-fs/dmraid/dmraid-1.0.0_rc14.ebuild b/sys-fs/dmraid/dmraid-1.0.0_rc14.ebuild index eaa0c898ea7e..3a1350f4a2ef 100644 --- a/sys-fs/dmraid/dmraid-1.0.0_rc14.ebuild +++ b/sys-fs/dmraid/dmraid-1.0.0_rc14.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/sys-fs/dmraid/dmraid-1.0.0_rc14.ebuild,v 1.6 2012/05/24 02:51:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dmraid/dmraid-1.0.0_rc14.ebuild,v 1.7 2013/04/09 09:53:57 ssuominen Exp $ inherit linux-info flag-o-matic eutils @@ -16,8 +16,7 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="static selinux" -DEPEND="|| ( >=sys-fs/lvm2-2.02.45 - sys-fs/device-mapper ) +DEPEND=">=sys-fs/lvm2-2.02.45 selinux? ( sys-libs/libselinux sys-libs/libsepol )" S=${WORKDIR}/${PN}/${MY_PV} diff --git a/sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild b/sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild index 89fa79feca6e..b9b37898bc06 100644 --- a/sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild +++ b/sys-fs/dmraid/dmraid-1.0.0_rc15.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/sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild,v 1.5 2012/05/24 02:51:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dmraid/dmraid-1.0.0_rc15.ebuild,v 1.6 2013/04/09 09:53:57 ssuominen Exp $ inherit linux-info flag-o-matic eutils @@ -15,8 +15,7 @@ SLOT="0" KEYWORDS="~amd64 ppc ~x86" IUSE="static selinux" -DEPEND="|| ( >=sys-fs/lvm2-2.02.45 - sys-fs/device-mapper ) +DEPEND=">=sys-fs/lvm2-2.02.45 selinux? ( sys-libs/libselinux sys-libs/libsepol )" RDEPEND="${DEPEND}" diff --git a/sys-fs/dmraid/dmraid-1.0.0_rc16-r3.ebuild b/sys-fs/dmraid/dmraid-1.0.0_rc16-r3.ebuild index b00821ef6435..2dd5fcdf6b40 100644 --- a/sys-fs/dmraid/dmraid-1.0.0_rc16-r3.ebuild +++ b/sys-fs/dmraid/dmraid-1.0.0_rc16-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-fs/dmraid/dmraid-1.0.0_rc16-r3.ebuild,v 1.9 2013/02/02 23:12:24 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dmraid/dmraid-1.0.0_rc16-r3.ebuild,v 1.10 2013/04/09 09:53:57 ssuominen Exp $ EAPI=5 @@ -18,8 +18,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="dietlibc intel_led klibc led mini static" REQUIRED_USE="klibc? ( !dietlibc )" -RDEPEND="|| ( >=sys-fs/lvm2-2.02.45 - sys-fs/device-mapper ) +RDEPEND=">=sys-fs/lvm2-2.02.45 klibc? ( dev-libs/klibc ) dietlibc? ( dev-libs/dietlibc )" DEPEND="${RDEPEND} diff --git a/sys-fs/eudev/eudev-9999.ebuild b/sys-fs/eudev/eudev-9999.ebuild index 81ca5bebd8bd..c2ed383539e8 100644 --- a/sys-fs/eudev/eudev-9999.ebuild +++ b/sys-fs/eudev/eudev-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-fs/eudev/eudev-9999.ebuild,v 1.25 2013/04/08 01:35:57 blueness Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/eudev/eudev-9999.ebuild,v 1.26 2013/04/10 01:05:58 blueness Exp $ EAPI=5 @@ -14,7 +14,7 @@ then inherit git-2 else SRC_URI="http://dev.gentoo.org/~axs/${PN}/${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~x86" + KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86" fi DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace devfs)" @@ -22,7 +22,7 @@ HOMEPAGE="https://github.com/gentoo/eudev" LICENSE="LGPL-2.1 MIT GPL-2" SLOT="0" -IUSE="doc gudev hwdb kmod introspection legacy-libudev keymap +modutils +openrc rule-generator selinux static-libs" +IUSE="doc gudev hwdb kmod introspection legacy-libudev keymap +modutils +openrc +rule-generator selinux static-libs" RESTRICT="test" @@ -66,39 +66,42 @@ udev_check_KV() pkg_pretend() { - ewarn "As of 2013-01-29, eudev-9999 provides the new interface renaming" - ewarn "functionality, as described in the URL below:" - ewarn "http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames" - ewarn - ewarn "This functionality is enabled BY DEFAULT because eudev has no means of synchronizing" - ewarn "between the default or user-modified choice of sys-fs/udev. If you wish to disable" - ewarn "this new iface naming, please be sure that /etc/udev/rules.d/80-net-name-slot.rules" - ewarn "exists:" - ewarn "\ttouch /etc/udev/rules.d/80-net-name-slot.rules" - ewarn - ewarn "We are working on a better solution for the next beta release." - ewarn - if has_version "/dev/null | \ - while read line ; do - for x in ${line} ; do - # the following conditonal return only breaks out - # of the while loop, as it is running in a pipe. - [ "${x}" = "${volume}" ] && return 1 - # We only want to check the volume name - break - done - done - - # if 1 was returned from the above loop, then indicate that - # volume exists - [ $? = 1 ] && return 0 - - # otherwise the loop exited normally and the volume does not - # exist - return 1 -} - -# int is_empty_dm_volume(volume) -# -# Return true if the volume exists in DM table, but is empty/non-valid -is_empty_dm_volume() { - local table volume=$1 - - set -- $(/sbin/dmsetup table 2>/dev/null | grep -e "^${volume}:") - [ "${volume}" = "$1" -a -z "$2" ] -} - -local x volume - -if [ -x /sbin/dmsetup -a -c /dev/mapper/control -a -f /etc/dmtab ] ; then - [ -n "$(get_new_dm_volumes)" ] && \ - einfo " Setting up device-mapper volumes:" - - get_new_dm_volumes | \ - while read x ; do - [ -n "${x}" ] || continue - - volume="${x##* }" - - ebegin " Creating volume: ${volume}" - if ! eval "${x}" >/dev/null 2>/dev/null ; then - eend 1 " Error creating volume: ${volume}" - # dmsetup still adds an empty volume in some cases, - # so lets remove it - is_empty_dm_volume "${volume}" && \ - /sbin/dmsetup remove "${volume}" 2>/dev/null - else - eend 0 - fi - done -fi - - -# vim:ts=4 diff --git a/sys-fs/lvm2/files/dmeventd.initd-2.02.67-r1 b/sys-fs/lvm2/files/dmeventd.initd-2.02.67-r1 index 1b8ebe60a7ed..cad661d22e46 100644 --- a/sys-fs/lvm2/files/dmeventd.initd-2.02.67-r1 +++ b/sys-fs/lvm2/files/dmeventd.initd-2.02.67-r1 @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/dmeventd.initd-2.02.67-r1,v 1.1 2010/06/09 22:41:45 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/dmeventd.initd-2.02.67-r1,v 1.2 2013/04/09 11:00:26 ssuominen Exp $ depend() { # As of .67-r1, we call ALL lvm start/stop scripts with --sysinit, that diff --git a/sys-fs/lvm2/files/lvm-monitoring.initd-2.02.67-r2 b/sys-fs/lvm2/files/lvm-monitoring.initd-2.02.67-r2 index 0b67f331bfb7..6a41bb60e8fe 100644 --- a/sys-fs/lvm2/files/lvm-monitoring.initd-2.02.67-r2 +++ b/sys-fs/lvm2/files/lvm-monitoring.initd-2.02.67-r2 @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm-monitoring.initd-2.02.67-r2,v 1.3 2010/08/20 19:18:29 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm-monitoring.initd-2.02.67-r2,v 1.4 2013/04/09 11:00:26 ssuominen Exp $ # This script is based on upstream file # LVM2.2.02.67/scripts/lvm2_monitoring_init_red_hat.in diff --git a/sys-fs/lvm2/files/lvm.rc-2.02.51-r2 b/sys-fs/lvm2/files/lvm.rc-2.02.51-r2 deleted file mode 100644 index ca2084eeb64d..000000000000 --- a/sys-fs/lvm2/files/lvm.rc-2.02.51-r2 +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.51-r2,v 1.2 2010/05/01 21:26:33 robbat2 Exp $ - -depend() { - if [ -f /etc/init.d/sysfs ]; then - # on baselayout-1 this causes - # dependency-cycles with checkroot (before *) - before checkfs fsck - after modules device-mapper - fi - use dmeventd - after dmeventd -} - -run_addon() { - local f=/lib/rcscripts/addons/$1.sh - if [ -r "$f" ]; then - ( . "$f" ) - fi -} - -start() { - if [ ! -f /etc/init.d/sysfs ]; then - eerror "The $SVCNAME init-script is written for baselayout-2!" - eerror "Please do not use it with baselayout-1!". - return 1 - fi - - run_addon lvm-start -} - -stop() { - run_addon lvm-stop -} - -# vim:ts=4 diff --git a/sys-fs/lvm2/files/lvm.rc-2.02.67-r1 b/sys-fs/lvm2/files/lvm.rc-2.02.67-r1 deleted file mode 100644 index d4eafc1880c5..000000000000 --- a/sys-fs/lvm2/files/lvm.rc-2.02.67-r1 +++ /dev/null @@ -1,39 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.67-r1,v 1.1 2010/06/09 22:41:45 robbat2 Exp $ - -depend() { - if [ -f /etc/init.d/sysfs ]; then - # on baselayout-1 this causes - # dependency-cycles with checkroot (before *) - before checkfs fsck - after modules device-mapper - fi - # As of .67-r1, we call ALL lvm start/stop scripts with --sysinit, that - # means dmeventd is NOT notified, as it cannot be safely running - before dmeventd -} - -run_addon() { - local f=/lib/rcscripts/addons/$1.sh - if [ -r "$f" ]; then - ( . "$f" ) - fi -} - -start() { - if [ ! -f /etc/init.d/sysfs ]; then - eerror "The $SVCNAME init-script is written for baselayout-2!" - eerror "Please do not use it with baselayout-1!". - return 1 - fi - - run_addon lvm-start -} - -stop() { - run_addon lvm-stop -} - -# vim:ts=4 diff --git a/sys-fs/lvm2/files/lvm.rc-2.02.95-r2 b/sys-fs/lvm2/files/lvm.rc-2.02.95-r2 index a06aa0bbfee8..76d90f33a34f 100644 --- a/sys-fs/lvm2/files/lvm.rc-2.02.95-r2 +++ b/sys-fs/lvm2/files/lvm.rc-2.02.95-r2 @@ -1,7 +1,7 @@ #!/sbin/runscript -# 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/sys-fs/lvm2/files/lvm.rc-2.02.95-r2,v 1.1 2012/05/27 07:05:22 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm.rc-2.02.95-r2,v 1.2 2013/04/09 11:00:26 ssuominen Exp $ depend() { use dmeventd diff --git a/sys-fs/lvm2/files/lvm2-2.02.64-dmeventd-libs.patch b/sys-fs/lvm2/files/lvm2-2.02.64-dmeventd-libs.patch deleted file mode 100644 index 3a53639977ef..000000000000 --- a/sys-fs/lvm2/files/lvm2-2.02.64-dmeventd-libs.patch +++ /dev/null @@ -1,15 +0,0 @@ -X-Gentoo-Bug: 318513 -X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=318513 - -diff -ur LVM2.2.02.64/daemons/dmeventd/plugins/lvm2/Makefile.in LVM2.2.02.64.new/daemons/dmeventd/plugins/lvm2/Makefile.in ---- LVM2.2.02.64/daemons/dmeventd/plugins/lvm2/Makefile.in 2010-04-09 23:42:49.000000000 +0200 -+++ LVM2.2.02.64.new/daemons/dmeventd/plugins/lvm2/Makefile.in 2010-05-04 13:18:07.886389742 +0200 -@@ -24,7 +24,7 @@ - - include $(top_builddir)/make.tmpl - --LIBS += @LVM2CMD_LIB@ -ldevmapper $(PTHREAD_LIBS) -+LIBS += @LVM2CMD_LIB@ -ldevmapper -ldevmapper-event $(PTHREAD_LIBS) - - install_lvm2: install_lib_shared - diff --git a/sys-fs/lvm2/files/lvm2-2.02.70-locale-muck.patch b/sys-fs/lvm2/files/lvm2-2.02.70-locale-muck.patch deleted file mode 100644 index fcde672cfdbc..000000000000 --- a/sys-fs/lvm2/files/lvm2-2.02.70-locale-muck.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- make.tmpl.in.orig 2010-08-04 10:10:17.000000000 +0300 -+++ make.tmpl.in 2010-08-04 10:10:33.000000000 +0300 -@@ -360,7 +360,7 @@ - ( cat $(srcdir)/.exported_symbols; \ - if test x$(EXPORTED_HEADER) != x; then \ - $(CC) -E -P $(EXPORTED_HEADER) | \ -- $(SED) -ne "/^typedef|}/!s/.*[ \*]\(\$(EXPORTED_FN_PREFIX)_[a-z0-9_]*\)(.*/\1/p"; \ -+ LC_ALL=C $(SED) -ne "/^typedef|}/!s/.*[ \*]\(\$(EXPORTED_FN_PREFIX)_[a-z0-9_]*\)(.*/\1/p"; \ - fi \ - ) > $@ - diff --git a/sys-fs/lvm2/files/lvm2-2.02.72-dynamic-static-ldflags.patch b/sys-fs/lvm2/files/lvm2-2.02.72-dynamic-static-ldflags.patch deleted file mode 100644 index f1824b1abfb7..000000000000 --- a/sys-fs/lvm2/files/lvm2-2.02.72-dynamic-static-ldflags.patch +++ /dev/null @@ -1,67 +0,0 @@ -X-Gentoo-Bug: 332905 -X-Patch-URL: https://bugs.gentoo.org/attachment.cgi?id=243283&action=view -X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=332905 - -diff -ur LVM2.2.02.72.orig/configure.in LVM2.2.02.72/configure.in ---- LVM2.2.02.72.orig/configure.in 2010-07-28 16:55:42.000000000 +0300 -+++ LVM2.2.02.72/configure.in 2010-08-17 03:00:24.000000000 +0300 -@@ -35,6 +35,7 @@ - CLDNOWHOLEARCHIVE="-Wl,-no-whole-archive" - LDDEPS="$LDDEPS .export.sym" - LDFLAGS="$LDFLAGS -Wl,--export-dynamic" -+ STATIC_LDFLAGS="-Wl,--no-export-dynamic" - LIB_SUFFIX=so - DEVMAPPER=yes - ODIRECT=yes -@@ -1282,6 +1283,7 @@ - AC_SUBST(SELINUX_PC) - AC_SUBST(SNAPSHOTS) - AC_SUBST(STATICDIR) -+AC_SUBST(STATIC_LDFLAGS) - AC_SUBST(STATIC_LINK) - AC_SUBST(TESTING) - AC_SUBST(UDEV_LIBS) -diff -ur LVM2.2.02.72.orig/daemons/dmeventd/Makefile.in LVM2.2.02.72/daemons/dmeventd/Makefile.in ---- LVM2.2.02.72.orig/daemons/dmeventd/Makefile.in 2010-05-14 16:36:56.000000000 +0300 -+++ LVM2.2.02.72/daemons/dmeventd/Makefile.in 2010-08-17 03:00:24.000000000 +0300 -@@ -61,7 +61,7 @@ - $(DL_LIBS) $(LVMLIBS) $(LIBS) -rdynamic - - dmeventd.static: $(LIB_STATIC) dmeventd.o $(interfacebuilddir)/libdevmapper.a -- $(CC) $(CFLAGS) $(LDFLAGS) -static -L. -L$(interfacebuilddir) -o $@ \ -+ $(CC) $(CFLAGS) $(LDFLAGS) $(STATIC_LDFLAGS) -static -L. -L$(interfacebuilddir) -o $@ \ - dmeventd.o $(DL_LIBS) $(LVMLIBS) $(LIBS) $(STATIC_LIBS) - - ifeq ("@PKGCONFIG@", "yes") -diff -ur LVM2.2.02.72.orig/make.tmpl.in LVM2.2.02.72/make.tmpl.in ---- LVM2.2.02.72.orig/make.tmpl.in 2010-07-20 17:38:44.000000000 +0300 -+++ LVM2.2.02.72/make.tmpl.in 2010-08-17 03:00:24.000000000 +0300 -@@ -38,6 +38,7 @@ - CLDFLAGS += @CLDFLAGS@ - LDDEPS += @LDDEPS@ - LDFLAGS += @LDFLAGS@ -+STATIC_LDFLAGS += @STATIC_LDFLAGS@ - LIB_SUFFIX = @LIB_SUFFIX@ - LVMINTERNAL_LIBS = -llvm-internal $(DL_LIBS) - DL_LIBS = @DL_LIBS@ -diff -ur LVM2.2.02.72.orig/tools/Makefile.in LVM2.2.02.72/tools/Makefile.in ---- LVM2.2.02.72.orig/tools/Makefile.in 2010-06-25 21:23:10.000000000 +0300 -+++ LVM2.2.02.72/tools/Makefile.in 2010-08-17 03:01:07.000000000 +0300 -@@ -126,7 +126,7 @@ - -o $@ dmsetup.o -ldevmapper $(LIBS) - - dmsetup.static: dmsetup.o $(interfacebuilddir)/libdevmapper.a -- $(CC) $(CFLAGS) $(LDFLAGS) -static -L$(interfacebuilddir) \ -+ $(CC) $(CFLAGS) $(LDFLAGS) $(STATIC_LDFLAGS) -static -L$(interfacebuilddir) \ - -o $@ dmsetup.o -ldevmapper $(STATIC_LIBS) $(LIBS) - - all: device-mapper -@@ -136,7 +136,7 @@ - $(LVMLIBS) $(READLINE_LIBS) $(LIBS) -rdynamic - - lvm.static: $(OBJECTS) lvm-static.o $(top_builddir)/lib/liblvm-internal.a $(interfacebuilddir)/libdevmapper.a -- $(CC) $(CFLAGS) $(LDFLAGS) -static -L$(interfacebuilddir) -o $@ \ -+ $(CC) $(CFLAGS) $(LDFLAGS) $(STATIC_LDFLAGS) -static -L$(interfacebuilddir) -o $@ \ - $(OBJECTS) lvm-static.o $(LVMLIBS) $(STATIC_LIBS) $(LIBS) - - liblvm2cmd.a: $(top_builddir)/lib/liblvm-internal.a $(OBJECTS) lvmcmdlib.o lvm2cmd.o diff --git a/sys-fs/lvm2/files/lvm2-2.02.73-asneeded.patch b/sys-fs/lvm2/files/lvm2-2.02.73-asneeded.patch deleted file mode 100644 index ec0f7f6c6a95..000000000000 --- a/sys-fs/lvm2/files/lvm2-2.02.73-asneeded.patch +++ /dev/null @@ -1,15 +0,0 @@ -Index: LVM2.2.02.73/tools/Makefile.in -=================================================================== ---- LVM2.2.02.73.orig/tools/Makefile.in -+++ LVM2.2.02.73/tools/Makefile.in -@@ -149,8 +149,8 @@ liblvm2cmd-static.a: $(top_builddir)/lib - - liblvm2cmd.$(LIB_SUFFIX): liblvm2cmd.a $(LDDEPS) - $(CC) -shared -Wl,-soname,$@.$(LIB_VERSION) \ -- $(CFLAGS) $(CLDFLAGS) -o $@ $(LVMLIBS) $(LIBS) \ -- @CLDWHOLEARCHIVE@ liblvm2cmd.a @CLDNOWHOLEARCHIVE@ -+ $(CFLAGS) $(CLDFLAGS) -o $@ \ -+ @CLDWHOLEARCHIVE@ liblvm2cmd.a @CLDNOWHOLEARCHIVE@ $(LVMLIBS) $(LIBS) - - liblvm2cmd.$(LIB_SUFFIX).$(LIB_VERSION): liblvm2cmd.$(LIB_SUFFIX) - $(LN_S) -f $< $@ diff --git a/sys-fs/lvm2/files/lvm2-2.02.73-locale-muck.patch b/sys-fs/lvm2/files/lvm2-2.02.73-locale-muck.patch deleted file mode 100644 index f34c412f247b..000000000000 --- a/sys-fs/lvm2/files/lvm2-2.02.73-locale-muck.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -Nuar LVM2.2.02.73.orig//make.tmpl.in LVM2.2.02.73//make.tmpl.in ---- LVM2.2.02.73.orig//make.tmpl.in 2010-08-16 17:49:26.000000000 +0000 -+++ LVM2.2.02.73//make.tmpl.in 2010-08-20 19:20:43.237413988 +0000 -@@ -362,7 +362,7 @@ - ( cat $(srcdir)/.exported_symbols; \ - if test x$(EXPORTED_HEADER) != x; then \ - $(CC) -E -P $(INCLUDES) $(DEFS) $(CFLAGS) $(EXPORTED_HEADER) | \ -- $(SED) -ne "/^typedef|}/!s/.*[ \*]\(\$(EXPORTED_FN_PREFIX)_[a-z0-9_]*\)(.*/\1/p"; \ -+ LC_ALL=C $(SED) -ne "/^typedef|}/!s/.*[ \*]\(\$(EXPORTED_FN_PREFIX)_[a-z0-9_]*\)(.*/\1/p"; \ - fi \ - ) > $@ - diff --git a/sys-fs/lvm2/files/lvm2-2.02.84-udev-pkgconfig.patch b/sys-fs/lvm2/files/lvm2-2.02.84-udev-pkgconfig.patch deleted file mode 100644 index d371ddd343f6..000000000000 --- a/sys-fs/lvm2/files/lvm2-2.02.84-udev-pkgconfig.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -Nuar LVM2.2.02.84.orig/configure.in LVM2.2.02.84/configure.in ---- LVM2.2.02.84.orig/configure.in 2011-02-04 22:17:54.000000000 +0000 -+++ LVM2.2.02.84/configure.in 2011-04-09 23:42:27.134617541 +0000 -@@ -803,9 +803,18 @@ - AC_MSG_RESULT($UDEV_SYNC) - - if test x$UDEV_SYNC = xyes; then -- AC_CHECK_LIB(udev, udev_queue_get_udev_is_active, -- [UDEV_PC="libudev"; UDEV_LIBS="-ludev"], -- [AC_MSG_ERROR([bailing out... libudev library is required])]) -+ if test x$PKGCONFIG_INIT != x1; then -+ pkg_config_init -+ fi -+ PKG_CHECK_MODULES(UDEV, libudev, [UDEV_PC="libudev" HAVE_UDEV=yes], -+ [NOTFOUND=0 -+ AC_CHECK_HEADERS(libudev.h,,$bailout) -+ check_lib_no_libs udev udev_queue_get_udev_is_active -+ if test $NOTFOUND = 0; then -+ AC_CHECK_LIB(udev, udev_queue_get_udev_is_active, -+ [UDEV_PC="libudev"; UDEV_LIBS="-ludev"], -+ [AC_MSG_ERROR([bailing out... libudev library is required])]) -+ fi]) - AC_DEFINE([UDEV_SYNC_SUPPORT], 1, [Define to 1 to enable synchronisation with udev processing.]) - fi - diff --git a/sys-fs/lvm2/files/lvm2-start.sh b/sys-fs/lvm2/files/lvm2-start.sh deleted file mode 100755 index ccb5e951f8a5..000000000000 --- a/sys-fs/lvm2/files/lvm2-start.sh +++ /dev/null @@ -1,37 +0,0 @@ -# /lib/rcscripts/addons/lvm-start.sh -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm2-start.sh,v 1.7 2007/10/04 16:06:22 cardoe Exp $ - -dm_in_proc() { - local retval=0 - for x in devices misc ; do - grep -qs 'device-mapper' /proc/${x} - retval=$((${retval} + $?)) - done - return ${retval} -} - -# LVM support for /usr, /home, /opt .... -# This should be done *before* checking local -# volumes, or they never get checked. - -# NOTE: Add needed modules for LVM or RAID, etc -# to /etc/modules.autoload if needed -if [ -z "${CDBOOT}" -a -x /sbin/vgscan ] ; then - if [ -e /proc/modules ] && ! dm_in_proc ; then - modprobe dm-mod 2>/dev/null - fi - - if [ -d /proc/lvm ] || dm_in_proc ; then - ebegin "Setting up the Logical Volume Manager" - #still echo stderr for debugging - /sbin/vgscan --mknodes --ignorelockingfailure >/dev/null - if [ -x /sbin/vgchange ] && \ - [ -f /etc/lvmtab -o -d /etc/lvm ] - then - /sbin/vgchange --ignorelockingfailure -a y >/dev/null - fi - eend $? "Failed to setup the LVM" - fi -fi - -# vim:ts=4 diff --git a/sys-fs/lvm2/files/lvm2-start.sh-2.02.49-r3 b/sys-fs/lvm2/files/lvm2-start.sh-2.02.49-r3 deleted file mode 100755 index ae3ab0526e18..000000000000 --- a/sys-fs/lvm2/files/lvm2-start.sh-2.02.49-r3 +++ /dev/null @@ -1,42 +0,0 @@ -# /lib/rcscripts/addons/lvm-start.sh -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm2-start.sh-2.02.49-r3,v 1.1 2009/08/07 21:02:28 robbat2 Exp $ - -config='global { locking_dir = "/dev/.lvm" }' - -dm_in_proc() { - local retval=0 - for x in devices misc ; do - grep -qs 'device-mapper' /proc/${x} - retval=$((${retval} + $?)) - done - return ${retval} -} - -# LVM support for /usr, /home, /opt .... -# This should be done *before* checking local -# volumes, or they never get checked. - -# NOTE: Add needed modules for LVM or RAID, etc -# to /etc/modules.autoload if needed -if [ -z "${CDBOOT}" -a -x /sbin/vgscan ] ; then - if [ -e /proc/modules ] && ! dm_in_proc ; then - modprobe dm-mod 2>/dev/null - fi - - if [ -d /proc/lvm ] || dm_in_proc ; then - ebegin "Setting up the Logical Volume Manager" - #still echo stderr for debugging - # Extra PV find pass because some devices might not have been available until very recently - /sbin/pvscan --config "${config}" >/dev/null - # Now make the nodes - /sbin/vgscan --mknodes --config "${config}" >/dev/null - if [ -x /sbin/vgchange ] && \ - [ -f /etc/lvmtab -o -d /etc/lvm ] - then - /sbin/vgchange --config "${config}" -a y >/dev/null - fi - eend $? "Failed to setup the LVM" - fi -fi - -# vim:ts=4 diff --git a/sys-fs/lvm2/files/lvm2-start.sh-2.02.67-r1 b/sys-fs/lvm2/files/lvm2-start.sh-2.02.67-r1 deleted file mode 100644 index 7cded06142b5..000000000000 --- a/sys-fs/lvm2/files/lvm2-start.sh-2.02.67-r1 +++ /dev/null @@ -1,42 +0,0 @@ -# /lib/rcscripts/addons/lvm-start.sh -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm2-start.sh-2.02.67-r1,v 1.2 2012/03/27 03:20:56 robbat2 Exp $ - -config='global { locking_dir = "/dev/.lvm" }' - -dm_in_proc() { - local retval=0 - for x in devices misc ; do - grep -qs 'device-mapper' /proc/${x} - retval=$((${retval} + $?)) - done - return ${retval} -} - -# LVM support for /usr, /home, /opt .... -# This should be done *before* checking local -# volumes, or they never get checked. - -# NOTE: Add needed modules for LVM or RAID, etc -# to /etc/modules.autoload if needed -if [ -z "${CDBOOT}" -a -x /sbin/vgscan ] ; then - if [ -e /proc/modules ] && ! dm_in_proc ; then - modprobe dm-mod 2>/dev/null - fi - - if [ -d /proc/lvm ] || dm_in_proc ; then - ebegin "Setting up the Logical Volume Manager" - #still echo stderr for debugging - # Extra PV find pass because some devices might not have been available until very recently - /sbin/pvscan --config "${config}" >/dev/null - # Now make the nodes - /sbin/vgscan --mknodes --config "${config}" >/dev/null - if [ -x /sbin/vgchange ] && \ - [ -f /etc/lvmtab -o -d /etc/lvm ] - then - /sbin/vgchange --sysinit --config "${config}" -a ly >/dev/null - fi - eend $? "Failed to setup the LVM" - fi -fi - -# vim:ts=4 ft=sh noet: diff --git a/sys-fs/lvm2/files/lvm2-start.sh-2.02.95 b/sys-fs/lvm2/files/lvm2-start.sh-2.02.95 deleted file mode 100644 index 979ea4742364..000000000000 --- a/sys-fs/lvm2/files/lvm2-start.sh-2.02.95 +++ /dev/null @@ -1,46 +0,0 @@ -# /lib/rcscripts/addons/lvm-start.sh -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm2-start.sh-2.02.95,v 1.1 2012/03/27 03:20:56 robbat2 Exp $ - -config='global { locking_dir = "/dev/.lvm" }' - -dm_in_proc() { - local retval=0 - for x in devices misc ; do - grep -qs 'device-mapper' /proc/${x} - retval=$((${retval} + $?)) - done - return ${retval} -} - -# LVM support for /usr, /home, /opt .... -# This should be done *before* checking local -# volumes, or they never get checked. - -# NOTE: Add needed modules for LVM or RAID, etc -# to /etc/modules.autoload if needed -for lvm_path in /bin/lvm /sbin/lvm ; do - [ -x "$lvm_path" ] && break -done -if [ -z "${CDBOOT}" -a -x "$lvm_path" ] ; then - if [ -e /proc/modules ] && ! dm_in_proc ; then - modprobe dm-mod 2>/dev/null - fi - if [ -d /proc/lvm ] || dm_in_proc ; then - ebegin "Setting up the Logical Volume Manager" - #still echo stderr for debugging - lvm_commands="#! ${lvm_path} --config '${config}'\n" - # Extra PV find pass because some devices might not have been available until very recently - lvm_commands="${lvm_commands}pvscan\n" - # Now make the nodes - lvm_commands="${lvm_commands}vgscan --mknodes\n" - # And turn them on! - lvm_commands="${lvm_commands}vgchange --sysinit -a ly\n" - # Order of this is important, have to work around dash and LVM readline - printf "%b\n" "${lvm_commands}" | $lvm_path /proc/self/fd/0 --config "${config}" >/dev/null - eend $? "Failed to setup the LVM" - fi -else - eerror "Cannot find lvm binary in /sbin or /bin!" -fi - -# vim:ts=4 ft=sh noet: diff --git a/sys-fs/lvm2/files/lvm2-stop.sh b/sys-fs/lvm2/files/lvm2-stop.sh deleted file mode 100755 index c1380fe5a731..000000000000 --- a/sys-fs/lvm2/files/lvm2-stop.sh +++ /dev/null @@ -1,61 +0,0 @@ -# /lib/rcscripts/addons/lvm-stop.sh -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm2-stop.sh,v 1.6 2007/10/04 16:06:22 cardoe Exp $ - -# Stop LVM2 -if [ -x /sbin/vgchange ] && \ - [ -x /sbin/lvdisplay ] && \ - [ -x /sbin/vgdisplay ] && \ - [ -x /sbin/lvchange ] && \ - [ -f /etc/lvmtab -o -d /etc/lvm ] && \ - [ -d /proc/lvm -o "`grep device-mapper /proc/misc 2>/dev/null`" ] -then - einfo "Shutting down the Logical Volume Manager" - # If these commands fail it is not currently an issue - # as the system is going down anyway based on the current LVM - # functionality as described in this forum thread - #https://www.redhat.com/archives/linux-lvm/2001-May/msg00523.html - - LOGICAL_VOLUMES=`lvdisplay |grep "LV Name"|sed -e 's/.*LV Name\s*\(.*\)/\1/'|sort` - VOLUME_GROUPS=`vgdisplay |grep "VG Name"|sed -e 's/.*VG Name\s*\(.*\)/\1/'|sort` - for x in ${LOGICAL_VOLUMES} - do - LV_IS_ACTIVE=`lvdisplay ${x}|grep "# open"|awk '{print $3}'` - if [ "${LV_IS_ACTIVE}" = 0 ] - then - ebegin " Shutting Down logical volume: ${x} " - lvchange -an --ignorelockingfailure -P ${x} >/dev/null - eend $? - fi - done - - for x in ${VOLUME_GROUPS} - do - VG_HAS_ACTIVE_LV=`vgdisplay ${x}|grep "Open LV"|sed -e 's/.*Open LV\s*\(.*\)/\1/'` - if [ "${VG_HAS_ACTIVE_LV}" = 0 ] - then - ebegin " Shutting Down volume group: ${x} " - vgchange -an --ignorelockingfailure -P ${x} >/dev/null - eend - fi - done - - for x in ${LOGICAL_VOLUMES} - do - LV_IS_ACTIVE=`lvdisplay ${x}|grep "# open"|sed -e 's/.*# open\s*\(.*\)/\1/'` - if [ "${LV_IS_ACTIVE}" = 1 ] - then - - ROOT_DEVICE=`mount|grep " / "|awk '{print $1}'` - MOUNTED_DEVICE=${x} - [ -L ${ROOT_DEVICE} ] && ROOT_DEVICE="`/bin/readlink ${ROOT_DEVICE}`" - [ -L ${x} ] && MOUNTED_DEVICE="`/bin/readlink ${x}`" - if [ ! ${ROOT_DEVICE} = ${MOUNTED_DEVICE} ] - then - ewarn " Unable to shutdown: ${x} " - fi - fi - done - einfo "Finished Shutting down the Logical Volume Manager" -fi - -# vim:ts=4 diff --git a/sys-fs/lvm2/files/lvm2-stop.sh-2.02.49-r3 b/sys-fs/lvm2/files/lvm2-stop.sh-2.02.49-r3 deleted file mode 100755 index 83f1884e6f74..000000000000 --- a/sys-fs/lvm2/files/lvm2-stop.sh-2.02.49-r3 +++ /dev/null @@ -1,67 +0,0 @@ -# /lib/rcscripts/addons/lvm-stop.sh -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm2-stop.sh-2.02.49-r3,v 1.1 2009/08/07 21:02:28 robbat2 Exp $ - -config='global { locking_dir = "/dev/.lvm" }' - -# Stop LVM2 -if [ -x /sbin/vgchange ] && \ - [ -x /sbin/lvdisplay ] && \ - [ -x /sbin/vgdisplay ] && \ - [ -x /sbin/lvchange ] && \ - [ -f /etc/lvmtab -o -d /etc/lvm ] && \ - [ -d /proc/lvm -o "`grep device-mapper /proc/misc 2>/dev/null`" ] -then - einfo "Shutting down the Logical Volume Manager" - # If these commands fail it is not currently an issue - # as the system is going down anyway based on the current LVM - # functionality as described in this forum thread - #https://www.redhat.com/archives/linux-lvm/2001-May/msg00523.html - - LOGICAL_VOLUMES=`/sbin/lvdisplay --config "${config}" |grep "LV Name"|sed -e 's/.*LV Name\s*\(.*\)/\1/'|sort` - VOLUME_GROUPS=`/sbin/vgdisplay --config "${config}" |grep "VG Name"|sed -e 's/.*VG Name\s*\(.*\)/\1/'|sort` - for x in ${LOGICAL_VOLUMES} - do - LV_IS_ACTIVE=`/sbin/lvdisplay --config "${config}" ${x}|grep "# open"|awk '{print $3}'` - if [ "${LV_IS_ACTIVE}" = 0 ] - then - ebegin " Shutting Down logical volume: ${x} " - /sbin/lvchange -an --config "${config}" -P ${x} >/dev/null - eend $? - fi - done - - for x in ${VOLUME_GROUPS} - do - VG_HAS_ACTIVE_LV=`/sbin/vgdisplay --config "${config}" ${x}|grep "Open LV"|sed -e 's/.*Open LV\s*\(.*\)/\1/'` - if [ "${VG_HAS_ACTIVE_LV}" = 0 ] - then - ebegin " Shutting Down volume group: ${x} " - /sbin/vgchange -an --config "${config}" -P ${x} >/dev/null - eend - fi - done - - for x in ${LOGICAL_VOLUMES} - do - LV_IS_ACTIVE=`/sbin/lvdisplay --config "${config}" ${x}|grep "# open"|sed -e 's/.*# open\s*\(.*\)/\1/'` - if [ "${LV_IS_ACTIVE}" = 1 ] - then - if type mountinfo >/dev/null 2>&1; then - ROOT_DEVICE=`mountinfo -t /` - else - ROOT_DEVICE=`mount | awk '{if($3 == "/" && $1 != "rootfs"){print $1}}'` - fi - - MOUNTED_DEVICE=${x} - [ -L ${ROOT_DEVICE} ] && ROOT_DEVICE="`/bin/readlink ${ROOT_DEVICE}`" - [ -L ${x} ] && MOUNTED_DEVICE="`/bin/readlink ${x}`" - if [ ! ${ROOT_DEVICE} = ${MOUNTED_DEVICE} ] - then - ewarn " Unable to shutdown: ${x} " - fi - fi - done - einfo "Finished Shutting down the Logical Volume Manager" -fi - -# vim:ts=4 diff --git a/sys-fs/lvm2/files/lvm2-stop.sh-2.02.67-r1 b/sys-fs/lvm2/files/lvm2-stop.sh-2.02.67-r1 deleted file mode 100644 index a03823eaa8a4..000000000000 --- a/sys-fs/lvm2/files/lvm2-stop.sh-2.02.67-r1 +++ /dev/null @@ -1,31 +0,0 @@ -# /lib/rcscripts/addons/lvm-stop.sh -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/files/lvm2-stop.sh-2.02.67-r1,v 1.1 2010/06/09 22:41:45 robbat2 Exp $ - -config='global { locking_dir = "/dev/.lvm" }' - -# Stop LVM2 -if [ -x /sbin/vgs ] && \ - [ -x /sbin/vgchange ] && \ - [ -x /sbin/lvchange ] && \ - [ -f /etc/lvmtab -o -d /etc/lvm ] && \ - [ -d /proc/lvm -o "`grep device-mapper /proc/misc 2>/dev/null`" ] -then - einfo "Shutting down the Logical Volume Manager" - - VGS=$(/sbin/vgs --config "${config}" -o vg_name --noheadings --nosuffix 2> /dev/null) - - if [ "$VGS" ] - then - ebegin " Shutting Down logical volumes " - /sbin/lvchange --config "${config}" --sysinit -a ln ${VGS} - eend $? - - ebegin " Shutting Down volume groups " - /sbin/vgchange --config "${config}" --sysinit -a ln - eend $? - fi - - einfo "Finished Shutting down the Logical Volume Manager" -fi - -# vim:ts=4 diff --git a/sys-fs/lvm2/lvm2-2.01.13.ebuild b/sys-fs/lvm2/lvm2-2.01.13.ebuild deleted file mode 100644 index 595e46aa0630..000000000000 --- a/sys-fs/lvm2/lvm2-2.01.13.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.01.13.ebuild,v 1.7 2012/07/05 08:56:14 ssuominen Exp $ - -DESCRIPTION="User-land utilities for LVM2 (device-mapper) software." -HOMEPAGE="http://sources.redhat.com/lvm2/" -SRC_URI="ftp://sources.redhat.com/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz - ftp://sources.redhat.com/pub/lvm2/old/${PN/lvm/LVM}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" -IUSE="readline nolvmstatic" - -DEPEND=">=sys-fs/device-mapper-1.01" -RDEPEND="${DEPEND} - !sys-fs/lvm-user" - -S="${WORKDIR}/${PN/lvm/LVM}.${PV}" - -src_compile() { - # Static compile of lvm2 so that the install described in the handbook works - # http://www.gentoo.org/doc/en/lvm2.xml - # fixes http://bugs.gentoo.org/show_bug.cgi?id=84463 - local myconf - use nolvmstatic || myconf="--enable-static_link" - - # disable O_DIRECT support on hppa, breaks pv detection (#99532) - use hppa && myconf="${myconf} --disable-o_direct" - - econf $(use_enable readline) ${myconf} - emake || die "compile problem" -} - -src_install() { - einstall sbindir="${D}/sbin" staticdir="${D}/sbin" confdir="${D}/etc/lvm" - mv -f "${D}/sbin/lvm.static" "${D}/sbin/lvm" - - dodoc COPYING* INSTALL README VERSION WHATS_NEW doc/*.{conf,c,txt} - insinto /lib/rcscripts/addons - newins "${FILESDIR}"/lvm2-start.sh lvm-start.sh - newins "${FILESDIR}"/lvm2-stop.sh lvm-stop.sh -} diff --git a/sys-fs/lvm2/lvm2-2.02.67-r2.ebuild b/sys-fs/lvm2/lvm2-2.02.67-r2.ebuild deleted file mode 100644 index 0382e78551c6..000000000000 --- a/sys-fs/lvm2/lvm2-2.02.67-r2.ebuild +++ /dev/null @@ -1,257 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.02.67-r2.ebuild,v 1.12 2012/12/11 21:48:10 ssuominen Exp $ - -EAPI=2 -inherit eutils multilib toolchain-funcs autotools linux-info - -DESCRIPTION="User-land utilities for LVM2 (device-mapper) software." -HOMEPAGE="http://sources.redhat.com/lvm2/" -SRC_URI="ftp://sources.redhat.com/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz - ftp://sources.redhat.com/pub/lvm2/old/${PN/lvm/LVM}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" - -IUSE="readline +static clvm cman +lvm1 selinux" - -DEPEND_COMMON="!!sys-fs/device-mapper - clvm? ( =sys-cluster/dlm-2* - cman? ( =sys-cluster/cman-2* ) ) - /$(get_libdir) - #X#mv -f "${D}"/usr/lib/lib*.so* "${D}"/$(get_libdir) - #X#[[ "$(get_libdir)" != "lib" ]] && \ - #X# mv "${D}"/usr/$(get_libdir)/lib*.so* "${D}"/$(get_libdir) - #X## .a -> /usr/$(get_libdir) - #X#[[ "$(get_libdir)" != "lib" ]] && \ - #X# mv -f "${D}"/usr/lib/lib*.a "${D}"/usr/$(get_libdir) - #X## The upstream symlinks are borked. lets rebuild them instead. - #X#find "${D}"/{usr,}/{lib,$(get_libdir)} -type l \ - #X# | xargs rm -f 2>/dev/null - #X#for i in "${D}"/$(get_libdir)/*.so.* ; do - #X# b="${i//*\/}" o="${b/.so.*/.so}" - #X# ln -s "${b}" "${D}/$(get_libdir)/${o}" - #X#done - #X## Now enable building properly - #X#for i in \ - #X# libdevmapper-event{,-lvm2{,mirror,snapshot}} \ - #X# libdevmapper \ - #X# liblvm2{format1,snapshot,cmd,app} \ - #X# ; do - #X# gen_usr_ldscript ${i}.so || die - #X#done - - dodoc README VERSION WHATS_NEW doc/*.{conf,c,txt} - insinto /$(get_libdir)/rcscripts/addons - newins "${FILESDIR}"/lvm2-start.sh-2.02.67-r1 lvm-start.sh || die - newins "${FILESDIR}"/lvm2-stop.sh-2.02.67-r1 lvm-stop.sh || die - newinitd "${FILESDIR}"/lvm.rc-2.02.67-r1 lvm || die - newinitd "${FILESDIR}"/lvm-monitoring.initd-2.02.67-r2 lvm-monitoring || die - newconfd "${FILESDIR}"/lvm.confd-2.02.28-r2 lvm || die - if use clvm; then - newinitd "${FILESDIR}"/clvmd.rc-2.02.39 clvmd || die - newconfd "${FILESDIR}"/clvmd.confd-2.02.39 clvmd || die - fi - - # move shared libs to /lib(64) - dolib.a libdm/ioctl/libdevmapper.a || die "dolib.a libdevmapper.a" - #gen_usr_ldscript libdevmapper.so - - dosbin "${S}"/scripts/lvm2create_initrd/lvm2create_initrd - doman "${S}"/scripts/lvm2create_initrd/lvm2create_initrd.8 - newdoc "${S}"/scripts/lvm2create_initrd/README README.lvm2create_initrd - - insinto /etc - doins "${FILESDIR}"/dmtab - insinto /$(get_libdir)/rcscripts/addons - doins "${FILESDIR}"/dm-start.sh - - # Device mapper stuff - newinitd "${FILESDIR}"/device-mapper.rc-2.02.67-r1 device-mapper || die - newconfd "${FILESDIR}"/device-mapper.conf-1.02.22-r3 device-mapper || die - - newinitd "${FILESDIR}"/dmeventd.initd-2.02.67-r1 dmeventd || die - dolib.a daemons/dmeventd/libdevmapper-event.a \ - || die "dolib.a libdevmapper-event.a" - #gen_usr_ldscript libdevmapper-event.so - - #insinto /etc/udev/rules.d/ - #newins "${FILESDIR}"/64-device-mapper.rules-2.02.56-r3 64-device-mapper.rules || die - - # do not rely on /lib -> /libXX link - sed -e "s-/lib/rcscripts/-/$(get_libdir)/rcscripts/-" -i "${D}"/etc/init.d/* - - elog "USE flag nocman is deprecated and replaced" - elog "with the cman USE flag." - elog "" - elog "USE flags clvm and cman are masked" - elog "by default and need to be unmasked to use them" - elog "" - elog "If you are using genkernel and root-on-LVM, rebuild the initramfs." -} - -pkg_postinst() { - elog "lvm volumes are no longer automatically created for" - elog "baselayout-2 users. If you are using baselayout-2, be sure to" - elog "run: # rc-update add lvm boot" - elog "Do NOT add it if you are using baselayout-1 still." -} - -src_test() { - einfo "Testcases disabled because of device-node mucking" - einfo "If you want them, compile the package and see ${S}/tests" -} diff --git a/sys-fs/lvm2/lvm2-2.02.73-r1.ebuild b/sys-fs/lvm2/lvm2-2.02.73-r1.ebuild deleted file mode 100644 index 31b849b2f838..000000000000 --- a/sys-fs/lvm2/lvm2-2.02.73-r1.ebuild +++ /dev/null @@ -1,271 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.02.73-r1.ebuild,v 1.14 2012/12/11 21:48:10 ssuominen Exp $ - -EAPI=2 -inherit eutils multilib toolchain-funcs autotools linux-info - -DESCRIPTION="User-land utilities for LVM2 (device-mapper) software." -HOMEPAGE="http://sources.redhat.com/lvm2/" -SRC_URI="ftp://sources.redhat.com/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz - ftp://sources.redhat.com/pub/lvm2/old/${PN/lvm/LVM}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" - -IUSE="readline +static clvm cman +lvm1 selinux" - -DEPEND_COMMON="!!sys-fs/device-mapper - readline? ( sys-libs/readline ) - clvm? ( =sys-cluster/dlm-2* - cman? ( =sys-cluster/cman-2* ) ) - /$(get_libdir) - #X#mv -f "${D}"/usr/lib/lib*.so* "${D}"/$(get_libdir) - #X#[[ "$(get_libdir)" != "lib" ]] && \ - #X# mv "${D}"/usr/$(get_libdir)/lib*.so* "${D}"/$(get_libdir) - #X## .a -> /usr/$(get_libdir) - #X#[[ "$(get_libdir)" != "lib" ]] && \ - #X# mv -f "${D}"/usr/lib/lib*.a "${D}"/usr/$(get_libdir) - #X## The upstream symlinks are borked. lets rebuild them instead. - #X#find "${D}"/{usr,}/{lib,$(get_libdir)} -type l \ - #X# | xargs rm -f 2>/dev/null - #X#for i in "${D}"/$(get_libdir)/*.so.* ; do - #X# b="${i//*\/}" o="${b/.so.*/.so}" - #X# ln -s "${b}" "${D}/$(get_libdir)/${o}" - #X#done - #X## Now enable building properly - #X#for i in \ - #X# libdevmapper-event{,-lvm2{,mirror,snapshot}} \ - #X# libdevmapper \ - #X# liblvm2{format1,snapshot,cmd,app} \ - #X# ; do - #X# gen_usr_ldscript ${i}.so || die - #X#done - - dodoc README VERSION WHATS_NEW doc/*.{conf,c,txt} - insinto /$(get_libdir)/rcscripts/addons - newins "${FILESDIR}"/lvm2-start.sh-2.02.67-r1 lvm-start.sh || die - newins "${FILESDIR}"/lvm2-stop.sh-2.02.67-r1 lvm-stop.sh || die - newinitd "${FILESDIR}"/lvm.rc-2.02.67-r1 lvm || die - newinitd "${FILESDIR}"/lvm-monitoring.initd-2.02.67-r2 lvm-monitoring || die - newconfd "${FILESDIR}"/lvm.confd-2.02.28-r2 lvm || die - if use clvm; then - newinitd "${FILESDIR}"/clvmd.rc-2.02.39 clvmd || die - newconfd "${FILESDIR}"/clvmd.confd-2.02.39 clvmd || die - fi - - # move shared libs to /lib(64) - dolib.a libdm/ioctl/libdevmapper.a || die "dolib.a libdevmapper.a" - #gen_usr_ldscript libdevmapper.so - - dosbin "${S}"/scripts/lvm2create_initrd/lvm2create_initrd - doman "${S}"/scripts/lvm2create_initrd/lvm2create_initrd.8 - newdoc "${S}"/scripts/lvm2create_initrd/README README.lvm2create_initrd - - insinto /etc - doins "${FILESDIR}"/dmtab - insinto /$(get_libdir)/rcscripts/addons - doins "${FILESDIR}"/dm-start.sh - - # Device mapper stuff - newinitd "${FILESDIR}"/device-mapper.rc-2.02.67-r1 device-mapper || die - newconfd "${FILESDIR}"/device-mapper.conf-1.02.22-r3 device-mapper || die - - newinitd "${FILESDIR}"/dmeventd.initd-2.02.67-r1 dmeventd || die - dolib.a daemons/dmeventd/libdevmapper-event.a \ - || die "dolib.a libdevmapper-event.a" - #gen_usr_ldscript libdevmapper-event.so - - #insinto /etc/udev/rules.d/ - #newins "${FILESDIR}"/64-device-mapper.rules-2.02.56-r3 64-device-mapper.rules || die - - # do not rely on /lib -> /libXX link - sed -e "s-/lib/rcscripts/-/$(get_libdir)/rcscripts/-" -i "${D}"/etc/init.d/* - - elog "USE flag nocman is deprecated and replaced" - elog "with the cman USE flag." - elog "" - elog "USE flags clvm and cman are masked" - elog "by default and need to be unmasked to use them" - elog "" - elog "If you are using genkernel and root-on-LVM, rebuild the initramfs." -} - -pkg_postinst() { - elog "lvm volumes are no longer automatically created for" - elog "baselayout-2 users. If you are using baselayout-2, be sure to" - elog "run: # rc-update add lvm boot" - elog "Do NOT add it if you are using baselayout-1 still." -} - -src_test() { - einfo "Testcases disabled because of device-node mucking" - einfo "If you want them, compile the package and see ${S}/tests" -} diff --git a/sys-fs/lvm2/lvm2-2.02.73.ebuild b/sys-fs/lvm2/lvm2-2.02.73.ebuild deleted file mode 100644 index 9dcebf8933ad..000000000000 --- a/sys-fs/lvm2/lvm2-2.02.73.ebuild +++ /dev/null @@ -1,267 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.02.73.ebuild,v 1.11 2012/12/11 21:48:10 ssuominen Exp $ - -EAPI=2 -inherit eutils multilib toolchain-funcs autotools linux-info - -DESCRIPTION="User-land utilities for LVM2 (device-mapper) software." -HOMEPAGE="http://sources.redhat.com/lvm2/" -SRC_URI="ftp://sources.redhat.com/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz - ftp://sources.redhat.com/pub/lvm2/old/${PN/lvm/LVM}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 s390 sh sparc x86" - -IUSE="readline +static clvm cman +lvm1 selinux" - -DEPEND_COMMON="!!sys-fs/device-mapper - clvm? ( =sys-cluster/dlm-2* - cman? ( =sys-cluster/cman-2* ) ) - /$(get_libdir) - #X#mv -f "${D}"/usr/lib/lib*.so* "${D}"/$(get_libdir) - #X#[[ "$(get_libdir)" != "lib" ]] && \ - #X# mv "${D}"/usr/$(get_libdir)/lib*.so* "${D}"/$(get_libdir) - #X## .a -> /usr/$(get_libdir) - #X#[[ "$(get_libdir)" != "lib" ]] && \ - #X# mv -f "${D}"/usr/lib/lib*.a "${D}"/usr/$(get_libdir) - #X## The upstream symlinks are borked. lets rebuild them instead. - #X#find "${D}"/{usr,}/{lib,$(get_libdir)} -type l \ - #X# | xargs rm -f 2>/dev/null - #X#for i in "${D}"/$(get_libdir)/*.so.* ; do - #X# b="${i//*\/}" o="${b/.so.*/.so}" - #X# ln -s "${b}" "${D}/$(get_libdir)/${o}" - #X#done - #X## Now enable building properly - #X#for i in \ - #X# libdevmapper-event{,-lvm2{,mirror,snapshot}} \ - #X# libdevmapper \ - #X# liblvm2{format1,snapshot,cmd,app} \ - #X# ; do - #X# gen_usr_ldscript ${i}.so || die - #X#done - - dodoc README VERSION WHATS_NEW doc/*.{conf,c,txt} - insinto /$(get_libdir)/rcscripts/addons - newins "${FILESDIR}"/lvm2-start.sh-2.02.67-r1 lvm-start.sh || die - newins "${FILESDIR}"/lvm2-stop.sh-2.02.67-r1 lvm-stop.sh || die - newinitd "${FILESDIR}"/lvm.rc-2.02.67-r1 lvm || die - newinitd "${FILESDIR}"/lvm-monitoring.initd-2.02.67-r2 lvm-monitoring || die - newconfd "${FILESDIR}"/lvm.confd-2.02.28-r2 lvm || die - if use clvm; then - newinitd "${FILESDIR}"/clvmd.rc-2.02.39 clvmd || die - newconfd "${FILESDIR}"/clvmd.confd-2.02.39 clvmd || die - fi - - # move shared libs to /lib(64) - dolib.a libdm/ioctl/libdevmapper.a || die "dolib.a libdevmapper.a" - #gen_usr_ldscript libdevmapper.so - - dosbin "${S}"/scripts/lvm2create_initrd/lvm2create_initrd - doman "${S}"/scripts/lvm2create_initrd/lvm2create_initrd.8 - newdoc "${S}"/scripts/lvm2create_initrd/README README.lvm2create_initrd - - insinto /etc - doins "${FILESDIR}"/dmtab - insinto /$(get_libdir)/rcscripts/addons - doins "${FILESDIR}"/dm-start.sh - - # Device mapper stuff - newinitd "${FILESDIR}"/device-mapper.rc-2.02.67-r1 device-mapper || die - newconfd "${FILESDIR}"/device-mapper.conf-1.02.22-r3 device-mapper || die - - newinitd "${FILESDIR}"/dmeventd.initd-2.02.67-r1 dmeventd || die - dolib.a daemons/dmeventd/libdevmapper-event.a \ - || die "dolib.a libdevmapper-event.a" - #gen_usr_ldscript libdevmapper-event.so - - #insinto /etc/udev/rules.d/ - #newins "${FILESDIR}"/64-device-mapper.rules-2.02.56-r3 64-device-mapper.rules || die - - # do not rely on /lib -> /libXX link - sed -e "s-/lib/rcscripts/-/$(get_libdir)/rcscripts/-" -i "${D}"/etc/init.d/* - - elog "USE flag nocman is deprecated and replaced" - elog "with the cman USE flag." - elog "" - elog "USE flags clvm and cman are masked" - elog "by default and need to be unmasked to use them" - elog "" - elog "If you are using genkernel and root-on-LVM, rebuild the initramfs." -} - -pkg_postinst() { - elog "lvm volumes are no longer automatically created for" - elog "baselayout-2 users. If you are using baselayout-2, be sure to" - elog "run: # rc-update add lvm boot" - elog "Do NOT add it if you are using baselayout-1 still." -} - -src_test() { - einfo "Testcases disabled because of device-node mucking" - einfo "If you want them, compile the package and see ${S}/tests" -} diff --git a/sys-fs/lvm2/lvm2-2.02.88.ebuild b/sys-fs/lvm2/lvm2-2.02.88.ebuild deleted file mode 100644 index a3a3d1ce69e7..000000000000 --- a/sys-fs/lvm2/lvm2-2.02.88.ebuild +++ /dev/null @@ -1,255 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/lvm2/lvm2-2.02.88.ebuild,v 1.16 2012/12/10 20:41:45 axs Exp $ - -EAPI=3 -inherit eutils multilib toolchain-funcs autotools linux-info - -DESCRIPTION="User-land utilities for LVM2 (device-mapper) software." -HOMEPAGE="http://sources.redhat.com/lvm2/" -SRC_URI="ftp://sources.redhat.com/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz - ftp://sources.redhat.com/pub/lvm2/old/${PN/lvm/LVM}.${PV}.tgz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~x86-linux" - -IUSE="readline +static +static-libs clvm cman +lvm1 selinux" - -DEPEND_COMMON="!!sys-fs/device-mapper - readline? ( sys-libs/readline ) - clvm? ( =sys-cluster/dlm-2* - cman? ( =sys-cluster/cman-2* ) ) - /libXX link - sed -e "s-/lib/rcscripts/-/$(get_libdir)/rcscripts/-" -i "${ED}"/etc/init.d/* - - elog "USE flag nocman is deprecated and replaced" - elog "with the cman USE flag." - elog "" - elog "USE flags clvm and cman are masked" - elog "by default and need to be unmasked to be used" - elog "" - elog "If you are using genkernel and root-on-LVM, rebuild the initramfs." -} - -pkg_postinst() { - elog "lvm volumes are no longer automatically created for" - elog "baselayout-2 users. If you are using baselayout-2, be sure to" - elog "run: # rc-update add lvm boot" - elog "Do NOT add it if you are still using baselayout-1." -} - -src_test() { - einfo "Testcases disabled because of device-node mucking" - einfo "If you want them, compile the package and see ${S}/tests" -} diff --git a/sys-fs/lvm2/metadata.xml b/sys-fs/lvm2/metadata.xml index 580a532c8b09..62eb34345634 100644 --- a/sys-fs/lvm2/metadata.xml +++ b/sys-fs/lvm2/metadata.xml @@ -1,7 +1,6 @@ - proxy-maintainers robbat2@gentoo.org Robin H. Johnson @@ -19,7 +18,6 @@ Allow users to build clustered lvm2 Cman support for clustered lvm Allow users to build lvm2 with lvm1 support - Allow users to build lvm2 dynamically Support for thin volumes diff --git a/sys-fs/multipath-tools/multipath-tools-0.4.8-r1.ebuild b/sys-fs/multipath-tools/multipath-tools-0.4.8-r1.ebuild index 38b2afe3c2ed..75e9a77e1aac 100644 --- a/sys-fs/multipath-tools/multipath-tools-0.4.8-r1.ebuild +++ b/sys-fs/multipath-tools/multipath-tools-0.4.8-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/sys-fs/multipath-tools/multipath-tools-0.4.8-r1.ebuild,v 1.8 2012/12/11 10:07:21 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/multipath-tools/multipath-tools-0.4.8-r1.ebuild,v 1.9 2013/04/09 10:12:33 ssuominen Exp $ EAPI=2 inherit eutils toolchain-funcs @@ -14,11 +14,8 @@ SLOT="0" KEYWORDS="amd64 ~arm ppc ppc64 x86" IUSE="" -RDEPEND="|| ( - >=sys-fs/lvm2-2.02.45 - >=sys-fs/device-mapper-1.00.19-r1 - ) - virtual/udev +RDEPEND=">=sys-fs/lvm2-2.02.45 + >=virtual/udev-171 dev-libs/libaio" DEPEND="${RDEPEND}" diff --git a/sys-fs/multipath-tools/multipath-tools-0.4.9-r5.ebuild b/sys-fs/multipath-tools/multipath-tools-0.4.9-r5.ebuild index 1fad3b0589eb..903d5371588e 100644 --- a/sys-fs/multipath-tools/multipath-tools-0.4.9-r5.ebuild +++ b/sys-fs/multipath-tools/multipath-tools-0.4.9-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-fs/multipath-tools/multipath-tools-0.4.9-r5.ebuild,v 1.10 2013/01/06 11:12:09 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/multipath-tools/multipath-tools-0.4.9-r5.ebuild,v 1.11 2013/04/09 10:12:33 ssuominen Exp $ EAPI=4 inherit base eutils toolchain-funcs udev @@ -14,11 +14,8 @@ SLOT="0" KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ppc64 ~sparc x86" IUSE="" -RDEPEND="|| ( - >=sys-fs/lvm2-2.02.45 - >=sys-fs/device-mapper-1.00.19-r1 - ) - virtual/udev +RDEPEND=">=sys-fs/lvm2-2.02.45 + >=virtual/udev-171 dev-libs/libaio sys-libs/readline ! "${T}"/40-gentoo.rules + # Gentoo specific usb group + SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", GROUP="usb" + # Keep this for Linux 2.6.32 kernels with accept4() support like .60 wrt #457868 + SUBSYSTEM=="mem", KERNEL=="null|zero|full|random|urandom", MODE="0666" + EOF + + # Remove requirements for gettext and intltool wrt bug #443028 + if ! has_version dev-util/intltool && ! [[ ${PV} = 9999* ]]; then + sed -i \ + -e '/INTLTOOL_APPLIED_VERSION=/s:=.*:=0.40.0:' \ + -e '/XML::Parser perl module is required for intltool/s|^|:|' \ + configure || die + eval export INTLTOOL_{EXTRACT,MERGE,UPDATE}=/bin/true + eval export {MSG{FMT,MERGE},XGETTEXT}=/bin/true + fi + + # apply user patches + epatch_user + + # compile with older versions of gcc #451110 + version_is_at_least 4.6 $(gcc-version) || \ + sed -i 's:static_assert:alsdjflkasjdfa:' src/shared/macro.h + + # change rules back to group uucp instead of dialout for now wrt #454556 + sed -e 's/GROUP="dialout"/GROUP="uucp"/' \ + -i rules/*.rules \ + || die "failed to change group dialout to uucp" + + if [[ ! -e configure ]]; then + if use doc; then + gtkdocize --docdir docs || die "gtkdocize failed" + else + echo 'EXTRA_DIST =' > docs/gtk-doc.make + fi + eautoreconf + else + check_default_rules + elibtoolize + fi + + if ! use elibc_glibc; then #443030 + echo '#define secure_getenv(x) NULL' >> config.h.in + sed -i -e '/error.*secure_getenv/s:.*:#define secure_getenv(x) NULL:' src/shared/missing.h || die + fi + + # link udevd(8) to systemd-udevd.service(8) manpage + echo '.so systemd-udevd.service.8' > "${T}"/udevd.8 +} + +src_configure() { + tc-export CC #463846 + use keymap || export ac_cv_path_GPERF=true #452760 + + local econf_args + + econf_args=( + ac_cv_search_cap_init= + ac_cv_header_sys_capability_h=yes + DBUS_CFLAGS=' ' + DBUS_LIBS=' ' + --bindir=/bin + --docdir=/usr/share/doc/${PF} + --libdir=/usr/$(get_libdir) + --with-html-dir=/usr/share/doc/${PF}/html + --with-rootprefix= + --with-rootlibdir=/$(get_libdir) + --with-bashcompletiondir=/usr/share/bash-completion + --without-python + --disable-audit + --disable-coredump + --disable-hostnamed + --disable-ima + --disable-libcryptsetup + --disable-localed + --disable-logind + --disable-myhostname + --disable-nls + --disable-pam + --disable-quotacheck + --disable-readahead + --enable-split-usr + --disable-tcpwrap + --disable-timedated + --disable-xz + --disable-polkit + $(use_enable acl) + $(use_enable doc gtk-doc) + $(use_enable gudev) + $(use_enable keymap) + $(use_enable kmod) + $(use_enable selinux) + $(use_enable static-libs static) + ) + if use introspection; then + econf_args+=( + --enable-introspection=$(usex introspection) + ) + fi + if use firmware-loader; then + econf_args+=( + --with-firmware-path="/lib/firmware/updates:/lib/firmware" + ) + fi + econf "${econf_args[@]}" +} + +src_compile() { + echo 'BUILT_SOURCES: $(BUILT_SOURCES)' > "${T}"/Makefile.extra + emake -f Makefile -f "${T}"/Makefile.extra BUILT_SOURCES + local targets=( + libudev.la + systemd-udevd + udevadm + ata_id + cdrom_id + collect + scsi_id + v4l_id + accelerometer + mtd_probe + man/udev.7 + man/udevadm.8 + man/systemd-udevd.8 + man/systemd-udevd.service.8 + ) + use keymap && targets+=( keymap ) + use gudev && targets+=( libgudev-1.0.la ) + + emake "${targets[@]}" + if use doc; then + emake -C docs/libudev + use gudev && emake -C docs/gudev + fi +} + +src_install() { + local lib_LTLIBRARIES="libudev.la" \ + pkgconfiglib_DATA="src/libudev/libudev.pc" + + local targets=( + install-libLTLIBRARIES + install-includeHEADERS + install-libgudev_includeHEADERS + install-binPROGRAMS + install-rootlibexecPROGRAMS + install-udevlibexecPROGRAMS + install-dist_udevconfDATA + install-dist_udevhomeSCRIPTS + install-dist_udevkeymapDATA + install-dist_udevkeymapforcerelDATA + install-dist_udevrulesDATA + install-girDATA + install-man7 + install-man8 + install-pkgconfiglibDATA + install-sharepkgconfigDATA + install-typelibsDATA + install-dist_docDATA + libudev-install-hook + install-directories-hook + install-dist_bashcompletionDATA + ) + + if use gudev; then + lib_LTLIBRARIES+=" libgudev-1.0.la" + pkgconfiglib_DATA+=" src/gudev/gudev-1.0.pc" + fi + + # add final values of variables: + targets+=( + rootlibexec_PROGRAMS=systemd-udevd + bin_PROGRAMS=udevadm + lib_LTLIBRARIES="${lib_LTLIBRARIES}" + MANPAGES="man/udev.7 man/udevadm.8 \ + man/systemd-udevd.service.8" + MANPAGES_ALIAS="man/systemd-udevd.8" + pkgconfiglib_DATA="${pkgconfiglib_DATA}" + INSTALL_DIRS='$(sysconfdir)/udev/rules.d \ + $(sysconfdir)/udev/hwdb.d' + dist_bashcompletion_DATA="shell-completion/bash/udevadm" + ) + emake -j1 DESTDIR="${D}" "${targets[@]}" + if use doc; then + emake -C docs/libudev DESTDIR="${D}" install + use gudev && emake -C docs/gudev DESTDIR="${D}" install + fi + dodoc TODO + + prune_libtool_files --all + rm -f \ + "${D}"/lib/udev/rules.d/99-systemd.rules \ + "${D}"/usr/share/doc/${PF}/LICENSE.* + + # see src_prepare() for content of these files + insinto /lib/udev/rules.d + doins "${T}"/40-gentoo.rules + doman "${T}"/udevd.8 + + # install udevadm compatibility symlink + dosym {../bin,sbin}/udevadm + + # install udevd to /sbin and remove empty and redudant directory + # /lib/systemd because systemd is installed to /usr wrt #462750 + mv "${D}"/{lib/systemd/systemd-,sbin/}udevd || die + rm -r "${D}"/lib/systemd +} + +pkg_preinst() { + local htmldir + for htmldir in gudev libudev; do + if [[ -d ${ROOT}usr/share/gtk-doc/html/${htmldir} ]]; then + rm -rf "${ROOT}"usr/share/gtk-doc/html/${htmldir} + fi + if [[ -d ${D}/usr/share/doc/${PF}/html/${htmldir} ]]; then + dosym ../../doc/${PF}/html/${htmldir} \ + /usr/share/gtk-doc/html/${htmldir} + fi + done + preserve_old_lib /{,usr/}$(get_libdir)/libudev$(get_libname 0) +} + +pkg_postinst() { + mkdir -p "${ROOT}"run + + # "losetup -f" is confused if there is an empty /dev/loop/, Bug #338766 + # So try to remove it here (will only work if empty). + rmdir "${ROOT}"dev/loop 2>/dev/null + if [[ -d ${ROOT}dev/loop ]]; then + ewarn "Please make sure your remove /dev/loop," + ewarn "else losetup may be confused when looking for unused devices." + fi + + # people want reminders, I'll give them reminders. Odds are they will + # just ignore them anyway... + + # 64-device-mapper.rules is related to sys-fs/device-mapper which we block + # in favor of sys-fs/lvm2 + old_dm_rules=${ROOT}etc/udev/rules.d/64-device-mapper.rules + if [[ -f ${old_dm_rules} ]]; then + rm -f "${old_dm_rules}" + einfo "Removed unneeded file ${old_dm_rules}" + fi + + local fstab="${ROOT}"etc/fstab dev path fstype rest + while read -r dev path fstype rest; do + if [[ ${path} == /dev && ${fstype} != devtmpfs ]]; then + ewarn "You need to edit your /dev line in ${fstab} to have devtmpfs" + ewarn "filesystem. Otherwise udev won't be able to boot." + ewarn "See, http://bugs.gentoo.org/453186" + fi + done < "${fstab}" + + if [[ -d ${ROOT}usr/lib/udev ]]; then + ewarn + ewarn "Please re-emerge all packages on your system which install" + ewarn "rules and helpers in /usr/lib/udev. They should now be in" + ewarn "/lib/udev." + ewarn + ewarn "One way to do this is to run the following command:" + ewarn "emerge -av1 \$(qfile -q -S -C /usr/lib/udev)" + ewarn "Note that qfile can be found in app-portage/portage-utils" + fi + + local old_net_name="${ROOT}"etc/udev/rules.d/80-net-name-slot.rules + if [[ -f ${old_net_name} ]]; then + local old_net_sum=bebf4bd1b6b668e9ff34a3999aa6ff32 + MD5=$(md5sum < "${old_net_name}") + MD5=${MD5/ -/} + if [[ ${MD5} == ${old_net_sum} ]]; then + ewarn "Removing unmodified file ${old_net_name} from old udev installation to enable" + ewarn "the new predictable network interface naming." + rm -f "${old_net_name}" + fi + fi + + local old_cd_rules="${ROOT}"etc/udev/rules.d/70-persistent-cd.rules + local old_net_rules="${ROOT}"etc/udev/rules.d/70-persistent-net.rules + for old_rules in "${old_cd_rules}" "${old_net_rules}"; do + if [[ -f ${old_rules} ]]; then + ewarn + ewarn "File ${old_rules} is from old udev installation but if you still use it," + ewarn "rename it to something else starting with 70- to silence this deprecation" + ewarn "warning." + fi + done + + if has_version sys-apps/biosdevname; then + ewarn + ewarn "You have sys-apps/biosdevname installed which has been deprecated" + ewarn "in favor of the predictable network interface names." + fi + + ewarn + ewarn "The new predictable network interface names are used by default, see:" + ewarn "http://www.freedesktop.org/wiki/Software/systemd/PredictableNetworkInterfaceNames" + ewarn + ewarn "Example command to get the information for the new interface name before booting" + ewarn "(replace with, for example, eth0):" + ewarn "# udevadm test-builtin net_id /sys/class/net/ 2> /dev/null" + ewarn + ewarn "You can use kernel commandline net.ifnames=0 to disable this feature." + + ewarn + ewarn "You need to restart udev as soon as possible to make the upgrade go" + ewarn "into effect." + ewarn "The method you use to do this depends on your init system." + + preserve_old_lib_notify /{,usr/}$(get_libdir)/libudev$(get_libname 0) + + elog + elog "For more information on udev on Gentoo, upgrading, writing udev rules, and" + elog " fixing known issues visit:" + elog " http://wiki.gentoo.org/wiki/Udev/upgrade" + elog " http://www.gentoo.org/doc/en/udev-guide.xml" + + # Update hwdb database in case the format is changed by udev version. + if use hwdb && has_version 'sys-apps/hwids[udev]'; then + udevadm hwdb --update --root="${ROOT%/}" + fi +} diff --git a/sys-fs/udev/udev-9999.ebuild b/sys-fs/udev/udev-9999.ebuild index 5ae9e8ed7a21..f14adca6c32b 100644 --- a/sys-fs/udev/udev-9999.ebuild +++ b/sys-fs/udev/udev-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-fs/udev/udev-9999.ebuild,v 1.221 2013/04/04 12:53:32 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev/udev-9999.ebuild,v 1.222 2013/04/10 07:15:33 ssuominen Exp $ EAPI=5 @@ -40,7 +40,7 @@ COMMON_DEPEND=">=sys-apps/util-linux-2.20 acl? ( sys-apps/acl ) gudev? ( >=dev-libs/glib-2 ) introspection? ( >=dev-libs/gobject-introspection-1.31.1 ) - kmod? ( >=sys-apps/kmod-12 ) + kmod? ( >=sys-apps/kmod-13 ) selinux? ( >=sys-libs/libselinux-2.1.9 ) !=sys-devel/make-3.82-r4 virtual/os-headers virtual/pkgconfig ! "${T}"/Makefile.extra emake -f Makefile -f "${T}"/Makefile.extra BUILT_SOURCES - local pretargets=( - libsystemd-shared.la - libudev-private.la - libudev.la - ) local targets=( + libudev.la systemd-udevd udevadm ata_id @@ -272,7 +269,6 @@ src_compile() { use keymap && targets+=( keymap ) use gudev && targets+=( libgudev-1.0.la ) - emake "${pretargets[@]}" emake "${targets[@]}" if use doc; then emake -C docs/libudev diff --git a/sys-kernel/dracut/dracut-014-r3.ebuild b/sys-kernel/dracut/dracut-014-r3.ebuild index b12de6c97e16..1a717d770a8a 100644 --- a/sys-kernel/dracut/dracut-014-r3.ebuild +++ b/sys-kernel/dracut/dracut-014-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-kernel/dracut/dracut-014-r3.ebuild,v 1.8 2013/01/05 19:14:01 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-014-r3.ebuild,v 1.9 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -46,7 +46,7 @@ IUSE="debug selinux ${IUSE_DRACUT_MODULES}" RESTRICT="test" NETWORK_DEPS=">=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2" -DM_DEPS="|| ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 )" +DM_DEPS=">=sys-fs/lvm2-2.02.33" RDEPEND=" app-arch/cpio diff --git a/sys-kernel/dracut/dracut-018-r3.ebuild b/sys-kernel/dracut/dracut-018-r3.ebuild index 9ecf696c9d85..4070f7c19baa 100644 --- a/sys-kernel/dracut/dracut-018-r3.ebuild +++ b/sys-kernel/dracut/dracut-018-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-kernel/dracut/dracut-018-r3.ebuild,v 1.5 2013/01/05 19:14:01 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-018-r3.ebuild,v 1.6 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -71,7 +71,7 @@ RDEPEND=" !>=sys-fs/udev-186 debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/dracut/dracut-019-r6.ebuild b/sys-kernel/dracut/dracut-019-r6.ebuild index ffd7a817817f..9a2f07cec01f 100644 --- a/sys-kernel/dracut/dracut-019-r6.ebuild +++ b/sys-kernel/dracut/dracut-019-r6.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/dracut/dracut-019-r6.ebuild,v 1.6 2013/04/02 14:16:51 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-019-r6.ebuild,v 1.7 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -71,7 +71,7 @@ RDEPEND=" virtual/udev debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/dracut/dracut-022-r6.ebuild b/sys-kernel/dracut/dracut-022-r6.ebuild index 90b7341ee839..7c4abcaf0a75 100644 --- a/sys-kernel/dracut/dracut-022-r6.ebuild +++ b/sys-kernel/dracut/dracut-022-r6.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/dracut/dracut-022-r6.ebuild,v 1.6 2013/04/02 14:16:51 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-022-r6.ebuild,v 1.7 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -70,7 +70,7 @@ RDEPEND="${CDEPEND} >=sys-apps/util-linux-2.20 debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/dracut/dracut-023-r4.ebuild b/sys-kernel/dracut/dracut-023-r4.ebuild index 4f30761a361d..5104cc9624e0 100644 --- a/sys-kernel/dracut/dracut-023-r4.ebuild +++ b/sys-kernel/dracut/dracut-023-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/sys-kernel/dracut/dracut-023-r4.ebuild,v 1.4 2013/04/02 14:16:51 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-023-r4.ebuild,v 1.5 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -76,7 +76,7 @@ RDEPEND="${CDEPEND} >=sys-apps/util-linux-2.21 debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/dracut/dracut-024-r4.ebuild b/sys-kernel/dracut/dracut-024-r4.ebuild index c9f4186a8a19..e3392ca249ba 100644 --- a/sys-kernel/dracut/dracut-024-r4.ebuild +++ b/sys-kernel/dracut/dracut-024-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/sys-kernel/dracut/dracut-024-r4.ebuild,v 1.4 2013/04/02 14:16:51 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-024-r4.ebuild,v 1.5 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -77,7 +77,7 @@ RDEPEND="${CDEPEND} virtual/pkgconfig debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/dracut/dracut-025.ebuild b/sys-kernel/dracut/dracut-025.ebuild index 0fbb5f83d301..5a9122c202e3 100644 --- a/sys-kernel/dracut/dracut-025.ebuild +++ b/sys-kernel/dracut/dracut-025.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/dracut/dracut-025.ebuild,v 1.4 2013/04/02 14:51:03 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-025.ebuild,v 1.5 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -77,7 +77,7 @@ RDEPEND="${CDEPEND} virtual/pkgconfig debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/dracut/dracut-026-r1.ebuild b/sys-kernel/dracut/dracut-026-r1.ebuild index b5d89b5c647d..438c3dfadd10 100644 --- a/sys-kernel/dracut/dracut-026-r1.ebuild +++ b/sys-kernel/dracut/dracut-026-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/sys-kernel/dracut/dracut-026-r1.ebuild,v 1.3 2013/04/02 14:16:51 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-026-r1.ebuild,v 1.4 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -77,7 +77,7 @@ RDEPEND="${CDEPEND} virtual/pkgconfig debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/dracut/dracut-026-r2.ebuild b/sys-kernel/dracut/dracut-026-r2.ebuild index 4cee330e2e98..59d6b9dfdb1b 100644 --- a/sys-kernel/dracut/dracut-026-r2.ebuild +++ b/sys-kernel/dracut/dracut-026-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/sys-kernel/dracut/dracut-026-r2.ebuild,v 1.1 2013/04/02 14:16:51 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-026-r2.ebuild,v 1.2 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -79,7 +79,7 @@ RDEPEND="${CDEPEND} virtual/pkgconfig debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/dracut/dracut-026.ebuild b/sys-kernel/dracut/dracut-026.ebuild index 212dcf8a6f56..fb16c4927787 100644 --- a/sys-kernel/dracut/dracut-026.ebuild +++ b/sys-kernel/dracut/dracut-026.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/dracut/dracut-026.ebuild,v 1.2 2013/04/02 14:16:51 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-026.ebuild,v 1.3 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -77,7 +77,7 @@ RDEPEND="${CDEPEND} virtual/pkgconfig debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/dracut/dracut-027.ebuild b/sys-kernel/dracut/dracut-027.ebuild index 8ea829521740..07ca65e0c3c3 100644 --- a/sys-kernel/dracut/dracut-027.ebuild +++ b/sys-kernel/dracut/dracut-027.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/dracut/dracut-027.ebuild,v 1.2 2013/04/02 14:16:51 aidecoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/dracut/dracut-027.ebuild,v 1.3 2013/04/09 10:09:20 ssuominen Exp $ EAPI=4 @@ -79,7 +79,7 @@ RDEPEND="${CDEPEND} virtual/pkgconfig debug? ( dev-util/strace ) - device-mapper? ( || ( sys-fs/device-mapper >=sys-fs/lvm2-2.02.33 ) ) + device-mapper? ( >=sys-fs/lvm2-2.02.33 ) net? ( net-misc/curl >=net-misc/dhcp-4.2.4_p2-r1[client] sys-apps/iproute2 ) selinux? ( sys-libs/libselinux sys-libs/libsepol ) dracut_modules_biosdevname? ( sys-apps/biosdevname ) diff --git a/sys-kernel/vanilla-sources/Manifest b/sys-kernel/vanilla-sources/Manifest index 8d84cd13f3d7..b6efabb77f9a 100644 --- a/sys-kernel/vanilla-sources/Manifest +++ b/sys-kernel/vanilla-sources/Manifest @@ -18,7 +18,7 @@ DIST linux-3.7.tar.xz 69736096 SHA256 60a64d0bf76eeec3355f115c577935757b84629c8c DIST linux-3.8.tar.xz 70989468 SHA256 e070d1bdfbded5676a4f374721c63565f1c969466c5a3e214004a136b583184b SHA512 10a7983391af907d8aec72bdb096d1cabd4911985715e9ea13d35ff09095c035db15d4ab08b92eda7c10026cc27348cb9728c212335f7fcdcda7c610856ec30f WHIRLPOOL 0c633854ad9c06df1b1d832aea9bbef76144ba88c8fccf6a3f8729101dc36838bcda6ccd444451cab19177608e7f7866f4f79cff1a8ef2bd0c893933d7f1f44c DIST patch-2.6.32.60.xz 922192 SHA256 495accb613e5569ffe71a1f7483af7da294153f111fc49611e0291a28767ddc7 SHA512 71a0b4f24a60c68856154beb1e074055d017aeb4f933d317768bff70fb4df3c0766e0fb2fff686c1f1197e80d2ccf5b4e9cf7f355d39944799f3ede279e2b027 WHIRLPOOL 89a6ff1a43f91696a407e1681a9c6d3166fdf55dc23e1d7d5d3187da3a70d11c4c82a3fb728c3920214e0f117a2f79fcb05922a5ace707a3c515cee9cb8934fa DIST patch-3.0.72.xz 844836 SHA256 132086d88a94412ca6fa9c5bf0d54dde6eb1bd37790d15436d218646f93079de SHA512 43638b38333d549fbbdc6b8d25063047702e571ad30bbb654b1579e2a25045bb90e1dbcbbae148ed370930263a336e5eab5a9001b774734a1af345cae1f3c62a WHIRLPOOL d2769d746cfd2faece8b7d77ca4a8ee5b5269ba41e6fb34ad85def01884c9050c61eeb2642bfd8422126621b48a01edcb2b9aa89dd4a2eb9470e9e6c0703cbd2 -DIST patch-3.2.42.xz 832644 SHA256 abee9a6c9f4e7c601236f593fad0b90b78344bb3073f9d82df782ddecb8a44bc SHA512 746f51956537378c7b182162f2882a7ade47db214a6075856d045effccc2fd1789b09e428b9325c31a954239f9cc419b36579f423fff67b961cd98ed919abd1a WHIRLPOOL 8135bf6b93523518771da265e1f3774611ea09070575ec521c58caea91120363b41e43a3dd60169b4611139d3e960335c656567ed1d3f0edc09a380f6b93d09b +DIST patch-3.2.43.xz 845896 SHA256 bb048338ed7845d6b5a07294eda37b7951064b73836851ce8f092b6375603de7 SHA512 b5f86db45c1f6b5853bbf23fdd2583063d67012b93d33f5ead3173257312d0ef247c30fb523b273cf96d16f901c3eae8c8558abe55516e3b1989ace6cb2cccc6 WHIRLPOOL 12e70245c355a4bda5442317d1c222b60147966adbcfa0349963fe64e6dad5edda2d8b88e7afef2e09e0626957979d5bdff97f9bcb0f93df4021368179a67fb0 DIST patch-3.4.39.xz 616956 SHA256 10086ec3f8cedd30585e012577684f53b89d1782bf0879e29fc64d3b09cfe185 SHA512 90ce4a7ec06397ff51c8e99fff2b0d7ee4b8f3a05dcfafc6deb5c097a7e6f6780f46143ecd3e70d0d41a1fced6ab8528b01c772946d914e5e3896878d8e7f920 WHIRLPOOL 347b000f22526cc34ddba295ea530fa59a0d1c70fa44a1741f1ca60246b4aad0936bd306b989e66fd3098c165f19b44c05e95037cbc63ebd6f068092efaff757 DIST patch-3.7.10.xz 212936 SHA256 e5db8a0f0fb0a7ad466b4673489c1a438fe7e6482203e34702e7180d6e2e515a SHA512 939e3290a0e3bc19c519ca05181f673bffc745aa69456b51872c5ea718b64c250dac6926b07f1a195f87ee4aab67c01f7bc746d8bfb9201a983937c12c72823d WHIRLPOOL cdc62c7fe819328356678c85eb6939d1b6281f8b8ceb684e7c7794ea0215f6acfc31f34126f3333c1d7dd982faed5aeebd24d2a1efcd5b3dd99e86a6b281435e DIST patch-3.8.5.xz 159928 SHA256 4f04340eab5eba355da50a003977f3bb3e570e257e29f911c57bf79f65337d6e SHA512 00b98dcd55c5ab6132123c78955eeb8a02304c1bb19d2b2f55a45cf61ccdaf11826ccb3410a78a2cbb08f2ca8ca606cbb10e67d9431e9a8e6cff06c6b48022b7 WHIRLPOOL be58d970f4c9458bbce6224d950857ee66d4632385e0cd53b14579389fa0438c041bf0be1ec5cb8125092a583504a1fe3afccb96a058eb5336bd543e37fde611 diff --git a/sys-kernel/vanilla-sources/vanilla-sources-3.2.42.ebuild b/sys-kernel/vanilla-sources/vanilla-sources-3.2.43.ebuild similarity index 89% rename from sys-kernel/vanilla-sources/vanilla-sources-3.2.42.ebuild rename to sys-kernel/vanilla-sources/vanilla-sources-3.2.43.ebuild index c5283ab17ea6..20c3837c4ece 100644 --- a/sys-kernel/vanilla-sources/vanilla-sources-3.2.42.ebuild +++ b/sys-kernel/vanilla-sources/vanilla-sources-3.2.43.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.2.42.ebuild,v 1.1 2013/03/27 11:11:34 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-kernel/vanilla-sources/vanilla-sources-3.2.43.ebuild,v 1.1 2013/04/10 18:22:21 ago Exp $ EAPI="5" K_NOUSENAME="yes" diff --git a/sys-libs/glibc/files/eblits/pkg_preinst.eblit b/sys-libs/glibc/files/eblits/pkg_preinst.eblit index b57205f45259..efb77e5f05e1 100644 --- a/sys-libs/glibc/files/eblits/pkg_preinst.eblit +++ b/sys-libs/glibc/files/eblits/pkg_preinst.eblit @@ -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-libs/glibc/files/eblits/pkg_preinst.eblit,v 1.8 2013/02/09 05:39:21 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/pkg_preinst.eblit,v 1.10 2013/04/10 17:36:54 vapier Exp $ # Simple test to make sure our new glibc isnt completely broken. # Make sure we don't test with statically built binaries since @@ -46,4 +46,15 @@ eblit-glibc-pkg_preinst() { [[ ${ROOT} != "/" ]] && return 0 [[ -d ${D}/$(get_libdir) ]] || return 0 glibc_sanity_check + + # Make sure devpts is mounted correctly for use w/out setuid pt_chown. + if in_iuse suid && ! use suid ; then + if awk '$3 == "devpts" && $4 ~ /[, ]gid=5[, ]/ { exit 1 }' /proc/mounts ; then + eerror "In order to use glibc with USE=-suid, you must make sure that" + eerror "you have devpts mounted at /dev/pts with the gid=5 option." + eerror "Openrc should do this for you, so you should check /etc/fstab" + eerror "and make sure you do not have any invalid settings there." + die "mount & fix your /dev/pts settings" + fi + fi } diff --git a/sys-libs/glibc/files/eblits/src_install.eblit b/sys-libs/glibc/files/eblits/src_install.eblit index 73e0dffc8546..3ec90f0d8bbb 100644 --- a/sys-libs/glibc/files/eblits/src_install.eblit +++ b/sys-libs/glibc/files/eblits/src_install.eblit @@ -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-libs/glibc/files/eblits/src_install.eblit,v 1.28 2013/04/05 00:25:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/files/eblits/src_install.eblit,v 1.30 2013/04/10 17:36:54 vapier Exp $ toolchain-glibc_src_install() { local GBUILDDIR @@ -105,6 +105,13 @@ toolchain-glibc_src_install() { fi done + # With devpts under Linux mounted properly, we do not need the pt_chown + # binary to be setuid. This is because the default owners/perms will be + # exactly what we want. + if in_iuse suid && ! use suid ; then + find "${D}" -name pt_chown -exec chmod -s {} + + fi + ################################################################# # EVERYTHING AFTER THIS POINT IS FOR NATIVE GLIBC INSTALLS ONLY # # Make sure we install some symlink hacks so that when we build diff --git a/sys-libs/glibc/glibc-2.16.0.ebuild b/sys-libs/glibc/glibc-2.16.0.ebuild index a830fb37def9..04c15f9fad05 100644 --- a/sys-libs/glibc/glibc-2.16.0.ebuild +++ b/sys-libs/glibc/glibc-2.16.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/sys-libs/glibc/glibc-2.16.0.ebuild,v 1.22 2013/04/05 00:25:16 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.16.0.ebuild,v 1.23 2013/04/10 16:40:27 vapier Exp $ inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib unpacker multiprocessing @@ -35,7 +35,7 @@ PATCH_VER="10" # Gentoo patchset PORTS_VER=${RELEASE_VER} # version of glibc ports addon NPTL_KERN_VER=${NPTL_KERN_VER:-"2.6.16"} # min kernel version nptl requires -IUSE="debug gd hardened multilib selinux systemtap profile vanilla crosscompile_opts_headers-only" +IUSE="debug gd hardened multilib selinux suid systemtap profile vanilla crosscompile_opts_headers-only" [[ -n ${RELEASE_VER} ]] && S=${WORKDIR}/glibc-${RELEASE_VER}${SNAP_VER:+-${SNAP_VER}} # Here's how the cross-compile logic breaks down ... diff --git a/sys-libs/glibc/glibc-2.17.ebuild b/sys-libs/glibc/glibc-2.17.ebuild index df32aa9f78c8..36b376d187dd 100644 --- a/sys-libs/glibc/glibc-2.17.ebuild +++ b/sys-libs/glibc/glibc-2.17.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-libs/glibc/glibc-2.17.ebuild,v 1.11 2013/04/05 18:23:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.17.ebuild,v 1.12 2013/04/10 16:40:27 vapier Exp $ inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib unpacker multiprocessing @@ -27,7 +27,7 @@ esac PATCH_VER="4" # Gentoo patchset NPTL_KERN_VER=${NPTL_KERN_VER:-"2.6.16"} # min kernel version nptl requires -IUSE="debug gd hardened multilib nscd selinux systemtap profile vanilla crosscompile_opts_headers-only" +IUSE="debug gd hardened multilib nscd selinux systemtap profile suid vanilla crosscompile_opts_headers-only" # Here's how the cross-compile logic breaks down ... # CTARGET - machine that will target the binaries diff --git a/sys-libs/glibc/glibc-9999.ebuild b/sys-libs/glibc/glibc-9999.ebuild index a38f6394c43b..9d1915027ff5 100644 --- a/sys-libs/glibc/glibc-9999.ebuild +++ b/sys-libs/glibc/glibc-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-libs/glibc/glibc-9999.ebuild,v 1.20 2013/02/09 04:42:17 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-9999.ebuild,v 1.21 2013/04/10 16:40:27 vapier Exp $ inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib unpacker multiprocessing @@ -27,7 +27,7 @@ esac PATCH_VER="" # Gentoo patchset NPTL_KERN_VER=${NPTL_KERN_VER:-"2.6.16"} # min kernel version nptl requires -IUSE="debug gd hardened multilib nscd selinux systemtap profile vanilla crosscompile_opts_headers-only" +IUSE="debug gd hardened multilib nscd selinux systemtap profile suid vanilla crosscompile_opts_headers-only" # Here's how the cross-compile logic breaks down ... # CTARGET - machine that will target the binaries diff --git a/sys-libs/glibc/metadata.xml b/sys-libs/glibc/metadata.xml index 2c513844d61a..0041b77fe7f0 100644 --- a/sys-libs/glibc/metadata.xml +++ b/sys-libs/glibc/metadata.xml @@ -6,6 +6,7 @@ build memusage and memusagestat tools Build linuxthreads support (only for kernels older than linux-2.6) Build, and enable support for, the Name Service Cache Daemon + Make internal pt_chown helper setuid -- not needed if using Linux and have /dev/pts mounted with gid=5 enable systemtap static probe points diff --git a/sys-libs/libixp/Manifest b/sys-libs/libixp/Manifest index 1d8a611dd36a..5be3f0c3f446 100644 --- a/sys-libs/libixp/Manifest +++ b/sys-libs/libixp/Manifest @@ -1 +1 @@ -DIST libixp-0.5_p20110208.tar.xz 655956 RMD160 2704f1ef72d37e208c3891e7ae3a2f705ee95ab0 SHA1 2e23276e2667042f690763d8f531616a500cfc9e SHA256 66ce92b25486505d04b97d838fb9b102cd1edb1455d90916d00dc38369b2c06b +DIST libixp-0.5_p20110208.tar.xz 655956 SHA256 66ce92b25486505d04b97d838fb9b102cd1edb1455d90916d00dc38369b2c06b diff --git a/sys-libs/libixp/libixp-0.5_p20110208-r3.ebuild b/sys-libs/libixp/libixp-0.5_p20110208-r3.ebuild index 9b253c592e0c..895de93c3405 100644 --- a/sys-libs/libixp/libixp-0.5_p20110208-r3.ebuild +++ b/sys-libs/libixp/libixp-0.5_p20110208-r3.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/sys-libs/libixp/libixp-0.5_p20110208-r3.ebuild,v 1.1 2012/03/05 13:36:50 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libixp/libixp-0.5_p20110208-r3.ebuild,v 1.2 2013/04/09 13:22:45 naota Exp $ # hg clone http://hg.suckless.org/libixp @@ -13,7 +13,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd" IUSE="" RDEPEND="" diff --git a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6-r1.ebuild b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6-r1.ebuild index 77fc48916860..8f5a1c72bc57 100644 --- a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6-r1.ebuild +++ b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6-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/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6-r1.ebuild,v 1.3 2012/07/23 16:01:24 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6-r1.ebuild,v 1.4 2013/04/10 18:25:48 vapier Exp $ inherit eutils flag-o-matic libtool multilib @@ -98,6 +98,9 @@ do_filter_flags() { filter-flags -fno-strict-overflow filter-flags -fstrict-overflow + # Bug #442784 + filter-flags '-W*' + # ...sure, why not? strip-unsupported-flags diff --git a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild index cef7a6a69346..37f1370f0664 100644 --- a/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild +++ b/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.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-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild,v 1.28 2013/04/07 00:14:42 vincent Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libstdc++-v3/libstdc++-v3-3.3.6.ebuild,v 1.29 2013/04/10 18:25:48 vapier Exp $ inherit eutils flag-o-matic libtool multilib @@ -99,7 +99,7 @@ do_filter_flags() { filter-flags -fstrict-overflow # Bug #442784 - filter-flags -Wno-pointer-sign + filter-flags '-W*' # ...sure, why not? strip-unsupported-flags diff --git a/www-apache/mod_loopback/Manifest b/www-apache/mod_loopback/Manifest index 48dc0a90ba35..5ee74edad8a1 100644 --- a/www-apache/mod_loopback/Manifest +++ b/www-apache/mod_loopback/Manifest @@ -1 +1 @@ -DIST mod_loopback201.tgz 10807 SHA256 c57137895511ee2882bcbe41dc9b98cd21d3c5b394e90d99d57c0700e7a5c61e +DIST mod_loopback201.tgz 10807 SHA256 c57137895511ee2882bcbe41dc9b98cd21d3c5b394e90d99d57c0700e7a5c61e SHA512 96a9af95ff0a69c5607319686b86743265cb96a602fd445332068a8a87d51bfa42edd8cdd07de2ee0520d65238a2bf9d5124f08d41fa4a07376bbe7e2c672fb9 WHIRLPOOL 3da834de51618179f83fea8a3ca56a121fea071f87ab665f86394c254bdb0592436025ddc46605e3308ec88970a2a7997b1aa9d4e55b31ae03dea0020289c9af diff --git a/www-apache/mod_loopback/mod_loopback-2.01-r1.ebuild b/www-apache/mod_loopback/mod_loopback-2.01-r1.ebuild index 9f442cef8f2b..60449fa09fbb 100644 --- a/www-apache/mod_loopback/mod_loopback-2.01-r1.ebuild +++ b/www-apache/mod_loopback/mod_loopback-2.01-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_loopback/mod_loopback-2.01-r1.ebuild,v 1.1 2007/07/29 14:18:03 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apache/mod_loopback/mod_loopback-2.01-r1.ebuild,v 1.2 2013/04/08 17:25:58 ulm Exp $ inherit apache-module @@ -12,6 +12,7 @@ SRC_URI="http://www.snert.com/Software/download/${PN}201.tgz" LICENSE="as-is" SLOT="2" IUSE="" +RESTRICT="mirror bindist" S="${WORKDIR}/${PN}-2.1" diff --git a/www-apps/otrs/Manifest b/www-apps/otrs/Manifest index 1dfa24deedb7..5cf3f2597145 100644 --- a/www-apps/otrs/Manifest +++ b/www-apps/otrs/Manifest @@ -1,5 +1,4 @@ DIST otrs-3.1.11.tar.bz2 26094219 SHA256 188e1b676d7eb2021dcab17a0ab5c04793aa84cba429e1661eaa229b564c4696 SHA512 b521adadb74261b6c328ba115a8357d35ae34f8155b9c5b728cab7c88fbb9335cdb49968a50ac18c66802e5eed7e6796529dfa645d1dbae88a48a89d19876555 WHIRLPOOL 5b890bbe0394f41cfade64b592f693cb3d23010c3a328500affa02fdf2bc2cae86923149193ab141aa4e0e7fb773bf32f5c54bdd1f142d794ce84e7a2df62de6 DIST otrs-3.1.12.tar.bz2 26126211 SHA256 11786cc52dd3913443ad298e7fe41b6a63aed9e61c75f7182b7f9ab42fbbbe7d SHA512 b7aef450e694331db5af37ce1f488ca2e342f2f8971880a54f06c3c35236d78e8d15cd324f169de80f172f14c58e04c95e1c1aa5559180798d3aad4cb3d7c10c WHIRLPOOL dd4ecbc23d8bfae4bfbcf869b68c91589eb6bdfa1a5d62cd15306e16b84de1975401a74d9a23fbd285e5273aa91f9bc7df07dbea995011188bf15489cd47ac58 -DIST otrs-3.2.1.tar.bz2 18065388 SHA256 4518753fa4d558ab67b6850a1e11f824c297c8b3afea86345240e39a4ba8c933 SHA512 46d267fcaae769b4c770f6021e08976ac6f7e1d1cf409717a92b6a615ff9c5b915df68555ab7b20a4d60b10cfa4e4b370112026916511ce7d9a64755abdd5b2b WHIRLPOOL 4d7f3c003457c4da9ec0ae91439be2f1619a9def15529e43c16d43ee6e63f2b0b13c4e064faf5a44b2abac1cf682921ded73612c4184ca1f9c587d812cfa2d2e -DIST otrs-3.2.2.tar.bz2 18221234 SHA256 084fda2e314b1295ebb47d860eb9516030065e5e2b534cad793b25037905a98c SHA512 ee628a58a6525ae95a0cd166fff397f9c45df978d681c83db65fe60320c3ade855283ba87b7ce2e94543313974f9885e602d02701b7a361c580d29ba22365d5e WHIRLPOOL a9d601bd2cfc56f4540a6dcce32c069c3928c76db65fa16db337b9dcf89dd089f8fdd9ef2d1fc370e90ee5379e18373e19e232d17f14f83ec0f9ce8dc62b9c8c DIST otrs-3.2.3.tar.bz2 18206987 SHA256 4f48f84d9c160bb15d99682e3b4cf6dfdbcb0e5cbfb0b75ba34133aff2447f83 SHA512 2bfe429aa12e60575d70cb9d7d6b8c62b2a11d26306278a339ea4f7830e3865a8b14eb4d2fc915d9ecc4cbb50aada4f07fb2af56b900da7179b1b12ab75c95d9 WHIRLPOOL 81da9677bed911ff5fa6402a48d18694dda04625ec5a26c410aa3ac0997f20061426efd7df4097c531a4c3fb170cd8c3edf983ef6ade053c53cab5cd0812aee6 +DIST otrs-3.2.4.tar.bz2 18369836 SHA256 f45f50d6a7f708b6a63fd5da96cbd496b1b8d5a75e90f7b3ed3339fb0c26e6cd SHA512 96b7f0566fd0f936f972659da3030b4c8e92b57f2b388b309a52e854de8ee761451106b2d98acfeb341108d6b536026b165aa30c6cad13d8c745b5d6e08d71b9 WHIRLPOOL 1933722cba5be014f863f5e55984e59c3ef438c6185bf51dd769dfae9b7cb060803a35084d3e1425b8d35078d4233480ca7dbb6629ce36c4bb8fd399544fa50d diff --git a/www-apps/otrs/otrs-3.2.1.ebuild b/www-apps/otrs/otrs-3.2.1.ebuild deleted file mode 100644 index 3d54e17a3115..000000000000 --- a/www-apps/otrs/otrs-3.2.1.ebuild +++ /dev/null @@ -1,156 +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/otrs/otrs-3.2.1.ebuild,v 1.1 2013/02/07 06:02:28 patrick Exp $ - -EAPI=2 - -inherit eutils confutils - -DESCRIPTION="OTRS is an Open source Ticket Request System" -HOMEPAGE="http://otrs.org/" -SRC_URI="http://ftp.otrs.org/pub/${PN}/${P}.tar.bz2" - -LICENSE="AGPL-3" -KEYWORDS="~amd64 ~x86" -IUSE="apache2 fastcgi +gd ldap mod_perl +mysql pdf postgres soap" -SLOT="0" -#WEBAPP_MANUAL_SLOT="yes" - -# FIXME add oracle/mssql/DB2 DB support -# FIXME #cjk? ( >=dev-perl/Encode-HanExtra-0.23 ) unsatisfied dep - -DEPEND="" -RDEPEND="${DEPEND} - dev-perl/Authen-SASL - dev-perl/Crypt-PasswdMD5 - dev-perl/CSS-Minifier - dev-perl/Date-Pcalc - mysql? ( dev-perl/DBD-mysql ) - postgres? ( dev-perl/DBD-Pg ) - dev-perl/DBI - gd? ( dev-perl/GD - dev-perl/GDTextUtil - dev-perl/GDGraph ) - dev-perl/IO-Socket-SSL - >=dev-perl/JavaScript-Minifier-1.05 - >=dev-perl/JSON-2.21 - dev-perl/JSON-XS - dev-perl/LWP-UserAgent-Determined - dev-perl/Mail-POP3Client - dev-perl/MailTools - >=dev-perl/MIME-tools-5.427 - dev-perl/NetxAP - dev-perl/Net-IMAP-Simple-SSL - >dev-perl/Net-DNS-0.60 - dev-perl/Net-SMTP-SSL - dev-perl/Net-SMTP-TLS - dev-perl/IO-stringy - pdf? ( >=dev-perl/PDF-API2-0.73 - virtual/perl-Compress-Raw-Zlib ) - ldap? ( dev-perl/perl-ldap ) - soap? ( - dev-perl/SOAP-Lite - !=dev-perl/SOAP-Lite-0.711 - !=dev-perl/SOAP-Lite-0.712 ) - dev-perl/Text-CSV - dev-perl/Text-CSV_XS - dev-perl/TimeDate - dev-perl/XML-Parser - - virtual/perl-MIME-Base64 - >=virtual/perl-CGI-3.33 - virtual/perl-libnet - virtual/perl-Digest-MD5 - >=virtual/perl-Digest-SHA-5.48 - - virtual/mta - - apache2? ( mod_perl? ( www-servers/apache:2 - =www-apache/libapreq2-2* www-apache/mod_perl ) - fastcgi? ( || ( www-apache/mod_fcgid www-apache/mod_fastcgi ) - www-servers/apache:2[suexec] ) - !fastcgi? ( - !mod_perl? ( www-servers/apache:2[suexec] ) ) - ) - fastcgi? ( dev-perl/FCGI virtual/httpd-fastcgi ) - !fastcgi? ( - !apache2? ( virtual/httpd-cgi ) )" - -# dev-perl/libwww-perl - -OTRS_HOME="/var/lib/otrs" - -pkg_setup() { - # The enewuser otrs will fail if apache isn't there, but it's an optional dep - # so we create the apache user here just in case - enewgroup apache 81 - enewuser apache 81 -1 /var/www apache - enewuser otrs -1 -1 ${OTRS_HOME} apache - confutils_require_any mysql postgres -} - -src_prepare() { - rm -fr "${S}/scripts"/{auto_*,redhat*,suse*,*.spec} || die - cp Kernel/Config.pm{.dist,} || die - # procmail/fetchmail/mailfilter -# local mailrc=".fetchmailrc .mailfilter .procmailrc" -# for i in ${mailrc}; do -# mv ${i}{.dist,} || die -# done -# fperms 600 ${mailrc} || die -# fowners otrs ${mailrc} || die - - sed -i -e "s:/opt/otrs:${OTRS_HOME}:g" "${S}"/Kernel/Config.pm \ - || die "sed failed" - - grep -lR "/opt" "${S}"/scripts | \ - xargs sed -i -e "s:/opt/otrs:${OTRS_HOME}:g" \ - || die "sed failed" - - cd Kernel/Config/ || die - for i in *.dist; do - cp ${i} $(basename ${i} .dist) || die - done - - perl "${S}"/bin/otrs.SetPermissions.pl \ - --otrs-user=otrs \ - --web-user=apache \ - --otrs-group=apache \ - --web-group=apache "${S}" \ - || die "Could not set permissions" - - echo "CONFIG_PROTECT=\"${OTRS_HOME}/Kernel/Config.pm \ - ${OTRS_HOME}/Kernel/Config/GenericAgent.pm\"" > "${T}/50${PN}" - -} - -src_install() { - dodoc CHANGES CREDITS INSTALL README* UPGRADING \ - doc/X-OTRS-Headers.txt || die - - dodoc doc/manual/en/otrs_admin_book.pdf - - insinto "${OTRS_HOME}" - doins -r .fetchmailrc.dist .mailfilter.dist .procmailrc.dist RELEASE \ - Custom Kernel bin scripts var || die "doins failed" - - cat "${S}"/var/cron/*.dist > crontab - insinto /usr/share/doc/${PF}/ - doins crontab - - for a in article log pics/images pics/stats pics sessions spool tmp tmp/CacheFileStorable; do - keepdir "${OTRS_HOME}/var/${a}" - done - doenvd "${T}/50${PN}" || die -} - -# This is too automagic, either einfo telling user or installing to /etc/cron.d/ should be preferred -pkg_config() { - einfo "Installing cronjobs" - crontab -u otrs /usr/share/doc/${PF}/crontab -} - -pkg_postinst() { - elog "Enable cronjobs with the following command:" - elog "crontab -u otrs crontab" -} diff --git a/www-apps/otrs/otrs-3.2.2.ebuild b/www-apps/otrs/otrs-3.2.4.ebuild similarity index 95% rename from www-apps/otrs/otrs-3.2.2.ebuild rename to www-apps/otrs/otrs-3.2.4.ebuild index b647cf7bcb78..cafa2a12e0aa 100644 --- a/www-apps/otrs/otrs-3.2.2.ebuild +++ b/www-apps/otrs/otrs-3.2.4.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/otrs/otrs-3.2.2.ebuild,v 1.1 2013/03/11 05:27:01 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/otrs/otrs-3.2.4.ebuild,v 1.1 2013/04/10 08:19:36 patrick Exp $ EAPI=2 -inherit eutils confutils +inherit eutils confutils user DESCRIPTION="OTRS is an Open source Ticket Request System" HOMEPAGE="http://otrs.org/" @@ -125,7 +125,7 @@ src_prepare() { } src_install() { - dodoc CHANGES CREDITS INSTALL README* UPGRADING \ + dodoc CHANGES README* \ doc/X-OTRS-Headers.txt || die dodoc doc/manual/en/otrs_admin_book.pdf diff --git a/www-apps/rocketwiki-lqfb/Manifest b/www-apps/rocketwiki-lqfb/Manifest new file mode 100644 index 000000000000..b4e1afa68e46 --- /dev/null +++ b/www-apps/rocketwiki-lqfb/Manifest @@ -0,0 +1 @@ +DIST rocketwiki-lqfb-v0.4.tar.gz 5274 SHA256 d4035e01026585eab69d135e70cf3e5b8cfd93c078d09303902f3862f885c830 SHA512 fa90b317007c42e2e6d36c79773948ab7ab68ee914bd20825e0d5acbb8bf0add2c0a48119440d8a5b4c991f2d1f59bc83a1835b02d9070ae67fca1d4ffb73caf WHIRLPOOL 41dc9f02ed196f7c1881c33f0092cb267d45299dc6eb479afda9fa9adde30be06405af60faebd1cfa85e7c5ee16a8f161f59f5881824326ddc05d97489f3bf29 diff --git a/www-apps/rocketwiki-lqfb/metadata.xml b/www-apps/rocketwiki-lqfb/metadata.xml new file mode 100644 index 000000000000..bfa841b3dcf5 --- /dev/null +++ b/www-apps/rocketwiki-lqfb/metadata.xml @@ -0,0 +1,12 @@ + + + + +tupone@gentoo.org +Alfredo Tupone + + +RocketWiki is a small parser written in Haskell which translates a wiki dialect to HTML. It uses Parsec, a monadic parser combinator library. The compressed source code of RocketWiki has a size of only 5162 bytes. + + + diff --git a/www-apps/rocketwiki-lqfb/rocketwiki-lqfb-0.4.ebuild b/www-apps/rocketwiki-lqfb/rocketwiki-lqfb-0.4.ebuild new file mode 100644 index 000000000000..c43aa61f9fbc --- /dev/null +++ b/www-apps/rocketwiki-lqfb/rocketwiki-lqfb-0.4.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/rocketwiki-lqfb/rocketwiki-lqfb-0.4.ebuild,v 1.1 2013/04/09 20:34:25 tupone Exp $ + +EAPI=4 + +MY_P=${PN}-v${PV} + +DESCRIPTION="Small parser which translates a wiki dialect to HTML" +HOMEPAGE="http://www.public-software-group.org/rocketwiki" +SRC_URI="http://www.public-software-group.org/pub/projects/rocketwiki/liquid_feedback_edition/v${PV}/${MY_P}.tar.gz" + +LICENSE="HPND" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="dev-libs/gmp" +DEPEND="${RDEPEND} + dev-haskell/parsec + dev-lang/ghc" + +S=${WORKDIR}/${MY_P} + +src_install() { + dobin ${PN}{,-compat} +} diff --git a/www-client/chromium/chromium-26.0.1410.43.ebuild b/www-client/chromium/chromium-26.0.1410.43.ebuild index 5f3cfd354992..f96dd0f181e6 100644 --- a/www-client/chromium/chromium-26.0.1410.43.ebuild +++ b/www-client/chromium/chromium-26.0.1410.43.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/chromium/chromium-26.0.1410.43.ebuild,v 1.7 2013/04/05 21:44:11 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/chromium/chromium-26.0.1410.43.ebuild,v 1.8 2013/04/10 16:44:36 floppym Exp $ EAPI="5" PYTHON_COMPAT=( python{2_6,2_7} ) @@ -24,7 +24,7 @@ IUSE="bindist cups gnome gnome-keyring gps kerberos pulseaudio selinux system-ff # Native Client binaries are compiled with different set of flags, bug #452066. QA_FLAGS_IGNORED=".*\.nexe" -RDEPEND="app-accessibility/speech-dispatcher +RDEPEND=" $@ + + $(MKTLDS): $(MKTLDS_SRC) +- @echo "${CC} $<" +- @$(CC) -o $@ $< $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) ++ $(CC) -o $@ $< $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) + + $(HSTS_PRELOAD): $(HSTS) $(TRANSPORT_SECURITY_CERTS) $(TRANSPORT_SECURITY_JSON) + @echo gen $(notdir $@) + @./$(HSTS) > $@ + + $(HSTS): $(HSTS).c +- @echo "${CC} $<" +- @$(CC) $(CFLAGS) $(CPPFLAGS) -o $(HSTS) $(HSTS).c $(LDFLAGS) ++ $(CC) $(CFLAGS) $(CPPFLAGS) -o $(HSTS) $(HSTS).c $(LDFLAGS) + + clean: + $(RM) $(OUTFILES) $(GEN_TOOLS) +--- dwb-2013.03.30/tools/Makefile ++++ dwb-2013.03.30/tools/Makefile +@@ -22,12 +22,10 @@ + all: $(TARGET) + + $(TARGET): $(OBJ) +- @echo $(CC) $@ +- @$(CC) $< -o $@ $(LDFLAGS) ++ $(CC) $< -o $@ $(LDFLAGS) + + %.o: %.c +- @echo $(CC) $< +- @$(CC) $(CFLAGS) -c $< -o $@ $(CPPFLAGS) ++ $(CC) $(CFLAGS) -c $< -o $@ $(CPPFLAGS) + + clean: + rm -f $(TARGET) $(OBJ) diff --git a/www-client/firefox-bin/files/all-gentoo.js b/www-client/firefox-bin/files/all-gentoo.js new file mode 100644 index 000000000000..a9b016c8f44b --- /dev/null +++ b/www-client/firefox-bin/files/all-gentoo.js @@ -0,0 +1,8 @@ +// +lockPref("app.update.auto", false); +lockPref("app.update.enabled", false); + +pref("browser.display.use_system_colors", true); +pref("browser.shell.checkDefaultBrowser", false); +pref("browser.EULA.override", true); +pref("intl.locale.matchOS", true); diff --git a/www-client/firefox-bin/files/local-settings.js b/www-client/firefox-bin/files/local-settings.js new file mode 100644 index 000000000000..9dac3b0eae0a --- /dev/null +++ b/www-client/firefox-bin/files/local-settings.js @@ -0,0 +1,2 @@ +pref("general.config.filename", "all-gentoo.js"); +pref("general.config.obscure_value", 0); // use this to disable the byte-shift diff --git a/www-client/firefox-bin/firefox-bin-17.0.5.ebuild b/www-client/firefox-bin/firefox-bin-17.0.5-r1.ebuild similarity index 95% rename from www-client/firefox-bin/firefox-bin-17.0.5.ebuild rename to www-client/firefox-bin/firefox-bin-17.0.5-r1.ebuild index e9dc3ed126f6..00442c36727f 100644 --- a/www-client/firefox-bin/firefox-bin-17.0.5.ebuild +++ b/www-client/firefox-bin/firefox-bin-17.0.5-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/www-client/firefox-bin/firefox-bin-17.0.5.ebuild,v 1.1 2013/04/03 00:34:04 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/firefox-bin/firefox-bin-17.0.5-r1.ebuild,v 1.3 2013/04/09 16:07:12 ago Exp $ EAPI="4" MOZ_ESR="1" @@ -38,7 +38,7 @@ SRC_URI="${SRC_URI} HOMEPAGE="http://www.mozilla.com/firefox" RESTRICT="strip mirror binchecks" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="-* amd64 x86" SLOT="0" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" IUSE="startup-notification" @@ -82,7 +82,9 @@ src_install() { # Fix prefs that make no sense for a system-wide install insinto ${MOZILLA_FIVE_HOME}/defaults/pref/ - doins "${FILESDIR}"/${PN}-prefs.js || die + doins "${FILESDIR}"/local-settings.js + insinto ${MOZILLA_FIVE_HOME}/ + doins "${FILESDIR}"/all-gentoo.js # Install language packs mozlinguas_src_install diff --git a/www-client/firefox-bin/firefox-bin-20.0.ebuild b/www-client/firefox-bin/firefox-bin-20.0-r1.ebuild similarity index 96% rename from www-client/firefox-bin/firefox-bin-20.0.ebuild rename to www-client/firefox-bin/firefox-bin-20.0-r1.ebuild index 54c7ff1f519d..e44fae521d10 100644 --- a/www-client/firefox-bin/firefox-bin-20.0.ebuild +++ b/www-client/firefox-bin/firefox-bin-20.0-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/www-client/firefox-bin/firefox-bin-20.0.ebuild,v 1.1 2013/04/03 00:34:04 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/firefox-bin/firefox-bin-20.0-r1.ebuild,v 1.2 2013/04/08 14:30:50 anarchy Exp $ EAPI="4" @@ -76,7 +76,9 @@ src_install() { # Fix prefs that make no sense for a system-wide install insinto ${MOZILLA_FIVE_HOME}/defaults/pref/ - doins "${FILESDIR}"/${PN}-prefs.js || die + doins "${FILESDIR}"/local-settings.js + insinto ${MOZILLA_FIVE_HOME}/ + doins "${FILESDIR}"/all-gentoo.js # Install language packs mozlinguas_src_install diff --git a/www-client/firefox-bin/firefox-bin-20.0-r2.ebuild b/www-client/firefox-bin/firefox-bin-20.0-r2.ebuild new file mode 100644 index 000000000000..3c1fa3bdcc5e --- /dev/null +++ b/www-client/firefox-bin/firefox-bin-20.0-r2.ebuild @@ -0,0 +1,159 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/firefox-bin/firefox-bin-20.0-r2.ebuild,v 1.1 2013/04/09 16:16:35 zerochaos Exp $ + +EAPI="4" + +# Can be updated using scripts/get_langs.sh from mozilla overlay +MOZ_LANGS=(af ak ar as ast be bg bn-BD bn-IN br bs ca cs csb cy da de el en +en-GB en-US en-ZA eo es-AR es-CL es-ES es-MX et eu fa fi fr fy-NL ga-IE gd gl +gu-IN he hi-IN hr hu hy-AM id is it ja kk kn ko ku lg lt lv mai mk ml mr nb-NO +nl nn-NO nso or pa-IN pl pt-BR pt-PT rm ro ru si sk sl son sq sr sv-SE ta ta-LK +te th tr uk vi zh-CN zh-TW zu) + +# Convert the ebuild version to the upstream mozilla version, used by mozlinguas +MOZ_PV="${PV/_beta/b}" # Handle beta for SRC_URI +MOZ_PV="${MOZ_PV/_rc/rc}" # Handle rc for SRC_URI +MOZ_PN="${PN/-bin}" +MOZ_P="${MOZ_PN}-${MOZ_PV}" + +# Upstream ftp release URI that's used by mozlinguas.eclass +# We don't use the http mirror because it deletes old tarballs. +MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/mozilla.org/${MOZ_PN}/releases/" + +inherit eutils multilib pax-utils fdo-mime gnome2-utils mozlinguas nsplugins + +DESCRIPTION="Firefox Web Browser" +MOZ_FTP_URI="ftp://ftp.mozilla.org/pub/mozilla.org/${MOZ_PN}/releases" +SRC_URI="${SRC_URI} + amd64? ( ${MOZ_FTP_URI}/${MOZ_PV}/linux-x86_64/en-US/${MOZ_P}.tar.bz2 -> ${PN}_x86_64-${PV}.tar.bz2 ) + x86? ( ${MOZ_FTP_URI}/${MOZ_PV}/linux-i686/en-US/${MOZ_P}.tar.bz2 -> ${PN}_i686-${PV}.tar.bz2 )" +HOMEPAGE="http://www.mozilla.com/firefox" +RESTRICT="strip mirror binchecks" + +KEYWORDS="-* ~amd64 ~x86" +SLOT="0" +LICENSE="MPL-2.0 GPL-2 LGPL-2.1" +IUSE="startup-notification" + +DEPEND="app-arch/unzip" +RDEPEND="dev-libs/dbus-glib + virtual/freedesktop-icon-theme + x11-libs/libXrender + x11-libs/libXt + x11-libs/libXmu + + >=x11-libs/gtk+-2.2:2 + >=media-libs/alsa-lib-1.0.16 + + !net-libs/libproxy[spidermonkey] +" + +S="${WORKDIR}/${MOZ_PN}" + +src_unpack() { + unpack ${A} + + # Unpack language packs + mozlinguas_src_unpack +} + +src_install() { + declare MOZILLA_FIVE_HOME=/opt/${MOZ_PN} + + local size sizes icon_path icon name + sizes="16 32 48" + icon_path="${S}/chrome/icons/default" + icon="${PN}" + name="Mozilla Firefox" + + # Install icons and .desktop for menu entry + for size in ${sizes}; do + insinto "/usr/share/icons/hicolor/${size}x${size}/apps" + newins "${icon_path}/default${size}.png" "${icon}.png" || die + done + # The 128x128 icon has a different name + insinto "/usr/share/icons/hicolor/128x128/apps" + newins "${icon_path}/../../../icons/mozicon128.png" "${icon}.png" || die + # Install a 48x48 icon into /usr/share/pixmaps for legacy DEs + newicon "${S}"/chrome/icons/default/default48.png ${PN}-icon.png + domenu "${FILESDIR}"/${PN}.desktop + sed -i -e "s:@NAME@:${name}:" -e "s:@ICON@:${icon}:" \ + "${ED}/usr/share/applications/${PN}.desktop" || die + + # Add StartupNotify=true bug 237317 + if use startup-notification; then + echo "StartupNotify=true" >> "${D}"/usr/share/applications/${PN}.desktop + fi + + # Install firefox in /opt + dodir ${MOZILLA_FIVE_HOME%/*} + mv "${S}" "${D}"${MOZILLA_FIVE_HOME} || die + + # Fix prefs that make no sense for a system-wide install + insinto ${MOZILLA_FIVE_HOME}/defaults/pref/ + doins "${FILESDIR}"/local-settings.js + insinto ${MOZILLA_FIVE_HOME}/ + doins "${FILESDIR}"/all-gentoo.js + + # Install language packs + mozlinguas_src_install + + local LANG=${linguas%% *} + if [[ -n ${LANG} && ${LANG} != "en" ]]; then + elog "Setting default locale to ${LANG}" + echo "pref(\"general.useragent.locale\", \"${LANG}\");" \ + >> "${D}${MOZILLA_FIVE_HOME}"/defaults/pref/${PN}-prefs.js || \ + die "sed failed to change locale" + fi + + # Create /usr/bin/firefox-bin + dodir /usr/bin/ + cat <<-EOF >"${D}"/usr/bin/${PN} + #!/bin/sh + unset LD_PRELOAD + LD_LIBRARY_PATH="/opt/firefox/" + GTK_PATH=/usr/lib/gtk-2.0/ + exec /opt/${MOZ_PN}/${MOZ_PN} "\$@" + EOF + fperms 0755 /usr/bin/${PN} + + # revdep-rebuild entry + insinto /etc/revdep-rebuild + doins "${FILESDIR}"/10${PN} || die + + # Plugins dir + share_plugins_dir + + # Required in order to use plugins and even run firefox on hardened. + pax-mark mr "${ED}"/${MOZILLA_FIVE_HOME}/{firefox,firefox-bin,plugin-container} +} + +pkg_preinst() { + gnome2_icon_savelist +} + +pkg_postinst() { + if ! has_version 'gnome-base/gconf' || ! has_version 'gnome-base/orbit' \ + || ! has_version 'net-misc/curl'; then + einfo + einfo "For using the crashreporter, you need gnome-base/gconf," + einfo "gnome-base/orbit and net-misc/curl emerged." + einfo + fi + # Drop requirement of curl not built with nss as it's not necessary anymore + #if has_version 'net-misc/curl[nss]'; then + # einfo + # einfo "Crashreporter won't be able to send reports" + # einfo "if you have curl emerged with the nss USE-flag" + # einfo + #fi + + # Update mimedb for the new .desktop file + fdo-mime_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/www-client/firefox/firefox-17.0.5.ebuild b/www-client/firefox/firefox-17.0.5.ebuild index 4623ecf32294..ce07c96dfee9 100644 --- a/www-client/firefox/firefox-17.0.5.ebuild +++ b/www-client/firefox/firefox-17.0.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/www-client/firefox/firefox-17.0.5.ebuild,v 1.1 2013/04/04 14:37:59 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/firefox/firefox-17.0.5.ebuild,v 1.3 2013/04/09 16:06:51 ago Exp $ EAPI="3" VIRTUALX_REQUIRED="pgo" @@ -35,7 +35,7 @@ inherit check-reqs flag-o-matic toolchain-funcs eutils gnome2-utils mozconfig-3 DESCRIPTION="Firefox Web Browser" HOMEPAGE="http://www.mozilla.com/firefox" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux" SLOT="0" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" IUSE="bindist gstreamer +jit +minimal pgo selinux system-sqlite" diff --git a/www-client/google-chrome/Manifest b/www-client/google-chrome/Manifest index 14b7ca3d9a80..6f0722b6cff9 100644 --- a/www-client/google-chrome/Manifest +++ b/www-client/google-chrome/Manifest @@ -1,6 +1,6 @@ DIST google-chrome-beta_27.0.1453.15-r191758_amd64.deb 41680060 SHA256 33aba1a7a826bb654d254d82c1aaf44df0f43d23205866a081bcab9c4a180c51 SHA512 b2fa0717a197f0176f8026b4c337f7140d9f4c8192a963458c721ee44f72c59674afbc13d5e90eb6290c529bf3cc38ff353b92c125bcc385bcd3aedbdd34cf68 WHIRLPOOL 98bee34aac2ac5221606534e8a8cebce4fbca36e765dc8b7d3b3e10e69ba44fc5002693a73b872778a3b21a7763437ae188087d87df8ce366c099e6c814a1b15 DIST google-chrome-beta_27.0.1453.15-r191758_i386.deb 39828302 SHA256 55957d237aff68eba7b1c13b38e3dde241140c782d29ec3bc6e923670b10fa3d SHA512 f799a6269f67ebd0a5225801e8d919c41975e132cb2230bebae24e13500348e2d7d19bbde3c85b1c296edfbf5a0f8457bf262080acb522b2fbf0d2ef7415ba4c WHIRLPOOL c03f2a90d0ce4466996f2dcf8c8dd78abffe618ff2c5f27cf5141f10c282ca1668a6d13226947cd55148ed75afcf356207d034b7c384324dc6e47a482ec4ea20 -DIST google-chrome-stable_26.0.1410.43-r189671_amd64.deb 42314378 SHA256 2ef47d5046f10f31f523b0a9e3d0b1e7a4fbe5164b519bb3b0a800d84e7c3d35 SHA512 6c617190809839a834b4a7b852bde3125da6965716ed045011bf0df404b117bcfc40c4a12deb0b87ac31f320aa2dcacfd007d1d5748873c1ac3e49f82a816ba6 WHIRLPOOL 4c2b6968e5a7df8df45374f688aa34cd481e9cb81ffbc67c866f98698450f765b7596083f5f74a5dca03f6dcff9bde747c13089c663a316458dd1af3f9b571fa -DIST google-chrome-stable_26.0.1410.43-r189671_i386.deb 40236334 SHA256 f4b1a88ee50cae531380bb217fcc2d5b148ba152461fd50edda01868c67610b5 SHA512 1bf921f81fa38d540f03d1856b146718dacb2af371f6167d1ddd0317b2b4271b821f236fa6de6596067ce8d3c05fc74e4da6050d3152bac12b2d26ed7a6373c2 WHIRLPOOL bea2f952b62685ae6e53b5688eb156487123f4d4e90d175c0586c3f7b181e576b30b5c729493c3f973962dbed632ac4f948865a88df7839fb80ee14a7d8ae111 +DIST google-chrome-stable_26.0.1410.63-r192696_amd64.deb 42434828 SHA256 649eb397e0c2e91e3f9c6ee732b948b3f9ca033a0cb5ab306ca1d7697d4d6d3b SHA512 2c4ab9ace0a1974ccc389cc67fbfe5bdc92f169f576afaf078e1797879c93e7e56f5389965e3a16374c01a2264a68ab4873011914125368f57925b9b7ed82326 WHIRLPOOL dba5f1220846b8cac446d1fea2441a225dd9445892037319c35419fead902011757a98534122a4ca43b2789a94bc4f9513c4624ef241004a3406af74c010eda1 +DIST google-chrome-stable_26.0.1410.63-r192696_i386.deb 40297242 SHA256 0f7734721008d096e5067eb331577bc3c6ecc4984d1b23f38af761f267f50993 SHA512 4d3d32358b8498fe1ba0d6e4ceacc97aa77bba0b60ab21c68448179d443b5481aa6a1b50f13cdb1e017513147b2a34683ce583d74c7296d895f0fec6eb0dbf54 WHIRLPOOL 590095f4c8cb7722495620fb9d81af2c6f662f0bfa3f8edd28e172c4b7f59c2da8d753ec52d943e1a821e18d72282068ea3d4dab022caa0936237eea9a78c82c DIST google-chrome-unstable_27.0.1453.12-r191631_amd64.deb 41908800 SHA256 76bcd932d230d7ca95e5e74d4b80d7301a0c786e4c2e2165185389fdafcd1bad SHA512 214b9b31e154267ed0fd58db12f4087498cdb0df126903982e3f6c2adb5901188cfa496368cea814cef7f87f4f8182ba6bbdddd122ac9b587612c2b40bdaaf7f WHIRLPOOL f2d773a4346a585f20835018d1f5f0e6dd87839f63c3cad3599ff92ac7fcecc46a74c71d04f5f8d8e4d26da563ea343df19cd633754f5d0d2f659b7168f76721 DIST google-chrome-unstable_27.0.1453.12-r191631_i386.deb 39815844 SHA256 188a574259faac5e51381d7c32196968f670eef7cdad1e1c91ff441bac8a77ba SHA512 71c3a4b2b481e3a8928f88942658a3dd23f6b110bad2e4200091e7b15942ac967b86b47416872e1b2bb9225782ae7cd3645704c021abe5ab4e6dcd0bbeede50b WHIRLPOOL 761c8a731e094276d0d9db6807244949a91e643f2a94064cc38e90d2c693c02f0e03bc25bce78890cf383c43cf8fa5384041ecb3e79426f9f3f52f2f840adda5 diff --git a/www-client/google-chrome/google-chrome-26.0.1410.43_p189671.ebuild b/www-client/google-chrome/google-chrome-26.0.1410.63_p192696.ebuild similarity index 98% rename from www-client/google-chrome/google-chrome-26.0.1410.43_p189671.ebuild rename to www-client/google-chrome/google-chrome-26.0.1410.63_p192696.ebuild index 5769cebca7b1..b3f7c7048f22 100644 --- a/www-client/google-chrome/google-chrome-26.0.1410.43_p189671.ebuild +++ b/www-client/google-chrome/google-chrome-26.0.1410.63_p192696.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-26.0.1410.43_p189671.ebuild,v 1.2 2013/04/05 14:31:53 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/google-chrome/google-chrome-26.0.1410.63_p192696.ebuild,v 1.1 2013/04/09 17:29:51 floppym Exp $ EAPI="4" diff --git a/www-client/midori/Manifest b/www-client/midori/Manifest index 8c776cf54f26..d945722893ed 100644 --- a/www-client/midori/Manifest +++ b/www-client/midori/Manifest @@ -1,3 +1,2 @@ DIST midori-0.4.6.tar.bz2 978570 SHA256 910f47bd2b5f2998cd4fce45c08f9e282318820b68562d0bade2096b9a17e3ea SHA512 8c46f2eed6dd0af237b6aa021f8fc2150bd4387f7de14c9265cf5b8c1a1a558ecf908c98389415100ca0eac9037d7df89c5a348ef9dcd397bb1d3421104a8e7a WHIRLPOOL 36a498e2fd22039816da7072c1a7d59c84548fc187480b33b7a12ddf2ecd41626bb5a80d28298f336148ff74e3ec6fd2dd6da7a19f466ea899849b2d0919c0b2 -DIST midori-0.4.8.tar.bz2 1047789 SHA256 40bf23f84a3537f54d7eb45df1da40ebef54c321b1b34d0d0c8e45bb0cce5e9f SHA512 ec10fb836f824928cee2df4ca13d65b8436efd8f34af911884fb225b521d1f67dd44bdb5588cd36e0f2db802ed9d1d3c6852563f563b18e20416fcdf3dc3d349 WHIRLPOOL 607c49dd4269a588bd4c33445b3342aa7c785da458aea3abd10deb7c0ffb55a22024e7f1d293e9237b3cd54fc023a0afb70931ed5bdf99df7bd46d67bf889f42 -DIST midori-0.4.9.tar.bz2 1079713 SHA256 f01e5dc45e94f909e48f0dd62cc4afedd80710769fdf98bc4e0b38d4ef0abc11 SHA512 02a1f6523c8912c916cbff930712ba87d42487f5f513e59c3adbaeaed533406874074635e96db87f3c4132e4221e60b126002785634d194bb5cbf2f602d3c321 WHIRLPOOL 9aa814b69cfbcb36f0dcb1ddff47c0fda38411cfd788f1c6b0bfd758f10db7ba8598144ef066b677404b85fca3bae408b0e8bb708a33cd1be11d4877644610b2 +DIST midori-0.5.0.tar.bz2 1093278 SHA256 d280c19bb135f2b644a67d9f34d1ec1c148ceb14b5de11ce6c23f64c15be5df0 SHA512 6e4552a2410f642e52d0e165225547b37b6c3f60eda0acb37bb12bd28c707cadfe1af96cf74a93e86b2a4d30f93a72705881b9aafcdfa658498fad168adbc399 WHIRLPOOL d948d1c47f3578903b1af938e8adcbc1805841a452cafb03bc64343a3f84b0d5625dbb812182fa22a6d00f1ee0d85b8cc7a2701c73cf058cc15756e9f3c8be5d diff --git a/www-client/midori/files/midori-0.4.8-desktop_file_validation.patch b/www-client/midori/files/midori-0.4.8-desktop_file_validation.patch deleted file mode 100644 index 5ddc356e35f7..000000000000 --- a/www-client/midori/files/midori-0.4.8-desktop_file_validation.patch +++ /dev/null @@ -1,37 +0,0 @@ -http://bugs.gentoo.org/show_bug.cgi?id=435864 -http://bugs.launchpad.net/midori/+bug/1117543 - ---- data/midori.desktop.in -+++ data/midori.desktop.in -@@ -17,17 +17,17 @@ - X-Osso-Service=midori - X-Ayatana-Desktop-Shortcuts=TabNew;WindowNew;Private - --[TabNew Shortcut Group] -+[X-TabNew Shortcut Group] - _Name=New Tab - Exec=midori -e TabNew - TargetEnvironment=Unity - --[WindowNew Shortcut Group] -+[X-WindowNew Shortcut Group] - _Name=New Window - Exec=midori -e WindowNew - TargetEnvironment=Unity - --[Private Shortcut Group] -+[X-Private Shortcut Group] - _Name=New Private Browsing Window - Exec=midori --private - TargetEnvironment=Unity ---- data/midori-private.desktop.in -+++ data/midori-private.desktop.in -@@ -9,7 +9,7 @@ - Icon=midori - Terminal=false - StartupNotify=true --NotShowIn=Pantheon -+NotShowIn=X-Pantheon; - X-Osso-Type=application/x-executable - X-Osso-Service=midori - diff --git a/www-client/midori/midori-0.4.8.ebuild b/www-client/midori/midori-0.4.8.ebuild deleted file mode 100644 index 39e1167c271d..000000000000 --- a/www-client/midori/midori-0.4.8.ebuild +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/midori/midori-0.4.8.ebuild,v 1.4 2013/03/29 21:37:00 angelos Exp $ - -EAPI=5 -VALA_MIN_API_VERSION=0.14 - -PYTHON_COMPAT=( python2_7 ) - -unset _live_inherits - -if [[ ${PV} == *9999* ]]; then - EGIT_REPO_URI="git://git.xfce.org/apps/${PN}" - _live_inherits=git-2 -else - KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd" - SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2" -fi - -inherit eutils fdo-mime gnome2-utils python-any-r1 waf-utils vala ${_live_inherits} - -DESCRIPTION="A lightweight web browser based on WebKitGTK+" -HOMEPAGE="http://twotoasts.de/index.php/midori/" - -LICENSE="LGPL-2.1 MIT" -SLOT="0" -IUSE="+deprecated doc gnome libnotify nls +unique zeitgeist" - -RDEPEND=">=dev-db/sqlite-3.6.19:3 - >=dev-libs/glib-2.22 - dev-libs/libxml2 - >=net-libs/libsoup-2.34:2.4 - x11-libs/libXScrnSaver - deprecated? ( - net-libs/webkit-gtk:2 - x11-libs/gtk+:2 - unique? ( dev-libs/libunique:1 ) - ) - !deprecated? ( - >=app-crypt/gcr-3 - net-libs/webkit-gtk:3 - x11-libs/gtk+:3 - unique? ( dev-libs/libunique:3 ) - ) - gnome? ( >=net-libs/libsoup-gnome-2.34:2.4 ) - libnotify? ( >=x11-libs/libnotify-0.7 ) - zeitgeist? ( >=dev-libs/libzeitgeist-0.3.14 )" -DEPEND="${RDEPEND} - ${PYTHON_DEPS} - $(vala_depend) - dev-util/intltool - gnome-base/librsvg - doc? ( dev-util/gtk-doc ) - nls? ( sys-devel/gettext )" - -pkg_setup() { - python-any-r1_pkg_setup - - DOCS=( AUTHORS ChangeLog HACKING INSTALL TODO TRANSLATE ) - HTML_DOCS=( data/faq.html data/faq.css ) -} - -src_unpack() { - if [[ ${PV} == *9999* ]]; then - git-2_src_unpack - else - default - fi -} - -src_prepare() { - # Force disabled because we don't have this custom renamed in Portage - sed -i -e 's:gcr-3-gtk2:&dIsAbLe:' wscript || die - -# FIXME: The code is not compatible with X- in the names -# epatch "${FILESDIR}"/${P}-desktop_file_validation.patch - - vala_src_prepare -} - -src_configure() { - strip-linguas -i po - - waf-utils_src_configure \ - --disable-docs \ - $(use_enable doc apidocs) \ - $(use_enable unique) \ - $(use_enable libnotify) \ - --disable-granite \ - --enable-addons \ - $(use_enable nls) \ - $(use_enable !deprecated gtk3) \ - $(use_enable zeitgeist) -} - -pkg_preinst() { - gnome2_icon_savelist -} - -pkg_postinst() { - fdo-mime_desktop_database_update - fdo-mime_mime_database_update - gnome2_icon_cache_update -} - -pkg_postrm() { - fdo-mime_desktop_database_update - fdo-mime_mime_database_update - gnome2_icon_cache_update -} diff --git a/www-client/midori/midori-0.4.9.ebuild b/www-client/midori/midori-0.5.0.ebuild similarity index 95% rename from www-client/midori/midori-0.4.9.ebuild rename to www-client/midori/midori-0.5.0.ebuild index 9ff354518bac..fdd427ec7690 100644 --- a/www-client/midori/midori-0.4.9.ebuild +++ b/www-client/midori/midori-0.5.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/www-client/midori/midori-0.4.9.ebuild,v 1.3 2013/03/31 19:10:56 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/midori/midori-0.5.0.ebuild,v 1.1 2013/04/09 07:33:34 angelos Exp $ EAPI=5 VALA_MIN_API_VERSION=0.14 diff --git a/www-client/netrik/files/netrik-1.16.1-ncurses-tinfo.patch b/www-client/netrik/files/netrik-1.16.1-ncurses-tinfo.patch new file mode 100644 index 000000000000..193b0af5cd0b --- /dev/null +++ b/www-client/netrik/files/netrik-1.16.1-ncurses-tinfo.patch @@ -0,0 +1,13 @@ +--- configure.ac.orig 2013-04-10 13:39:02.514339066 +0400 ++++ configure.ac 2013-04-10 13:39:28.607341140 +0400 +@@ -18,8 +18,9 @@ + AC_HEADER_STDC + + dnl check for ncurses ++AC_CHECK_LIB(tinfo, tparm) + AC_CHECK_LIB(ncursesw, +- tparm, ++ printw, + [NCURSES="yes"], + AC_MSG_ERROR([ncursesw is absolutely required!])) + diff --git a/www-client/netrik/netrik-1.16.1-r1.ebuild b/www-client/netrik/netrik-1.16.1-r1.ebuild new file mode 100644 index 000000000000..47ecf6201d3b --- /dev/null +++ b/www-client/netrik/netrik-1.16.1-r1.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/www-client/netrik/netrik-1.16.1-r1.ebuild,v 1.1 2013/04/10 09:46:06 pinkbyte Exp $ + +EAPI=5 + +inherit autotools eutils + +DESCRIPTION="A text based web browser with no ssl support." +HOMEPAGE="http://netrik.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~sparc ~x86" + +RDEPEND=">=sys-libs/ncurses-5.1[unicode] + sys-libs/readline" +DEPEND="${RDEPEND}" + +src_prepare() { + sed -i -e "/^doc_DATA/s/COPYING LICENSE //" \ + Makefile.am || die 'sed on Makefile.am failed' + + # bug #459660 + epatch "${FILESDIR}/${P}-ncurses-tinfo.patch" + epatch_user + + eautoreconf +} + +src_install() { + emake DESTDIR="${D}" docdir="/usr/share/doc/${PF}" install +} diff --git a/www-client/seamonkey-bin/seamonkey-bin-2.17.ebuild b/www-client/seamonkey-bin/seamonkey-bin-2.17.ebuild index fa2094953e05..b8e467709eea 100644 --- a/www-client/seamonkey-bin/seamonkey-bin-2.17.ebuild +++ b/www-client/seamonkey-bin/seamonkey-bin-2.17.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/seamonkey-bin/seamonkey-bin-2.17.ebuild,v 1.1 2013/04/03 01:39:03 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.17.ebuild,v 1.3 2013/04/09 16:07:35 ago Exp $ EAPI="4" @@ -29,7 +29,7 @@ HOMEPAGE="http://www.seamonkey-project.org/" RESTRICT="strip mirror binchecks" QA_EXECSTACK="opt/seamonkey/*" -KEYWORDS="-* ~amd64 ~x86" +KEYWORDS="-* amd64 x86" SLOT="0" LICENSE="MPL-2.0 GPL-2 LGPL-2.1" IUSE="startup-notification" diff --git a/www-client/seamonkey/seamonkey-2.17.ebuild b/www-client/seamonkey/seamonkey-2.17.ebuild index 03cce4acb0ff..4f5ab5db79b5 100644 --- a/www-client/seamonkey/seamonkey-2.17.ebuild +++ b/www-client/seamonkey/seamonkey-2.17.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/seamonkey/seamonkey-2.17.ebuild,v 1.1 2013/04/03 07:02:36 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey/seamonkey-2.17.ebuild,v 1.4 2013/04/09 16:07:28 ago Exp $ EAPI="3" WANT_AUTOCONF="2.1" @@ -42,7 +42,7 @@ if [[ ${PV} == *_pre* ]] ; then else # This is where arch teams should change the KEYWORDS. - KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86" + KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86" fi SLOT="0" @@ -280,11 +280,8 @@ src_install() { "${S}/${obj_dir}/mozilla/dist/bin/defaults/pref/all-gentoo.js" \ || die - # Without methodjit and tracejit there's no conflict with PaX - if use jit ; then - # Pax mark xpcshell for hardened support, only used for startupcache creation. - pax-mark m "${S}/${obj_dir}/mozilla/dist/bin/xpcshell" - fi + # Pax mark xpcshell for hardened support, only used for startupcache creation. + pax-mark m "${S}/${obj_dir}/mozilla/dist/bin/xpcshell" MOZ_MAKE_FLAGS="${MAKEOPTS}" \ emake DESTDIR="${D}" install || die "emake install failed" @@ -320,15 +317,8 @@ src_install() { || die domenu "${T}"/${PN}.desktop || die - # Without methodjit and tracejit there's no conflict with PaX - if use jit ; then - # Required in order to use plugins and even run firefox on hardened. - pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/{seamonkey,seamonkey-bin} - fi - - # Plugin-container needs to be pax-marked for hardened to ensure plugins such as flash - # continue to work as expected. - pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/plugin-container + # Required in order to use plugins and even run firefox on hardened. + pax-mark m "${ED}"${MOZILLA_FIVE_HOME}/{seamonkey,seamonkey-bin,plugin-container} # Handle plugins dir through nsplugins.eclass share_plugins_dir diff --git a/x11-drivers/nvidia-drivers/Manifest b/x11-drivers/nvidia-drivers/Manifest index 0d62c502a393..68575682e73b 100644 --- a/x11-drivers/nvidia-drivers/Manifest +++ b/x11-drivers/nvidia-drivers/Manifest @@ -3,19 +3,23 @@ DIST NVIDIA-FreeBSD-x86-173.14.37.tar.gz 19603409 SHA256 568109656f95791448306d5 DIST NVIDIA-FreeBSD-x86-304.88.tar.gz 33651825 SHA256 739325b26a93d934d015159c420ef1875a24ccd62a5bb482e688cf918d4fa33d SHA512 6dab929d2d2bacfc3a96ab24ff02996938613851e2b3c050ed3a1d0cca3751c574f12508e21119f2b43ff0421c3f88bf4edd51a37f3374c72c6337bcb8d6bcdb WHIRLPOOL b9be513a8dd8ce4cd6eeb23a24e725c751bb2cce0745477df2b4b84d7d03ad557d0b16bcdfb8d642168de09d59b057cb2955fca11f50b281ebad92f30a7dc4e1 DIST NVIDIA-FreeBSD-x86-310.44.tar.gz 32589992 SHA256 3f425b5f86d3cd764188e6e3f8c63cb4245734e11ba3b3d3ecc66786bbc279e6 SHA512 054cd04a340f773a1e6c670fee1468bd78c8e919d3d54642550490970db17e3286a899e0db4aacfb3512dc919056d0c47c81b84050e5f40821b7e335397d5b9f WHIRLPOOL 35601ba6cbb53d0ca48da33b7aefc21f0acf05a0d17b87001515e757f2be319ec04af20504f57bbcfe49e56918bfb6b9a94338d9da8c6eb399279254a68471c8 DIST NVIDIA-FreeBSD-x86-313.30.tar.gz 32591892 SHA256 1e02831fbaddf2f27808ea26352d835417f59bcf54ddb3e9c0f1d7b76dcb4666 SHA512 68cf61fabf707dfa1225011cab3749959ab29f09f611347eb9f9bd55065012d04382998e67091c4d3c1af9be21be6381aef9b6414448ee15f9a36d44448f5bf8 WHIRLPOOL 71ded70f45e880db2c2850c596cebafd004adf89f7131adaf324d1d38abbb5457a700bfa9e671bfa144515556f011df8a37fdf22b78b879f39007be6487f060a +DIST NVIDIA-FreeBSD-x86-319.12.tar.gz 34024256 SHA256 08e89c562352a6975eae96c5ea599742daefb188c0cc34ca2bd8f861a3060520 SHA512 042f63b2513db6bbbb2bbffb4b291002cda7ea3d739297862592f17112d4a41f7f0ccc25749ebef41420814c136a2f375d1053bbcb4c6845f2cadea830e93bed WHIRLPOOL de0a4ece04b5f3d76132346f0e17279fc2cf4bd4d5f2d298289fdc95ba8fd4c68dbfe72326c02f574f01b593fc11f1b97fe6c5870382a479d74d9ecd0b71d292 DIST NVIDIA-FreeBSD-x86-96.43.23.tar.gz 15463464 SHA256 18d855db8381eda1a6cf548c9e5095fc5bb8694bf1d6e24fc1072fba4e54cd78 SHA512 42d7b1b76cdb3b23680363e565614a22112162a5dd3639cb804fe670c0c3f3f23595bbefa3f78afdc6a8ca848446dee853c7a355f2c96a0d01b354753ba2785c WHIRLPOOL f8e59ce521990cd9edee441e73f973f074db492952807a0931e362102874cddbb47604ff5c5eb20a0cbde27f9b6d4e440dd12cc2e5a20c9cb65bf3c0b3e62511 DIST NVIDIA-FreeBSD-x86_64-304.88.tar.gz 34597351 SHA256 be0e20a543fa14a8f91481dd64b080093b19edf951bf631c62365a64dadb1934 SHA512 143af863aef72962d83c6f77160512d0860a62964e92043400674b0be95735ae6f2dbdd25c42fa96b4511cece9c73b7072f829a88d46ab6b79aa750b65e64748 WHIRLPOOL 74b5014736065e178b261716e81f367395252efb3aa3b84faab6b6d26f561caa129e1d9bc0e02ce98f83dcaa3603fddd155de4b50e760bf2ea8df4c176b21e76 DIST NVIDIA-FreeBSD-x86_64-310.44.tar.gz 33558256 SHA256 bd4f780907e3208b233e0f911e9ee2a6cfe163efd33bc29c06ecc249041c961b SHA512 68b0e9222ecb349bdf7cea155756ce3fbb35be12ab9f365bda547c09e37f35b42b8625d32ab3375a0d6c0426036aa324275cb87f7fa63bde9ef372e876d736ab WHIRLPOOL 83696b09a40dfaa6c50a1a2d826df80c0feb03b1011ac24c1b3771ff277f8156047f2bfb6528bb01b76dcbc95aaefd167fe7198c15a5fd6b3118e2d4fb320c3b DIST NVIDIA-FreeBSD-x86_64-313.30.tar.gz 33557658 SHA256 192ad1bb8a0cd649e12bcccf97c5f4d2002d6695126fea81586991d9e95248d3 SHA512 79b3b47bdcbc99f724f8c424733c11f1b2653103bbe0ba9849587628611d9da08ea434c786cc7d3d891bde3dfe4068298a7377ce5b1a3484fb64ef4d28c896da WHIRLPOOL 7307d6adb04b47b8403134e7394bf9af4f90839d1fb62aa3b7b7c6d8e367392829fb249dc8d444e66158fa5b5b15cf5b6c16e1f5659a22a15c17f55eda026660 +DIST NVIDIA-FreeBSD-x86_64-319.12.tar.gz 34421034 SHA256 f20f13f39c60f6dc58297bf55df5b0e1b1adf280c7f6b1f2e7b782d278d575bd SHA512 3fe3d3218380450108145c6744314bf44f14bd882bc4d476ff4032e7c9f4c3f7b47b0b787a350fce53e6ca26e6ba8a1f49bf9bfc8a7ff6637780d57b3c63eaf2 WHIRLPOOL 406dc59841cc87874c562c6c5f7b120046759a7f6f092f9741a867d13e00f89c8d359fe9f8e69cc0b76dd70f64defbd4be9ee79645362bfd9de4fd0153129a2e DIST NVIDIA-Linux-x86-173.14.36-pkg0.run 14400303 SHA256 ac246f1250756863be3a6a8a8f3ba92d4f0fcfb5dcab3a836b2af3a4eb8c96a7 SHA512 986ba6dca934100879d1e7a38a8085996ea0074666fe9cb135c4dff43602df34af175b54759576700051c33ef72f32d86f544df892c59f62eff0312a233167ef WHIRLPOOL 8e424423a8010b3b4476cbbbdb14132330a2f54b68cbe3843fa6367e86f23457c9640eb35d4b17ff437726d8176f21557848c4ef4c7632dfb1753eb2c9cd886b DIST NVIDIA-Linux-x86-173.14.37-pkg0.run 14765478 SHA256 0c16885a1d8c370f85be73fe2ebb1e74c0e23932b349ca381b02c2b67ab9371a SHA512 0329bb7a971a93982be2626661d6f3faeede19ce6fef603afc85cce74cea1d5ffd7c93091c4e82de60a5a54d869b47cb2014677ae64081d234d7eb0745e01937 WHIRLPOOL dd558a6ef3a08d7cd1471c25b2d2b533f0a4631e58705d01eedf13b66a134797a07d8e7377313b9cdd55edcf1344c58e6f225998cb593f8eb6e26846a62dfb5d DIST NVIDIA-Linux-x86-304.88.run 39682604 SHA256 71e10294f073e31a387da4282b95cdde5fbfc996cb1c564f290eb0df1289b7cb SHA512 ba6f0236aead2f5161c94c7eaffb2497815ba1a7cbf872ae37d620d66533d4847acb6dfcc230e2b751aa9717ae552940ed6d3da1a9209aa54f6a810e3f551e49 WHIRLPOOL 9c2e0438630e86ca8c7aa2f26928113e5f15dcf808be8a4c2e937fd04b8d1aa7304bda714580834cc5ef4dc57304f41be62b55ee75545b9cfca3533b6db737e6 DIST NVIDIA-Linux-x86-310.44.run 38875248 SHA256 badc82a6a2edb52caea4cf4c3d8acce35cdd05b8594e2d5b7d97740f7859ae00 SHA512 541cfe5b4a5388a258ebf06c9ef950df3ada0560150758187b21d70087531cfc0e0481b6709d8e00789d14dbcac8b9b6427dfa10ff85978ffe8886081970f268 WHIRLPOOL c622239b2830dcad8b12f672eb08ed443fc6f9f8f09b42291914f461ae5c408dbb7cf768408d8664f4865795773cebae717e620b61239f34149f79283acc901f DIST NVIDIA-Linux-x86-313.30.run 38845860 SHA256 0a0f10979b1bca8e4a244e204b58aeb9a580924a9dd7b11b21d15abfe1ad49ad SHA512 c3b07e7186fcf5a1f3e73f4e9510dddff2a42c0202bc471a946e38e636af27b2d17206b7105a7a80179fc17ebceab6c2802ff6ddaabae9e16a930dfa1252a2db WHIRLPOOL 2d4402883a480ae3050af18f3fe1aec4110132aa4eda0ce9675f79471a526e8b90b9ebe6a0a5c76321474be6ace963520b903cf809835472649b095be757ec52 +DIST NVIDIA-Linux-x86-319.12.run 27346156 SHA256 2569514adf34f4bc82efde4e1d3e1fb25aed472f15807ee8f1ebdcc7964e8cf0 SHA512 a83968265a9c3b07e9c4efeef57ccb96d32dcd6e68406fff42d25f822dda7143c5d9a73497616a044ae8399f494f1087eb866ef349e37e4b01792c249c4da1b7 WHIRLPOOL f3018b9ef7ace31fd41ceaae9f9a2c873226a8ea14e95133ca4e55f1d1021c4557ddc87938ef7fcdd5a297543930d793936d503012c77ee540fd9fc3faf1bb5c DIST NVIDIA-Linux-x86-96.43.23-pkg0.run 11504817 SHA256 51e6adf4ba73071622045fc37169f80db3ae3e784dff53b29d35146a04042142 SHA512 bed5726e57637481fe4e3c03a65ec14fe949f00860e729ebde408f4fd861d7bfdc296a78bc2f5d42e8b282db09f4bbde1e0545df7228fa20227080dc4b868ba7 WHIRLPOOL 6d4fd1786c11f4e326cc3101d0bb1a2f8b63c25c3dd59f10188f8355759e2861ce44fd53d60258b513d5a1d6124d0f91ba8edf4d3668b6feabfb3e8d585f14fe DIST NVIDIA-Linux-x86_64-173.14.36-pkg2.run 20207393 SHA256 e7e3a23e80eb300d32b0203d360a5158162f5ce0f86be0ea6875e9a2b3ba4381 SHA512 c652f7333c809ebb3b74ce1e080cd506dcdb60ccacb0b7aa79d04a4f993964040edc6ff26673b2028a844052d1b313650aa1b4d0cffa35785ac0a9ada48319a5 WHIRLPOOL 22c0b1ea44ce3ce1636c276c1d0e0e5bc25c99556c207b16dfc42429008d968e5949c97c1ade3f8a17d991bb3b9ed302e2405dd216310e878e49c644891b8867 DIST NVIDIA-Linux-x86_64-173.14.37-pkg2.run 20647769 SHA256 3e34a48cf4143469e6ae60c792932b5e920d7244ed374eb818d5d72af94a7809 SHA512 618a4379694a3102a7c0487c552aca3664639c45432b64aadac9f90c0e9dcad4de82b0dec15f7fdf03b2b222713133ee9f4a936755915d38a2c2fef0bc97f342 WHIRLPOOL 9ed7b65a26b6f846d0ec1aeb1eb051331e808c6791ace7324951bdf20861701fc1b9c9cbc00cacd9d86c9d9568509069d9ecf35b7fd8d1c5b5dc0e3ef9c3db0a DIST NVIDIA-Linux-x86_64-304.88.run 68041437 SHA256 c1a73211566b085214b0ad1824733aa56d09c6139f729feebd0eff44f6113da3 SHA512 8a907f9ed307b1e4b5563a9aba9d6c1c036885cd64a4a229d6831eb7a855921971e652b7940333e366d5088f97cf3596fb739853b3c3cf94446ee0cea6164ab2 WHIRLPOOL 2e43479bb52d1dcbe1007cda779ab21ed064883769358a09bdd765e55f6b35a855a51006e070d33ddd2a3808802cdb4fa2ae63cc7cc189561934d00574492ca8 DIST NVIDIA-Linux-x86_64-310.44.run 68380500 SHA256 585365fc37939794ab7ed6907ab2fd9fbcc6f4f19c003d21139895dc97dd88f4 SHA512 1643398b63ee792b00cc714f686675949b3c499f08be24cd114c1b13a39325aaf3d59ea6871d55c8d93729e1d6062f46ebc92ee40eab56df6f86a0134a66eae5 WHIRLPOOL 51ff95e71e9985d1aab4dd2765752d6023070a891baaccc24f2376a7fa3b4012aa81e15664268c60bdc8d87bd8eeb165dc86ed758ddac80ac9b27d44f717145c DIST NVIDIA-Linux-x86_64-313.30.run 68379307 SHA256 72317f2e4c459c33c764e3283deb3e1615b1852ead1f9bfad82148e120506022 SHA512 ae4439697e47eff98e06e5f77de979bdce096f95efa8bdee9c6fc939b42b5ce3b11c23d7691e974cf0f6f783eeb0fb694670636538352a0e8979f88d687f1f86 WHIRLPOOL c12a68fcc4d78f3856d87a86cef43c3632c0db1b6c5799b6482584d4d83a7cc863b9b394a501b96534175e11663c602d72f6ffa49f85461eaf4324dc61e654ff +DIST NVIDIA-Linux-x86_64-319.12.run 48599567 SHA256 4b68617d75d0d1149d2d6e836783429c715204fad567aa621ae7982df676a8d4 SHA512 b70459691fd46705c502c6d5190e9487d54455f19f48de8a944c9f0c9c1f04e3e7e06d35c7ba0711821b8e78c0c698e50032329e7ebb2436419040f3f1fa8ab6 WHIRLPOOL 08f204305f36c1bc6f8309aaa23f51acb061aab4b4e7e05844b3d233c59f3d47a8d212ba25c2b90d076b9335d600f714a7856fe4db136ad4dea80b1b6f692191 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.12.ebuild b/x11-drivers/nvidia-drivers/nvidia-drivers-319.12.ebuild new file mode 100644 index 000000000000..bda8354d523b --- /dev/null +++ b/x11-drivers/nvidia-drivers/nvidia-drivers-319.12.ebuild @@ -0,0 +1,446 @@ +# 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.12.ebuild,v 1.2 2013/04/10 14:51:04 jer Exp $ + +EAPI=5 + +inherit eutils flag-o-matic linux-info linux-mod multilib nvidia-driver \ + portability toolchain-funcs unpacker user udev + +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="x86? ( ftp://download.nvidia.com/XFree86/Linux-x86/${PV}/${X86_NV_PACKAGE}.run ) + amd64? ( ftp://download.nvidia.com/XFree86/Linux-x86_64/${PV}/${AMD64_NV_PACKAGE}.run ) + amd64-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86_64/${PV}/${AMD64_FBSD_NV_PACKAGE}.tar.gz ) + x86-fbsd? ( ftp://download.nvidia.com/XFree86/FreeBSD-x86/${PV}/${X86_FBSD_NV_PACKAGE}.tar.gz )" + +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 ) + multilib? ( app-emulation/emul-linux-x86-xlibs ) + 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 ) +" + +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 9 ; 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 || die + + # 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" || die + fi + + exeinto /boot/modules + doexe "${S}/src/nvidia.ko" || die + 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 || die "failed to install 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-proxy-control.1.gz" + fi + + # Helper Apps + exeinto /opt/bin/ + + if use X; then + doexe ${NV_OBJ}/nvidia-xconfig || die + fi + + if use kernel_linux ; then + doexe ${NV_OBJ}/nvidia-debugdump || die + doexe ${NV_OBJ}/nvidia-cuda-proxy-control || die + doexe ${NV_OBJ}/nvidia-cuda-proxy-server || die + doexe ${NV_OBJ}/nvidia-smi || die + newinitd "${FILESDIR}/nvidia-smi.init" nvidia-smi + fi + + if use tools; then + doexe ${NV_OBJ}/nvidia-settings || die + fi + + exeinto /usr/bin/ + doexe ${NV_OBJ}/nvidia-bug-report.sh || die + + # 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 nvidia-drivers-settings.png + domenu "${FILESDIR}"/nvidia-drivers-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" +} + +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 + + elog "You must be in the video group to use the NVIDIA device" + elog "For more info, read the docs at" + elog "http://www.gentoo.org/doc/en/nvidia-guide.xml#doc_chap3_sect6" + elog + elog "This ebuild installs a kernel module and X driver. Both must" + elog "match explicitly in their version. This means, if you restart" + elog "X, you must modprobe -r nvidia before starting it back up" + elog + elog "To use the NVIDIA GLX, run \"eselect opengl set nvidia\"" + elog + elog "To use the NVIDIA CUDA/OpenCL, run \"eselect opencl set nvidia\"" + elog + elog "NVIDIA has requested that any bug reports submitted have the" + elog "output of /opt/bin/nvidia-bug-report.sh included." + 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-libs/cairo/cairo-1.12.10-r2.ebuild b/x11-libs/cairo/cairo-1.12.10-r2.ebuild index 2315f4e40b7b..33dab181af5d 100644 --- a/x11-libs/cairo/cairo-1.12.10-r2.ebuild +++ b/x11-libs/cairo/cairo-1.12.10-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-libs/cairo/cairo-1.12.10-r2.ebuild,v 1.2 2013/03/02 23:43:43 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/cairo/cairo-1.12.10-r2.ebuild,v 1.3 2013/04/09 22:05:38 ssuominen Exp $ EAPI=5 @@ -27,7 +27,7 @@ RESTRICT="test" RDEPEND="media-libs/fontconfig media-libs/freetype:2 - media-libs/libpng:0 + media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) diff --git a/x11-libs/cairo/cairo-1.12.12-r1.ebuild b/x11-libs/cairo/cairo-1.12.12-r1.ebuild index e1d5eee099c7..284339fef781 100644 --- a/x11-libs/cairo/cairo-1.12.12-r1.ebuild +++ b/x11-libs/cairo/cairo-1.12.12-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/x11-libs/cairo/cairo-1.12.12-r1.ebuild,v 1.1 2013/03/11 22:46:15 remi Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/cairo/cairo-1.12.12-r1.ebuild,v 1.2 2013/04/09 22:05:38 ssuominen Exp $ EAPI=5 @@ -27,7 +27,7 @@ RESTRICT="test" RDEPEND="media-libs/fontconfig media-libs/freetype:2 - media-libs/libpng:0 + media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) diff --git a/x11-libs/cairo/cairo-1.12.12.ebuild b/x11-libs/cairo/cairo-1.12.12.ebuild index bc047cc2bfa7..1053921ec1b2 100644 --- a/x11-libs/cairo/cairo-1.12.12.ebuild +++ b/x11-libs/cairo/cairo-1.12.12.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-libs/cairo/cairo-1.12.12.ebuild,v 1.3 2013/03/02 23:43:43 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/cairo/cairo-1.12.12.ebuild,v 1.4 2013/04/09 22:05:38 ssuominen Exp $ EAPI=5 @@ -27,7 +27,7 @@ RESTRICT="test" RDEPEND="media-libs/fontconfig media-libs/freetype:2 - media-libs/libpng:0 + media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.28.0 directfb? ( dev-libs/DirectFB ) diff --git a/x11-libs/cairo/cairo-9999.ebuild b/x11-libs/cairo/cairo-9999.ebuild index a1bf6f007929..d432d0bbcdb1 100644 --- a/x11-libs/cairo/cairo-9999.ebuild +++ b/x11-libs/cairo/cairo-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/x11-libs/cairo/cairo-9999.ebuild,v 1.29 2013/03/11 22:46:15 remi Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/cairo/cairo-9999.ebuild,v 1.30 2013/04/09 22:05:38 ssuominen Exp $ EAPI=5 @@ -27,7 +27,7 @@ RESTRICT="test" RDEPEND="media-libs/fontconfig media-libs/freetype:2 - media-libs/libpng:0 + media-libs/libpng:0= sys-libs/zlib >=x11-libs/pixman-0.22.0 directfb? ( dev-libs/DirectFB ) diff --git a/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.2.ebuild b/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.2.ebuild index 47110264b5e4..5a6368e91aef 100644 --- a/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.2.ebuild +++ b/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.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/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.2.ebuild,v 1.10 2013/04/01 18:25:39 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gnome-pty-helper/gnome-pty-helper-0.34.2.ebuild,v 1.11 2013/04/09 16:44:26 ago Exp $ EAPI="4" GNOME_ORG_MODULE="vte" @@ -13,7 +13,7 @@ HOMEPAGE="http://git.gnome.org/browse/vte/" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux" IUSE="+hardened" # gnome-pty-helper was spit out with 0.27.90 diff --git a/x11-libs/gtk+/gtk+-2.24.16.ebuild b/x11-libs/gtk+/gtk+-2.24.16.ebuild index 4448a047c8ab..170e2ae1e3ac 100644 --- a/x11-libs/gtk+/gtk+-2.24.16.ebuild +++ b/x11-libs/gtk+/gtk+-2.24.16.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-libs/gtk+/gtk+-2.24.16.ebuild,v 1.11 2013/04/01 18:25:44 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-2.24.16.ebuild,v 1.12 2013/04/09 16:44:33 ago Exp $ EAPI="5" @@ -12,7 +12,7 @@ SRC_URI="${SRC_URI} mirror://gentoo/introspection.m4.bz2" LICENSE="LGPL-2+" SLOT="2" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~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" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 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="aqua cups debug examples +introspection test vim-syntax xinerama" # NOTE: cairo[svg] dep is due to bug 291283 (not patched to avoid eautoreconf) diff --git a/x11-libs/gtkglarea/gtkglarea-2.0.1-r1.ebuild b/x11-libs/gtkglarea/gtkglarea-2.0.1-r1.ebuild index 0687688af140..1a3e6c7813fa 100644 --- a/x11-libs/gtkglarea/gtkglarea-2.0.1-r1.ebuild +++ b/x11-libs/gtkglarea/gtkglarea-2.0.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/x11-libs/gtkglarea/gtkglarea-2.0.1-r1.ebuild,v 1.9 2013/04/01 18:25:46 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkglarea/gtkglarea-2.0.1-r1.ebuild,v 1.10 2013/04/09 16:44:39 ago Exp $ EAPI="5" @@ -14,7 +14,7 @@ HOMEPAGE="http://www.mono-project.com/GtkGLArea" LICENSE="LGPL-2+ GPL-2+" # examples are GPL-2+, library is LGPL-2+ SLOT="2" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="examples" RDEPEND=">=x11-libs/gtk+-2.0.3:2 diff --git a/x11-libs/gtkglext/gtkglext-1.2.0-r1.ebuild b/x11-libs/gtkglext/gtkglext-1.2.0-r1.ebuild index c27d7c4dbc18..002b2f0f2f00 100644 --- a/x11-libs/gtkglext/gtkglext-1.2.0-r1.ebuild +++ b/x11-libs/gtkglext/gtkglext-1.2.0-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/x11-libs/gtkglext/gtkglext-1.2.0-r1.ebuild,v 1.10 2013/04/01 18:25:49 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkglext/gtkglext-1.2.0-r1.ebuild,v 1.11 2013/04/09 16:44:45 ago Exp $ EAPI="4" @@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux" IUSE="" RDEPEND=">=dev-libs/glib-2:2 diff --git a/x11-libs/gtksourceview/gtksourceview-3.6.3.ebuild b/x11-libs/gtksourceview/gtksourceview-3.6.3.ebuild index bf83060c5896..029dec543b87 100644 --- a/x11-libs/gtksourceview/gtksourceview-3.6.3.ebuild +++ b/x11-libs/gtksourceview/gtksourceview-3.6.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/x11-libs/gtksourceview/gtksourceview-3.6.3.ebuild,v 1.9 2013/04/01 18:25:51 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtksourceview/gtksourceview-3.6.3.ebuild,v 1.10 2013/04/09 16:44:51 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -14,7 +14,7 @@ HOMEPAGE="http://projects.gnome.org/gtksourceview/" LICENSE="GPL-2+ LGPL-2.1+" SLOT="3.0" IUSE="glade +introspection" -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" +KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" # Note: has native OSX support, prefix teams, attack! RDEPEND=" diff --git a/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild b/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild index 31d4005d0022..416469631236 100644 --- a/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild +++ b/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.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-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild,v 1.5 2013/03/29 21:13:21 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdesktop-agnostic/libdesktop-agnostic-0.3.92.ebuild,v 1.7 2013/04/09 18:25:26 ago Exp $ EAPI=4 PYTHON_DEPEND="2:2.7" @@ -14,7 +14,7 @@ SRC_URI="http://launchpad.net/${PN}/0.4/${PV}/+download/${P}.tar.gz" LICENSE="GPL-2 LGPL-2.1" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="debug +gconf glade gnome +introspection" RDEPEND=">=dev-libs/glib-2 diff --git a/x11-libs/libwnck/libwnck-3.4.5.ebuild b/x11-libs/libwnck/libwnck-3.4.5.ebuild index 6713c2f5e42a..dbb9d79fa699 100644 --- a/x11-libs/libwnck/libwnck-3.4.5.ebuild +++ b/x11-libs/libwnck/libwnck-3.4.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/x11-libs/libwnck/libwnck-3.4.5.ebuild,v 1.9 2013/04/01 18:25:53 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/libwnck/libwnck-3.4.5.ebuild,v 1.10 2013/04/09 16:44:59 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://www.gnome.org/" LICENSE="LGPL-2+" SLOT="3" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x64-solaris ~x86-solaris" IUSE="+introspection startup-notification tools" diff --git a/x11-libs/rep-gtk/rep-gtk-0.90.8.1.ebuild b/x11-libs/rep-gtk/rep-gtk-0.90.8.1.ebuild index a99d005a9a6e..2305b9f0d22d 100644 --- a/x11-libs/rep-gtk/rep-gtk-0.90.8.1.ebuild +++ b/x11-libs/rep-gtk/rep-gtk-0.90.8.1.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/x11-libs/rep-gtk/rep-gtk-0.90.8.1.ebuild,v 1.6 2012/10/28 16:36:31 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/rep-gtk/rep-gtk-0.90.8.1.ebuild,v 1.7 2013/04/09 13:28:54 naota Exp $ EAPI="4" @@ -12,7 +12,7 @@ SRC_URI="http://download.tuxfamily.org/librep/${PN}/${P}.tar.xz" LICENSE="GPL-2" SLOT="gtk-2.0" -KEYWORDS="alpha amd64 ia64 ppc ~ppc64 sparc x86" +KEYWORDS="alpha amd64 ia64 ppc ~ppc64 sparc x86 ~x86-fbsd" IUSE="" RDEPEND=">=dev-libs/librep-0.90.5 diff --git a/x11-libs/vte/vte-0.34.2.ebuild b/x11-libs/vte/vte-0.34.2.ebuild index 029ef83b33fb..da1b8e0f6b1d 100644 --- a/x11-libs/vte/vte-0.34.2.ebuild +++ b/x11-libs/vte/vte-0.34.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/x11-libs/vte/vte-0.34.2.ebuild,v 1.10 2013/04/01 18:25:55 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/vte/vte-0.34.2.ebuild,v 1.11 2013/04/09 16:45:06 ago Exp $ EAPI="4" GCONF_DEBUG="yes" @@ -14,7 +14,7 @@ HOMEPAGE="https://live.gnome.org/Terminal/VTE" LICENSE="LGPL-2+" SLOT="2.90" IUSE="debug glade +introspection" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris" PDEPEND="x11-libs/gnome-pty-helper" RDEPEND=">=dev-libs/glib-2.31.13:2 diff --git a/x11-misc/dockmanager/dockmanager-0.1.0.ebuild b/x11-misc/dockmanager/dockmanager-0.1.0.ebuild index f3bd9f95d5a6..423ab6c5dfe5 100644 --- a/x11-misc/dockmanager/dockmanager-0.1.0.ebuild +++ b/x11-misc/dockmanager/dockmanager-0.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/x11-misc/dockmanager/dockmanager-0.1.0.ebuild,v 1.4 2013/03/29 21:15:23 angelos Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/dockmanager/dockmanager-0.1.0.ebuild,v 1.6 2013/04/09 18:25:19 ago Exp $ EAPI=3 PYTHON_DEPEND="2" @@ -13,7 +13,7 @@ SRC_URI="http://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" -KEYWORDS="~amd64 ~x86" +KEYWORDS="amd64 x86" IUSE="debug" RDEPEND="dev-libs/dbus-glib diff --git a/x11-misc/seetxt/Manifest b/x11-misc/seetxt/Manifest index b5817701ee69..46d14e5ebbc0 100644 --- a/x11-misc/seetxt/Manifest +++ b/x11-misc/seetxt/Manifest @@ -1,2 +1 @@ -DIST see-0.6.tar.bz2 139769 RMD160 dafa6133324bf5b54374e5730c5f760dd7dd8ace SHA1 bc665fddf0c1cbfd432bf44b3f431f9acd44e65d SHA256 291e8973b3687bc0cf0bedf0a2b88f7301a9bef543f10e1f20260dfee288bdc9 -DIST seetxt-0.72.tar.bz2 141695 RMD160 d6bd6ffc45c7477845efb12bbd524ad3e1ecca1f SHA1 95b1359a54977e19d09ce4449c5bf17db795ee6d SHA256 c38786057e3939f262235c68cf3b8a7d7ab1450ffe4508ec98ec10e16b396159 +DIST seetxt-0.72.tar.bz2 141695 SHA256 c38786057e3939f262235c68cf3b8a7d7ab1450ffe4508ec98ec10e16b396159 SHA512 3d6e604e3ee8b0d382dcf60a507c54162eb28d5a9d61edc631a40a95f550276bf4e505ea37966a50d7f38ba952408d8d06b91bc71a8eb32322cb047a4ffc27ea WHIRLPOOL 1bd4060d5a2d49e601b868a43aa3e24ea104ed953a96701c50ab7ded234eabf9f31683d14294914e517bd5df641e58f56d50c2b7898338032f3c4561df37d615 diff --git a/x11-misc/seetxt/files/0.6-respect_destdir.patch b/x11-misc/seetxt/files/0.6-respect_destdir.patch deleted file mode 100644 index ea4b99888aab..000000000000 --- a/x11-misc/seetxt/files/0.6-respect_destdir.patch +++ /dev/null @@ -1,51 +0,0 @@ -diff --git a/Makefile.am b/Makefile.am -index d3ce419..9983d6a 100644 ---- a/Makefile.am -+++ b/Makefile.am -@@ -2,23 +2,12 @@ SUBDIRS = src - buildextra = @builddir@/extra - pkgdatadir = $(datadir)/seetxt-runtime - --install-data-am: -- -cp -f $(buildextra)/seetxt.1 $(mandir)/man1/ -- -ln -s $(mandir)/man1/seetxt.1 $(mandir)/man1/seeman.1 -- -ln -s $(bindir)/seetxt $(bindir)/seeman -- @echo " - enjoy see -" -- @echo " Installing some additional files in $(pkgdatadir)..." -- -mkdir $(pkgdatadir) -- -cp -f $(buildextra)/seeon.png $(buildextra)/seeoff.png $(buildextra)/.seeconfig $(pkgdatadir) -- -cp $(buildextra)/filelist $(pkgdatadir) -- -chmod 666 $(pkgdatadir)/filelist -- -strip --strip-all $(bindir)/seetxt -+dist_man_MANS = $(buildextra)/seetxt.1 -+pkgdata_DATA = $(buildextra)/seeon.png $(buildextra)/seeoff.png $(buildextra)/.seeconfig $(buildextra)/filelist -+ -+install-data-hook: -+ $(LN_S) seetxt.1 "$(DESTDIR)$(mandir)/man1/seeman.1" -+ -+uninstall-hook: -+ $(RM) "$(DESTDIR)$(mandir)/man1/seeman.1" - --uninstall: uninstall-recursive -- @echo "Thanks for trying SEE!" -- -rm $(pkgdatadir)/* -- -rm $(pkgdatadir)/.seeconfig -- -rm $(mandir)/man1/seetxt.1 -- -rm $(mandir)/man1/seeman.1 -- -rm $(bindir)/seeman -- -rmdir $(pkgdatadir) -diff --git a/src/Makefile.am b/src/Makefile.am -index 5181bf2..0d952db 100644 ---- a/src/Makefile.am -+++ b/src/Makefile.am -@@ -3,3 +3,10 @@ seetxt_CFLAGS = -D SDIR=\"$(datadir)/seetxt-runtime\" - seetxt_LDFLAGS = `pkg-config --libs gtk+-2.0` - INCLUDES = `pkg-config --cflags gtk+-2.0` - seetxt_SOURCES = see.c see.h -+ -+install-exec-hook: -+ $(LN_S) seetxt "$(DESTDIR)$(bindir)/seeman" -+ -+uninstall-hook: -+ $(RM) "$(DESTDIR)$(bindir)/seeman" -+ diff --git a/x11-misc/seetxt/files/0.72-0001-fix-linking.patch b/x11-misc/seetxt/files/0.72-0001-fix-linking.patch new file mode 100644 index 000000000000..b21e05592933 --- /dev/null +++ b/x11-misc/seetxt/files/0.72-0001-fix-linking.patch @@ -0,0 +1,39 @@ +From 0eb39c4c08e7e3787d411a36e4997ae144e2bed5 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Tiziano=20M=C3=BCller?= +Date: Tue, 9 Apr 2013 07:23:19 +0200 +Subject: [PATCH 1/2] Fix linking. + +--- + configure.ac | 2 +- + src/Makefile.am | 4 +++- + 2 files changed, 4 insertions(+), 2 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 3a1aa30..f1d3f30 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -13,7 +13,7 @@ AM_PROG_CC_C_O + AC_PROG_LN_S # for ln -s (mandatory) + + # Checks for libraries. +-GTK_REQUIRED_VERSION=2.12.0 ++PKG_CHECK_MODULES([DEPS], [gtk+-2.0 >= 2.12.0]) + + # Checks for header files. + AC_CHECK_HEADERS([dirent.h errno.h fcntl.h pthread.h stdlib.h string.h regex.h sys/socket.h sys/time.h time.h unistd.h]) +diff --git a/src/Makefile.am b/src/Makefile.am +index 2c8a24d..fca6504 100644 +--- a/src/Makefile.am ++++ b/src/Makefile.am +@@ -1,5 +1,7 @@ ++AM_CPPFLAGS = $(DEPS_CFLAGS) ++ + bin_PROGRAMS = seetxt + seetxt_CFLAGS = -D SDIR=\"$(datadir)/seetxt-runtime\" +-seetxt_LDFLAGS = `pkg-config --libs gtk+-2.0` -lpthread ++seetxt_LDADD = $(DEPS_LIBS) -lpthread + INCLUDES = `pkg-config --cflags gtk+-2.0` + seetxt_SOURCES = see.c server.c util.c +-- +1.8.1.5 + diff --git a/x11-misc/seetxt/files/0.72-0002-fix-shared-files-install.patch b/x11-misc/seetxt/files/0.72-0002-fix-shared-files-install.patch new file mode 100644 index 000000000000..e4f488a32d48 --- /dev/null +++ b/x11-misc/seetxt/files/0.72-0002-fix-shared-files-install.patch @@ -0,0 +1,32 @@ +From a1137a02237df31e063af622be0dc76c2ab3e45a Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Tiziano=20M=C3=BCller?= +Date: Tue, 9 Apr 2013 07:24:45 +0200 +Subject: [PATCH 2/2] Fix shared files install + +--- + Makefile.am | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile.am b/Makefile.am +index 691c0f1..404d743 100644 +--- a/Makefile.am ++++ b/Makefile.am +@@ -1,13 +1,13 @@ + SUBDIRS = src + buildextra = @builddir@/extra +-pkgdatadir = $(DESTDIR)$(datadir)/seetxt-runtime ++pkgdatadir = $(datadir)/seetxt-runtime + + install-data-am: + -install --mode=644 $(buildextra)/seetxt.1 $(DESTDIR)$(mandir)/man1/ + @echo " " + @echo "Installing some additional files in $(DESTDIR)$(pkgdatadir)..." + @echo " " +- -mkdir $(pkgdatadir) ++ -mkdir -p $(DESTDIR)$(pkgdatadir) + -install --mode=644 $(buildextra)/seeon.png $(buildextra)/seeoff.png $(buildextra)/.seeconfig $(buildextra)/COPYING.images $(DESTDIR)$(pkgdatadir) + -install --mode=666 $(buildextra)/filelist $(DESTDIR)$(pkgdatadir) + -cd $(DESTDIR)$(mandir)/man1; ln -s seetxt.1 seeman.1 +-- +1.8.1.5 + diff --git a/x11-misc/seetxt/seetxt-0.6.ebuild b/x11-misc/seetxt/seetxt-0.6.ebuild deleted file mode 100644 index ced516a316ac..000000000000 --- a/x11-misc/seetxt/seetxt-0.6.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/seetxt/seetxt-0.6.ebuild,v 1.1 2012/05/16 06:34:17 dev-zero Exp $ - -EAPI=3 - -inherit autotools eutils - -MY_P="see-${PV}" - -DESCRIPTION="Clever, lightweight GUI text file and manual page viewer for X windows." -HOMEPAGE="http://code.google.com/p/seetxt/" -SRC_URI="http://seetxt.googlecode.com/files/${MY_P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND="x11-libs/gtk+:2" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - epatch "${FILESDIR}/${PV}-respect_destdir.patch" - eautoreconf -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc AUTHORS ChangeLog NEWS -} diff --git a/x11-misc/seetxt/seetxt-0.72-r1.ebuild b/x11-misc/seetxt/seetxt-0.72-r1.ebuild new file mode 100644 index 000000000000..3370ea7a62b5 --- /dev/null +++ b/x11-misc/seetxt/seetxt-0.72-r1.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/x11-misc/seetxt/seetxt-0.72-r1.ebuild,v 1.1 2013/04/09 05:41:27 dev-zero Exp $ + +EAPI=5 + +inherit autotools eutils + +DESCRIPTION="Clever, lightweight GUI text file and manual page viewer for X windows." +HOMEPAGE="http://code.google.com/p/seetxt/ http://seetxt.sourceforge.net/" +SRC_URI="http://seetxt.googlecode.com/files/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RDEPEND="x11-libs/gtk+:2" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + epatch \ + "${FILESDIR}/${PV}-0001-fix-linking.patch" \ + "${FILESDIR}/${PV}-0002-fix-shared-files-install.patch" + eautoreconf +} + +src_install() { + dodir /usr/share/man/man1 + default + sed -i -e 's|local/||' "${D}/usr/share/seetxt-runtime/filelist" || die "sed failed" +} + diff --git a/x11-misc/seetxt/seetxt-0.72.ebuild b/x11-misc/seetxt/seetxt-0.72.ebuild deleted file mode 100644 index 45cc43edd442..000000000000 --- a/x11-misc/seetxt/seetxt-0.72.ebuild +++ /dev/null @@ -1,18 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/seetxt/seetxt-0.72.ebuild,v 1.1 2012/05/16 06:34:17 dev-zero Exp $ - -EAPI=4 - -DESCRIPTION="Clever, lightweight GUI text file and manual page viewer for X windows." -HOMEPAGE="http://code.google.com/p/seetxt/ http://seetxt.sourceforge.net/" -SRC_URI="http://seetxt.googlecode.com/files/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND="x11-libs/gtk+:2" -DEPEND="${RDEPEND} - virtual/pkgconfig" diff --git a/x11-terms/gnome-terminal/gnome-terminal-2.32.1-r1.ebuild b/x11-terms/gnome-terminal/gnome-terminal-2.32.1-r1.ebuild index b5afa9d9a423..53f75cb02b23 100644 --- a/x11-terms/gnome-terminal/gnome-terminal-2.32.1-r1.ebuild +++ b/x11-terms/gnome-terminal/gnome-terminal-2.32.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/x11-terms/gnome-terminal/gnome-terminal-2.32.1-r1.ebuild,v 1.10 2013/04/01 18:25:57 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-terms/gnome-terminal/gnome-terminal-2.32.1-r1.ebuild,v 1.11 2013/04/09 16:45:12 ago Exp $ EAPI="4" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://www.gnome.org/" LICENSE="GPL-3" SLOT="0" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux" IUSE="" # libgnome needed for some monospace font schema, bug #274638 diff --git a/x11-themes/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic-3.6.2.ebuild b/x11-themes/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic-3.6.2.ebuild index 68826edcbf46..3cbb13e2c1be 100644 --- a/x11-themes/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic-3.6.2.ebuild +++ b/x11-themes/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic-3.6.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/x11-themes/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic-3.6.2.ebuild,v 1.11 2013/04/01 18:25:59 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-icon-theme-symbolic/gnome-icon-theme-symbolic-3.6.2.ebuild,v 1.12 2013/04/09 16:45:19 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -13,7 +13,7 @@ HOMEPAGE="http://www.gnome.org/" LICENSE="CC-BY-SA-3.0" SLOT="0" IUSE="" -KEYWORDS="alpha amd64 arm ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux" +KEYWORDS="alpha amd64 arm ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux" COMMON_DEPEND=">=x11-themes/hicolor-icon-theme-0.10" RDEPEND="${COMMON_DEPEND} diff --git a/x11-themes/gnome-icon-theme/gnome-icon-theme-3.6.2.ebuild b/x11-themes/gnome-icon-theme/gnome-icon-theme-3.6.2.ebuild index e1ab800db48e..05b66afc1de7 100644 --- a/x11-themes/gnome-icon-theme/gnome-icon-theme-3.6.2.ebuild +++ b/x11-themes/gnome-icon-theme/gnome-icon-theme-3.6.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/x11-themes/gnome-icon-theme/gnome-icon-theme-3.6.2.ebuild,v 1.11 2013/04/01 18:26:01 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-icon-theme/gnome-icon-theme-3.6.2.ebuild,v 1.12 2013/04/09 16:45:26 ago Exp $ EAPI="5" GCONF_DEBUG="no" @@ -17,7 +17,7 @@ LICENSE="|| ( LGPL-3 CC-BY-SA-3.0 ) branding? ( CC-Sampling-Plus-1.0 )" SLOT="0" IUSE="branding" -KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris" RDEPEND=">=x11-themes/hicolor-icon-theme-0.10" DEPEND="${RDEPEND} diff --git a/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild b/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild index 03a96cee8da6..057d0a4ea4a2 100644 --- a/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild +++ b/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-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/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild,v 1.11 2013/04/01 18:26:05 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/sound-theme-freedesktop/sound-theme-freedesktop-0.8.ebuild,v 1.12 2013/04/09 16:45:32 ago Exp $ EAPI="5" @@ -10,7 +10,7 @@ SRC_URI="http://people.freedesktop.org/~mccann/dist/${P}.tar.bz2" LICENSE="GPL-2 LGPL-2 CC-BY-3.0 CC-BY-SA-2.0" SLOT="0" -KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris" +KEYWORDS="alpha amd64 arm ~hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris" IUSE="" RDEPEND="" diff --git a/x11-wm/afterstep/afterstep-2.2.11-r1.ebuild b/x11-wm/afterstep/afterstep-2.2.11-r1.ebuild new file mode 100644 index 000000000000..1c5f44a5035c --- /dev/null +++ b/x11-wm/afterstep/afterstep-2.2.11-r1.ebuild @@ -0,0 +1,123 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/afterstep/afterstep-2.2.11-r1.ebuild,v 1.3 2013/04/10 10:05:57 voyageur Exp $ + +EAPI=5 +inherit autotools eutils flag-o-matic + +DESCRIPTION="A feature rich NeXTish window manager" +HOMEPAGE="http://www.afterstep.org/" +SRC_URI="ftp://ftp.afterstep.org/stable/AfterStep-${PV}.tar.bz2 + mirror://sourceforge/${PN}/AfterStep-${PV}.tar.bz2" + +LICENSE="GPL-2 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +IUSE="alsa debug dbus gif gtk jpeg mmx nls png svg tiff xinerama" + +RDEPEND="media-libs/freetype + alsa? ( media-libs/alsa-lib ) + dbus? ( sys-apps/dbus ) + jpeg? ( virtual/jpeg ) + gif? ( >=media-libs/giflib-4.1.0 ) + gtk? ( x11-libs/gtk+:2 ) + png? ( media-libs/libpng:0= ) + svg? ( gnome-base/librsvg:2 ) + tiff? ( media-libs/tiff:0 ) + x11-libs/libICE + x11-libs/libXext + x11-libs/libSM + x11-libs/libXmu + x11-libs/libXt + x11-libs/libX11 + x11-libs/libXpm + x11-libs/libXrender + xinerama? ( x11-libs/libXinerama )" +DEPEND="${RDEPEND} + !!media-libs/libafterimage + x11-proto/xextproto + x11-proto/xproto + xinerama? ( x11-proto/xineramaproto )" + +S=${WORKDIR}/AfterStep-${PV} + +src_prepare() { + epatch "${FILESDIR}"/${PN}-2.2.9-{alpha,ldflags,libpng15}.patch + epatch "${FILESDIR}"/${PN}-2.2.11-{execinfo,configure}.patch + + sed -i -e '/^install:/s:install.alternative ::' Makefile.in || die + sed -i -e '/CFLAGS="-O3"/d' libAfter{Base,Image}/configure || die + sed -i -e '/STRIP_BINARIES/s:-s::' autoconf/configure.in || die #252119 + sed -i -e '/--with-builtin-gif/s/$with_gif/no/' autoconf/configure.in || die #253259 + + pushd autoconf >/dev/null + eautoreconf + cp autoconf/config.h.in ./ || die + cp configure ../ || die + popd >/dev/null + + pushd libAfterBase >/dev/null + eautoreconf + popd >/dev/null +} + +src_configure() { + local myconf + + use debug && myconf="--enable-gdb --enable-warn --enable-gprof + --enable-audit --enable-trace --enable-trace-x" + + # Explanation of configure options + # ================================ + # --with-helpcommand="xterm -e man" - Avoid installing xiterm + # --with-xpm - Contained in xfree + # --disable-availability - So we can use complete paths for menuitems + # --enable-ascp - The AfterStep ControlPanel is abandoned + # LDCONFIG - bug #265841 + + LDCONFIG=/bin/true econf \ + $(use_enable alsa) \ + $(use_enable mmx mmx-optimization) \ + $(use_enable nls i18n) \ + $(use_enable xinerama) \ + $(use_with dbus dbus1) \ + $(use_with gif) \ + $(use_with gtk) \ + $(use_with jpeg) \ + $(use_with png) \ + $(use_with tiff) \ + $(use_with svg) \ + --with-helpcommand="xterm -e man" \ + --disable-availability \ + --disable-staticlibs \ + --enable-ascp=no \ + ${myconf} +} + +src_compile() { + # gcc: ../libAfterConf/libAfterConf.a: No such file or directory + # make[1]: *** [PrintDesktopEntries] Error 1 + emake -j1 +} + +src_install() { + emake DESTDIR="${D}" install + + # Create a symlink from MonitorWharf to Wharf + rm "${D}"/usr/bin/MonitorWharf + dosym /usr/bin/Wharf /usr/bin/MonitorWharf + + # Handle the documentation + dodoc ChangeLog INSTALL NEW* README* TEAM UPGRADE + cp -pPR TODO "${D}"/usr/share/doc/${PF}/ + dodir /usr/share/doc/${PF}/html + cp -pPR doc/* "${D}"/usr/share/doc/${PF}/html + rm "${D}"/usr/share/doc/${PF}/html/{Makefile*,afterstepdoc.in} + + insinto /usr/share/xsessions + newins AfterStep.desktop.final AfterStep.desktop + + # For desktop managers like GDM or KDE + exeinto /etc/X11/Sessions + doexe "${FILESDIR}"/${PN} +} diff --git a/x11-wm/compiz/compiz-0.8.8-r1.ebuild b/x11-wm/compiz/compiz-0.8.8-r3.ebuild similarity index 87% rename from x11-wm/compiz/compiz-0.8.8-r1.ebuild rename to x11-wm/compiz/compiz-0.8.8-r3.ebuild index 160dd97ad993..4261c53a90b3 100644 --- a/x11-wm/compiz/compiz-0.8.8-r1.ebuild +++ b/x11-wm/compiz/compiz-0.8.8-r3.ebuild @@ -1,9 +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/x11-wm/compiz/compiz-0.8.8-r1.ebuild,v 1.3 2012/10/11 07:45:27 pinkbyte Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/compiz/compiz-0.8.8-r3.ebuild,v 1.1 2013/04/09 07:26:11 pinkbyte Exp $ -EAPI=4 -inherit autotools eutils gnome2-utils toolchain-funcs +EAPI=5 + +inherit autotools eutils gnome2-utils DESCRIPTION="OpenGL window and compositing manager" HOMEPAGE="http://www.compiz.org/" @@ -18,7 +19,7 @@ COMMONDEPEND=" >=dev-libs/glib-2 dev-libs/libxml2 dev-libs/libxslt - media-libs/libpng:0 + media-libs/libpng:0= >=media-libs/mesa-6.5.1-r1 >=x11-base/xorg-server-1.1.1-r1 >=x11-libs/libX11-1.4 @@ -75,12 +76,14 @@ RDEPEND="${COMMONDEPEND} x11-apps/xvinfo " +DOCS=( AUTHORS ChangeLog NEWS README TODO ) + src_prepare() { echo gtk/gnome/compiz-wm.desktop.in >> po/POTFILES.skip echo metadata/core.xml.in >> po/POTFILES.skip - # Patch for compatibility with gcc 4.7 or higher - [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -ge 7 ]] && epatch "${FILESDIR}"/${PN}-gcc-4.7.patch + # Patch for compatibility with gcc 4.7 + epatch "${FILESDIR}"/${PN}-gcc-4.7.patch if ! use gnome || ! use gconf; then epatch "${FILESDIR}"/${PN}-no-gconf.patch @@ -90,6 +93,8 @@ src_prepare() { has_version ">=kde-base/kwin-4.8" && epatch "${FILESDIR}"/${PN}-kde-4.8.patch # patch for KDE 4.9 compatibility. Picked up from http://cgit.compiz.org has_version ">=kde-base/kwin-4.9" && epatch "${FILESDIR}"/${PN}-kde-4.9.patch + # patch for KDE 4.10 compatibility. Picked up from stuff overlay + has_version ">=kde-base/kwin-4.10" && epatch "${FILESDIR}"/${PN}-kde-4.10.patch fi eautoreconf } @@ -124,8 +129,7 @@ src_configure() { } src_install() { - emake DESTDIR="${D}" install - + default prune_libtool_files --all # Install compiz-manager @@ -150,8 +154,6 @@ src_install() { SKIP_CHECKS="yes" EOF - dodoc AUTHORS ChangeLog NEWS README TODO - domenu "${FILESDIR}"/compiz.desktop } diff --git a/x11-wm/jwm/Manifest b/x11-wm/jwm/Manifest index 15d1d8836947..52d9221ecf72 100644 --- a/x11-wm/jwm/Manifest +++ b/x11-wm/jwm/Manifest @@ -1,2 +1,2 @@ -DIST jwm-2.0.1.tar.bz2 248607 RMD160 84d16886056e77abd65717852df1530cebb6817b SHA1 209bc5e8c41f6a827d38a9b365405a2dc9bef082 SHA256 dcd6a6bd519578dfc2f3cfde269cea1f9090c87ebf2940bff26cbcca00f0a5c7 -DIST jwm-2.1.0.tar.bz2 163590 RMD160 1977e14b1acfadec759de3c227860b063d166be8 SHA1 5b7973d8b3621087485b6e14be23693e92f21628 SHA256 5c99f9023dc8c2597effdaacc240ff4c2e07e77c8244f3bf1de5cc483bcf08ab +DIST jwm-2.0.1.tar.bz2 248607 SHA256 dcd6a6bd519578dfc2f3cfde269cea1f9090c87ebf2940bff26cbcca00f0a5c7 +DIST jwm-2.1.0.tar.bz2 163590 SHA256 5c99f9023dc8c2597effdaacc240ff4c2e07e77c8244f3bf1de5cc483bcf08ab diff --git a/x11-wm/jwm/jwm-2.1.0.ebuild b/x11-wm/jwm/jwm-2.1.0.ebuild index b3a97b24fa28..ae94e0fcb11d 100644 --- a/x11-wm/jwm/jwm-2.1.0.ebuild +++ b/x11-wm/jwm/jwm-2.1.0.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/x11-wm/jwm/jwm-2.1.0.ebuild,v 1.5 2012/07/03 16:41:03 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/jwm/jwm-2.1.0.ebuild,v 1.6 2013/04/09 13:30:54 naota Exp $ EAPI=4 inherit eutils @@ -11,7 +11,7 @@ SRC_URI="http://joewing.net/programs/jwm/releases/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="amd64 hppa ppc x86" +KEYWORDS="amd64 hppa ppc x86 ~x86-fbsd" IUSE="bidi debug jpeg png truetype xinerama xpm" RDEPEND="xpm? ( x11-libs/libXpm ) diff --git a/x11-wm/notion/Manifest b/x11-wm/notion/Manifest index e69de29bb2d1..d48b3b7a820b 100644 --- a/x11-wm/notion/Manifest +++ b/x11-wm/notion/Manifest @@ -0,0 +1 @@ +DIST notion-3-2013030200-src.tar.bz2 625211 SHA256 565d85757cf5aac0193498339d245d3fd34dff09a1f2816735cae584a5b863e7 SHA512 266df9ca2f3613c7138a3bfe7bab1fadd27c1ad40078d134be827167b9407b900bc240780cb5375e6996777978bb8a3bc12fbfa45bb4d8d619ee93335c6039b2 WHIRLPOOL 23831d187dc23bffb83965015c0d052cb4a7378c6599dfac0d0fb845e624e7dd934be7a2a1e6bb8598330d9fbf621cc346986baeff3d96b16018774a116f7dd0 diff --git a/x11-wm/notion/notion-3_p2013030200.ebuild b/x11-wm/notion/notion-3_p2013030200.ebuild new file mode 100644 index 000000000000..4011c8a588ef --- /dev/null +++ b/x11-wm/notion/notion-3_p2013030200.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-wm/notion/notion-3_p2013030200.ebuild,v 1.1 2013/04/09 06:49:12 xmw Exp $ + +EAPI="4" + +inherit eutils toolchain-funcs + +DESCRIPTION="Notion is a tiling, tabbed window manager for the X window system" +HOMEPAGE="http://notion.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/files/${P/_p/-}-src.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="nls xinerama +xrandr" + +RDEPEND="dev-lang/lua + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXext + nls? ( sys-devel/gettext ) + xinerama? ( x11-libs/libXinerama ) + xrandr? ( x11-libs/libXrandr )" + +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/${P/_p/-} + +src_prepare() { + sed -e "/^CFLAGS=/s:=:+=:" \ + -e "/^CFLAGS/{s:-Os:: ; s:-g::}" \ + -e "/^LDFLAGS=/{s:=:+=: ; s:-Wl,--as-needed::}" \ + -e "/^CC=/s:=:?=:" \ + -e "s:^\(PREFIX=\).*$:\1${ROOT}usr:" \ + -e "s:^\(ETCDIR=\).*$:\1${ROOT}etc/notion:" \ + -e "s:^\(LIBDIR=\).*:\1\$(PREFIX)/$(get_libdir):" \ + -e "s:^\(DOCDIR=\).*:\1\$(PREFIX)/share/doc/${PF}:" \ + -e "s:^\(LUA_DIR=\).*$:\1\$(PREFIX)/usr:" \ + -e "s:^\(VARDIR=\).*$:\1${ROOT}var/cache/${PN}:" \ + -e "s:^\(X11_PREFIX=\).*:\1\$(PREFIX)/usr:" \ + -i system-autodetect.mk || die + export STRIPPROG=true + + use nls || export DEFINES=" -DCF_NO_LOCALE -DCF_NO_GETTEXT" + + if ! use xinerama ; then + sed -e 's/mod_xinerama//g' -i modulelist.mk || die + fi + + if ! use xrandr ; then + sed -e 's/mod_xrandr//g' -i modulelist.mk || die + fi + + tc-export CC +} + +src_install() { + emake DESTDIR="${D}" install + + exeinto /etc/X11/Sessions + doexe "${FILESDIR}"/notion + + insinto /usr/share/xsessions + doins "${FILESDIR}"/notion.desktop +} + +pkg_postinst() { + elog "If you want notion to have an ability to view a file based on its" + elog "guessed MIME type you need 'run-mailcap' program in your system." +} diff --git a/x11-wm/sawfish/sawfish-1.9.1.ebuild b/x11-wm/sawfish/sawfish-1.9.1.ebuild index 01c2b450f8fd..d74d6b4c0b25 100644 --- a/x11-wm/sawfish/sawfish-1.9.1.ebuild +++ b/x11-wm/sawfish/sawfish-1.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/x11-wm/sawfish/sawfish-1.9.1.ebuild,v 1.7 2013/04/01 18:26:07 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/sawfish/sawfish-1.9.1.ebuild,v 1.8 2013/04/09 16:45:38 ago Exp $ EAPI="4" inherit eutils @@ -11,7 +11,7 @@ SRC_URI="http://download.tuxfamily.org/sawfish/${P}.tar.xz" LICENSE="GPL-2 Artistic-2" SLOT="0" -KEYWORDS="alpha amd64 ia64 ppc ~ppc64 ~sh sparc x86" +KEYWORDS="alpha amd64 ia64 ppc ~ppc64 sh sparc x86" IUSE="nls xinerama" RDEPEND=">=dev-libs/librep-0.92.1 diff --git a/x11-wm/windowmaker/Manifest b/x11-wm/windowmaker/Manifest index fd9c04410ca1..6d9d29f49423 100644 --- a/x11-wm/windowmaker/Manifest +++ b/x11-wm/windowmaker/Manifest @@ -1,5 +1,4 @@ DIST WindowMaker-0.92.0.tar.gz 2758524 SHA256 9edaa8d9ee6e6beb06f4c391c0aec5cd0e5b5494456cae2cdcfd49656177afc6 -DIST WindowMaker-0.95.2.tar.gz 2753910 SHA256 6b271e9427f5207484ec21c25e114e4eb1eafa957b446a1ff516f0c41ac19c59 DIST WindowMaker-0.95.3.tar.gz 2780245 SHA256 b5eb88eccbf9a196a617594717797aa38f5c38d13d2ee40e914e153d09c9975a SHA512 7a70f6eb9de03c466d9de6a84febc59d46edee82c789287caa3a67012ab40c9b9a029ee46236f79dc80daeecab2313999a72f4d90caa77a464876116bd48ad16 WHIRLPOOL 056adcc7fd532aca611dd3699584aef793b5a86f66f051b571f4a0c247e33a37871e775389f7449d0357d3133a75ba3a7cd862a6cc2a243e447959b977d8a731 DIST WindowMaker-0.95.4.tar.gz 2789390 SHA256 2bea97f00570f05ff115d147457c16abefe496a4fc882a027152ce592d768e45 SHA512 d170ee79f927c1eb70d6fe7e324bf3a5ab4eb206496b5d4182ba92fab5a3968ed00d465e69adad3b7d71e9d4d5ea333f78bee28a68510228baa8ce33de156dc3 WHIRLPOOL 8341be33680b69e984214efdfd3617dfb50fa3ea11d663ac91b3f3763b690de9f34986afa4862006d0fc1281ac52b7f9a2f2c37447085617e26ada0ba678ff75 DIST WindowMaker-extra-0.1.tar.gz 238018 SHA256 acd6e1fb790485b107daf2b710da372367b41383c55d9c8bdfdac521d850edc4 SHA512 0fe9b3ffc093942db167d8a01e15c0f6741f3a40959d1434ea4f23e7b9d4a9c13935a61eabef9691e5fdfd4e407564caafce15c2d65d66499960a6764a874ab8 WHIRLPOOL f2c61b318f64a2debb727ae79dfa1bb8101888bc9492633a96ace0e704c731c383e92882c871622987d5971b919359c066638fba05c5dade330fe3bee21bb034 diff --git a/x11-wm/windowmaker/windowmaker-0.95.2.ebuild b/x11-wm/windowmaker/windowmaker-0.95.4-r1.ebuild similarity index 86% rename from x11-wm/windowmaker/windowmaker-0.95.2.ebuild rename to x11-wm/windowmaker/windowmaker-0.95.4-r1.ebuild index 853ffa14194a..c4dae3244c5c 100644 --- a/x11-wm/windowmaker/windowmaker-0.95.2.ebuild +++ b/x11-wm/windowmaker/windowmaker-0.95.4-r1.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/x11-wm/windowmaker/windowmaker-0.95.2.ebuild,v 1.4 2012/06/07 22:42:15 voyageur Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/windowmaker/windowmaker-0.95.4-r1.ebuild,v 1.1 2013/04/10 09:42:07 voyageur Exp $ -EAPI=4 -inherit eutils +EAPI=5 +inherit autotools eutils DESCRIPTION="The fast and light GNUstep window manager" HOMEPAGE="http://www.windowmaker.org/" @@ -13,7 +13,7 @@ SRC_URI=" http://windowmaker.org/pub/source/release/${P/windowm/WindowM}.tar.gz SLOT="0" LICENSE="GPL-2" IUSE="gif jpeg nls png tiff modelock xinerama xrandr" -KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris" DEPEND="media-libs/fontconfig >=x11-libs/libXft-2.1.0 @@ -21,7 +21,7 @@ DEPEND="media-libs/fontconfig x11-libs/libXt x11-libs/libXv gif? ( >=media-libs/giflib-4.1.0-r3 ) - png? ( media-libs/libpng:0 ) + png? ( media-libs/libpng:0= ) jpeg? ( virtual/jpeg ) tiff? ( media-libs/tiff:0 ) xinerama? ( x11-libs/libXinerama ) @@ -40,6 +40,9 @@ src_prepare() { sed -i -e "s:/opt/share/WindowMaker:${EPREFIX}/usr/share/WindowMaker:g;" "$file" || die fi; done; + + epatch "${FILESDIR}"/${PN}-0.95.3-fix_underlinking.patch + eautoreconf } src_configure() { diff --git a/x11-wm/wmii/Manifest b/x11-wm/wmii/Manifest index f0cabb23aaaa..0f7dab11e4dd 100644 --- a/x11-wm/wmii/Manifest +++ b/x11-wm/wmii/Manifest @@ -1 +1 @@ -DIST wmii+ixp-3.9.2.tbz 432032 RMD160 8a401a5d0a033c0da254d15e7fe415ec40e7a332 SHA1 e85a2979a0bd0a1db7ed486fc709afe72bafd8b0 SHA256 0466f1a5c534b0ee9fdace2c7a2d251845b7ec0ae80bdb8e68ae6584ebeebf2b +DIST wmii+ixp-3.9.2.tbz 432032 SHA256 0466f1a5c534b0ee9fdace2c7a2d251845b7ec0ae80bdb8e68ae6584ebeebf2b diff --git a/x11-wm/wmii/wmii-3.9.2-r3.ebuild b/x11-wm/wmii/wmii-3.9.2-r3.ebuild index 0ae0d3e79c8a..6e51dda43531 100644 --- a/x11-wm/wmii/wmii-3.9.2-r3.ebuild +++ b/x11-wm/wmii/wmii-3.9.2-r3.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/x11-wm/wmii/wmii-3.9.2-r3.ebuild,v 1.2 2012/05/04 08:58:55 jdhore Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/wmii/wmii-3.9.2-r3.ebuild,v 1.3 2013/04/09 13:24:51 naota Exp $ EAPI=2 inherit flag-o-matic multilib toolchain-funcs @@ -13,7 +13,7 @@ SRC_URI="http://dl.suckless.org/wmii/${MY_P}.tbz" LICENSE="MIT" SLOT="0" -KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd" IUSE="" COMMON_DEPEND=">=sys-libs/libixp-0.5_p20110208-r3 diff --git a/xfce-base/exo/Manifest b/xfce-base/exo/Manifest index f3a8bc71105d..153858d4372e 100644 --- a/xfce-base/exo/Manifest +++ b/xfce-base/exo/Manifest @@ -1,3 +1,2 @@ -DIST exo-0.10.1.tar.bz2 1136923 SHA256 34a6d14c58a12d3372eb810d05ae425b8c8c32ec976b99b6ad274c3f7b3f6896 SHA512 920b5b0e6015f0ff68b6daa3d8691c5f0795b2a418dd2c80e227d29b0ab036998d8cddf0f92d5e34b3d5da452783efe99c50267986b96143d500de45b4b2e1fb WHIRLPOOL 42c52ab77b7873b6303d54f3f9ecee4f38b23f5ba7191b17c05ead9a3c4f0127cdc4d304f50101f66ca1b47044b805a07688824bf328199de165a3d3189ef4ed DIST exo-0.10.2.tar.bz2 1209633 SHA256 b385828bf8a38204da3254b57fdfa25a72694495aa189fabd5040f707eec76ce SHA512 91a5a7f7b893c427ef10ee6ce248a6b6f8e2aba4281e406a60bc8fe7fa50196eb79d8b0ad6609ab48371acf77425df8cb67124ab11b7c4ff08d1dc83bb180eae WHIRLPOOL 65007fd57a585da8a4ae05af7560e3bcf2a35e08f4e652fd0a9d56ffa5d8505df6de383bf1c648453f14f686f9d455c3d893ec6b01de4adc86e79e75489fc999 DIST exo-0.8.0.tar.bz2 1120701 SHA256 6e21aa30692affcb45fc8283d034da4a02221d26e3e1facb968d04fed4ba05b0 SHA512 28b7ad276f0efdb519145c7e09e8fd88e7c28dea67e0c9cb5384703e126cd935dad86d57ea207ea7c5d6d1d6838ed54c55b72e2a68095e79c743fddb0081cbf4 WHIRLPOOL e44e0432821b678b84ed94862c870ed5380e34d00a1cfe32cff42621f4d3062f7c84305c9836c4ff3b60619c4fe321a1b392be94c55c3014735de53c106e636b diff --git a/xfce-base/exo/exo-0.10.1.ebuild b/xfce-base/exo/exo-0.10.1.ebuild deleted file mode 100644 index 0834bfb2c75e..000000000000 --- a/xfce-base/exo/exo-0.10.1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.10.1.ebuild,v 1.2 2012/12/10 07:43:16 ssuominen Exp $ - -EAPI=5 -inherit xfconf - -DESCRIPTION="Extensions, widgets and framework library with session support for the Xfce desktop environment" -HOMEPAGE="http://www.xfce.org/projects/" -SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2 LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" -IUSE="debug" - -RDEPEND=">=dev-lang/perl-5.6 - >=dev-libs/glib-2.30 - dev-perl/URI - >=x11-libs/gtk+-2.24:2 - >=xfce-base/libxfce4ui-4.10 - >=xfce-base/libxfce4util-4.10" -DEPEND="${RDEPEND} - dev-util/intltool - sys-devel/gettext - virtual/pkgconfig" - -pkg_setup() { - XFCONF=( - --docdir="${EPREFIX}"/usr/share/doc/${PF} - $(xfconf_use_debug) - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html - ) - - [[ ${CHOST} == *-darwin* ]] && XFCONF+=( --disable-visibility ) #366857 - - DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS TODO ) -} diff --git a/xfce-base/thunar/Manifest b/xfce-base/thunar/Manifest index c32bc4388d8b..5517457c1f4f 100644 --- a/xfce-base/thunar/Manifest +++ b/xfce-base/thunar/Manifest @@ -1,3 +1,2 @@ DIST Thunar-1.4.0.tar.bz2 1915160 SHA256 2c11a19e64cef708a264fb4d5d933389899c3d132fe7b1e313dd6e37bfe4c8ba SHA512 43e805fe8a870542abf1544174aea854ee48dea521fd5024531a4a500e609e7b919f42b1d0311278d33538e082d58e6f958ed0ce713a3d33fbeeab82907ff00f WHIRLPOOL abe4d83ae6e5eff903a07f1dd68d385c7ea245edad2d40bea8366724a844ff53a0fcc598645994be75bd872266897183ceaa15fba058133170240908787cc9cd -DIST Thunar-1.6.1.tar.bz2 1975665 SHA256 a81021af558802b8c2c6cd7db47cca262477c4f3d2b6d8cfa8dbba88568048f1 SHA512 6adc99a0734b3caf5fac20f796d2532f409811bc3581abc17d72c8f9f92ed2ba6bdce5d5d83010afed82f258863ed4b641950cc31c2adf0774f226f5be58a043 WHIRLPOOL b8e0012bc34d20a8c394c923650133e68c289d6883e9d2fff7967ad4801e738e2ab13623292ee211b8e77e5324f070cd0d25eeee71eb49070e0659566263e7c3 DIST Thunar-1.6.2.tar.bz2 1953026 SHA256 7dbd172ae396e7a2533f47dc1ff703a9ea1a61af3edfdc6f4877b9b9331abd85 SHA512 307496dcd67c46f5dbef10305c25ba4ae0a23525932f660dbeb7508dff32601173deae72fa0f2884b11677fb8dcea2473a1c7647203e74154a0d85c30e2061aa WHIRLPOOL f07d1a0079e687a6168a0897542ec9922e5adf455e0e27e4aff9f3a72ae13480b5c25592611d2e67bca9222c86b44b7a3c6a43f652a4bbdd6e29cd7b00f75fde diff --git a/xfce-base/thunar/thunar-1.6.1.ebuild b/xfce-base/thunar/thunar-1.6.1.ebuild deleted file mode 100644 index 388ceb0826f3..000000000000 --- a/xfce-base/thunar/thunar-1.6.1.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/thunar-1.6.1.ebuild,v 1.1 2012/12/10 07:47:54 ssuominen Exp $ - -EAPI=5 -inherit virtualx xfconf - -MY_P=${P/t/T} - -DESCRIPTION="File manager for the Xfce desktop environment" -HOMEPAGE="http://www.xfce.org/projects/ http://thunar.xfce.org/" -SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${MY_P}.tar.bz2" - -LICENSE="GPL-2 LGPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="+dbus debug exif libnotify pcre startup-notification test +xfce_plugins_trash udev" - -GVFS_DEPEND=">=gnome-base/gvfs-1.10.1" -COMMON_DEPEND=">=dev-lang/perl-5.6 - >=dev-libs/glib-2.30 - >=x11-libs/gdk-pixbuf-2.14 - >=x11-libs/gtk+-2.24:2 - >=xfce-base/exo-0.10 - >=xfce-base/libxfce4ui-4.10 - >=xfce-base/libxfce4util-4.10 - >=xfce-base/xfconf-4.10 - dbus? ( >=dev-libs/dbus-glib-0.100 ) - exif? ( >=media-libs/libexif-0.6.19 ) - libnotify? ( >=x11-libs/libnotify-0.7 ) - pcre? ( >=dev-libs/libpcre-6 ) - startup-notification? ( x11-libs/startup-notification ) - udev? ( virtual/udev[gudev] ) - xfce_plugins_trash? ( >=xfce-base/xfce4-panel-4.10 )" -RDEPEND="${COMMON_DEPEND} - >=dev-util/desktop-file-utils-0.20-r1 - x11-misc/shared-mime-info - dbus? ( ${GVFS_DEPEND} ) - udev? ( || ( ${GVFS_DEPEND}[udisks,udev] ${GVFS_DEPEND}[gdu,udev] ) ) - xfce_plugins_trash? ( ${GVFS_DEPEND} )" -DEPEND="${COMMON_DEPEND} - dev-util/intltool - sys-devel/gettext - virtual/pkgconfig" -REQUIRED_USE="xfce_plugins_trash? ( dbus )" - -S=${WORKDIR}/${MY_P} - -pkg_setup() { - XFCONF=( - --docdir="${EPREFIX}"/usr/share/doc/${PF} - $(use_enable dbus) - $(use_enable startup-notification) - $(use_enable udev gudev) - $(use_enable libnotify notifications) - $(xfconf_use_debug) - $(use_enable exif) - $(use_enable pcre) - --with-html-dir="${EPREFIX}"/usr/share/doc/${PF}/html - ) - - use xfce_plugins_trash || XFCONF+=( --disable-tpa-plugin ) - - DOCS=( AUTHORS ChangeLog FAQ HACKING NEWS README THANKS TODO ) -} - -src_test() { - Xemake check -} diff --git a/xfce-base/xfdesktop/Manifest b/xfce-base/xfdesktop/Manifest index 8e6c40a9fe25..854559913ca2 100644 --- a/xfce-base/xfdesktop/Manifest +++ b/xfce-base/xfdesktop/Manifest @@ -1,3 +1,2 @@ DIST xfdesktop-4.10.0.tar.bz2 1098862 SHA256 897ae6ee435dcc89809ad70c15c5d15347d1cf4fc8033238b17dcc47836c2d7b SHA512 7cc60b23b87120b83a9917f8c48c613fe832dc9b3f73beefd8d808a186221f1c2d2d0631b1fed301b2e014bb25b61ebbe20e6fc2d927e20aa94bf9a539f0271a WHIRLPOOL 72455139e5079ded34ed317d9ad44dbba5d738f3ddb6e880f89d90d4678e877fe3e27f0a4cbfd261e2ee0b4a80a24c3a459ad87201f6f562268c9832daf8bf4e -DIST xfdesktop-4.10.1.tar.bz2 1144840 SHA256 2883fe381e1b967d179fdf5ece5ac2566a3ffdb94f4cf139c7fb44567f17d4ad SHA512 d650b7d7704e38827e9a729e9e86d4d8f48c52296d22bbd697c96ae7525c6489892611d1f84b0cba9de738c32b465fc04666390b94b2860457bf626be56de6b8 WHIRLPOOL b7f99ed65c8a1dc991da8fa042e7cb04f867ceeecf25bf930dea74990edc2f71258c0128ec00015282639d152edcd16c4f67195173acf05f8660554bc112cd59 DIST xfdesktop-4.10.2.tar.bz2 1144561 SHA256 49a6e0be513e307e896f7e5929825babec9bbcd4b2e73552f9d27647a4db797d SHA512 274e61fc08ab7738584a27cabce897bd3692200ffe88ad5542bf3c3d6fba128166a499b8aca2b571501d9c66cafa1b3af6a9d52638e20dee7dc79dc5ea48544c WHIRLPOOL 5f3b0ffcc7baf2cbc0d864038f38691f8ae60f60288ae558754d0a503373fd31ba49c605ae512c51e78614eaacb4e3c414f07bd1d46dcd151e10154486325e9f diff --git a/xfce-base/xfdesktop/xfdesktop-4.10.1.ebuild b/xfce-base/xfdesktop/xfdesktop-4.10.1.ebuild deleted file mode 100644 index 246b0c17a92e..000000000000 --- a/xfce-base/xfdesktop/xfdesktop-4.10.1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.10.1.ebuild,v 1.1 2013/03/05 15:14:00 ssuominen Exp $ - -EAPI=5 -inherit xfconf - -DESCRIPTION="Desktop manager for the Xfce desktop environment" -HOMEPAGE="http://www.xfce.org/projects/" -SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" -IUSE="debug libnotify thunar" - -RDEPEND=">=dev-libs/glib-2.20 - >=x11-libs/gtk+-2.24:2 - x11-libs/libSM - >=x11-libs/libwnck-2.30:1 - x11-libs/libX11 - >=xfce-base/exo-0.8 - >=xfce-base/garcon-0.2 - >=xfce-base/libxfce4ui-4.10 - >=xfce-base/libxfce4util-4.10 - >=xfce-base/xfconf-4.10 - libnotify? ( >=x11-libs/libnotify-0.7 ) - thunar? ( - >=xfce-base/thunar-1.6[dbus] - >=dev-libs/dbus-glib-0.100 - )" -DEPEND="${RDEPEND} - dev-util/intltool - sys-devel/gettext - virtual/pkgconfig" - -pkg_setup() { - XFCONF=( - --docdir="${EPREFIX}"/usr/share/doc/${PF} - $(use_enable thunar file-icons) - $(use_enable thunar thunarx) - $(use_enable libnotify notifications) - $(xfconf_use_debug) - ) - - DOCS=( AUTHORS ChangeLog NEWS README TODO ) -}